Home
last modified time | relevance | path

Searched refs:oldCount (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DFrame.java187 int oldCount = oldDims == null ? 0 : oldDims.length; in resize() local
189 if (oldCount != newCount) { in resize()
190 throw new IllegalArgumentException("Cannot resize " + oldCount + "-dimensional " in resize()
/frameworks/native/libs/gui/tests/
DSurface_test.cpp1577 int oldCount = mFakeConsumer->mGetFrameTimestampsCount; in TEST_F() local
1581 EXPECT_EQ(oldCount, mFakeConsumer->mGetFrameTimestampsCount); in TEST_F()
1589 oldCount = mFakeConsumer->mGetFrameTimestampsCount; in TEST_F()
1593 EXPECT_EQ(oldCount, mFakeConsumer->mGetFrameTimestampsCount); in TEST_F()
1606 oldCount = mFakeConsumer->mGetFrameTimestampsCount; in TEST_F()
1610 EXPECT_EQ(oldCount, mFakeConsumer->mGetFrameTimestampsCount); in TEST_F()
1618 oldCount = mFakeConsumer->mGetFrameTimestampsCount; in TEST_F()
1622 EXPECT_EQ(oldCount, mFakeConsumer->mGetFrameTimestampsCount); in TEST_F()
1647 int oldCount = mFakeConsumer->mGetFrameTimestampsCount; in TEST_F() local
1652 EXPECT_EQ(oldCount, mFakeConsumer->mGetFrameTimestampsCount); in TEST_F()
[all …]
/frameworks/base/services/autofill/java/com/android/server/autofill/ui/
DFillUi.java373 final int oldCount = mAdapter.getCount(); in applyNewFilterText() local
394 if (mAdapter.getCount() != oldCount) { in applyNewFilterText()
/frameworks/base/services/core/java/com/android/server/
DAlarmManagerService.java1046 final int oldCount = in rebatchAllAlarmsLocked() local
1076 if (oldCount != newCount) { in rebatchAllAlarmsLocked()
1077 Slog.wtf(TAG, "Rebatching: total count changed from " + oldCount + " to " + newCount); in rebatchAllAlarmsLocked()
4826 int oldCount = 0; in decrementAlarmCount() local
4829 oldCount = mAlarmsPerUid.valueAt(uidIndex); in decrementAlarmCount()
4830 if (oldCount > decrement) { in decrementAlarmCount()
4831 mAlarmsPerUid.setValueAt(uidIndex, oldCount - decrement); in decrementAlarmCount()
4836 if (oldCount < decrement) { in decrementAlarmCount()
4837 Slog.wtf(TAG, "Attempt to decrement existing alarm count " + oldCount + " by " in decrementAlarmCount()