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.cpp1451 int oldCount = mFakeConsumer->mGetFrameTimestampsCount; in TEST_F() local
1455 EXPECT_EQ(oldCount, mFakeConsumer->mGetFrameTimestampsCount); in TEST_F()
1463 oldCount = mFakeConsumer->mGetFrameTimestampsCount; in TEST_F()
1467 EXPECT_EQ(oldCount, mFakeConsumer->mGetFrameTimestampsCount); in TEST_F()
1480 oldCount = mFakeConsumer->mGetFrameTimestampsCount; in TEST_F()
1484 EXPECT_EQ(oldCount, mFakeConsumer->mGetFrameTimestampsCount); in TEST_F()
1492 oldCount = mFakeConsumer->mGetFrameTimestampsCount; in TEST_F()
1496 EXPECT_EQ(oldCount, mFakeConsumer->mGetFrameTimestampsCount); in TEST_F()
1521 int oldCount = mFakeConsumer->mGetFrameTimestampsCount; in TEST_F() local
1526 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.java1047 final int oldCount = in rebatchAllAlarmsLocked() local
1077 if (oldCount != newCount) { in rebatchAllAlarmsLocked()
1078 Slog.wtf(TAG, "Rebatching: total count changed from " + oldCount + " to " + newCount); in rebatchAllAlarmsLocked()
4834 int oldCount = 0; in decrementAlarmCount() local
4837 oldCount = mAlarmsPerUid.valueAt(uidIndex); in decrementAlarmCount()
4838 if (oldCount > decrement) { in decrementAlarmCount()
4839 mAlarmsPerUid.setValueAt(uidIndex, oldCount - decrement); in decrementAlarmCount()
4844 if (oldCount < decrement) { in decrementAlarmCount()
4845 Slog.wtf(TAG, "Attempt to decrement existing alarm count " + oldCount + " by " in decrementAlarmCount()