Home
last modified time | relevance | path

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

/frameworks/base/tests/TrustTests/src/android/trust/test/
DUserUnlockRequestTest.kt55 val oldCount = trustAgentRule.agent.onUserRequestedUnlockCallCount in reportUserRequestedUnlock_propagatesToAgent() constant
60 .isEqualTo(oldCount + 1) in reportUserRequestedUnlock_propagatesToAgent()
74 val oldCount = trustAgentRule.agent.onUserMayRequestUnlockCallCount in reportUserMayRequestUnlock_propagatesToAgent() constant
79 .isEqualTo(oldCount + 1) in reportUserMayRequestUnlock_propagatesToAgent()
84 val oldCount = trustAgentRule.agent.onUserMayRequestUnlockCallCount in reportUserMayRequestUnlock_differentUserId_doesNotPropagateToAgent() constant
89 .isEqualTo(oldCount) in reportUserMayRequestUnlock_differentUserId_doesNotPropagateToAgent()
/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.cpp1738 int oldCount = mFakeConsumer->mGetFrameTimestampsCount; in TEST_F() local
1742 EXPECT_EQ(oldCount, mFakeConsumer->mGetFrameTimestampsCount); in TEST_F()
1750 oldCount = mFakeConsumer->mGetFrameTimestampsCount; in TEST_F()
1754 EXPECT_EQ(oldCount, mFakeConsumer->mGetFrameTimestampsCount); in TEST_F()
1767 oldCount = mFakeConsumer->mGetFrameTimestampsCount; in TEST_F()
1771 EXPECT_EQ(oldCount, mFakeConsumer->mGetFrameTimestampsCount); in TEST_F()
1779 oldCount = mFakeConsumer->mGetFrameTimestampsCount; in TEST_F()
1783 EXPECT_EQ(oldCount, mFakeConsumer->mGetFrameTimestampsCount); in TEST_F()
1808 int oldCount = mFakeConsumer->mGetFrameTimestampsCount; in TEST_F() local
1813 EXPECT_EQ(oldCount, mFakeConsumer->mGetFrameTimestampsCount); in TEST_F()
[all …]
/frameworks/base/services/autofill/java/com/android/server/autofill/ui/
DDialogFillUi.java364 final int oldCount = mAdapter.getCount(); in initialDatasetLayout() local
383 if (mAdapter.getCount() != oldCount) { in initialDatasetLayout()
DFillUi.java436 final int oldCount = mAdapter.getCount(); in applyNewFilterText() local
464 if (mAdapter.getCount() != oldCount) { in applyNewFilterText()
/frameworks/base/apex/jobscheduler/service/java/com/android/server/alarm/
DAlarmManagerService.java5558 int oldCount = 0; in decrementAlarmCount() local
5561 oldCount = mAlarmsPerUid.valueAt(uidIndex); in decrementAlarmCount()
5562 if (oldCount > decrement) { in decrementAlarmCount()
5563 mAlarmsPerUid.setValueAt(uidIndex, oldCount - decrement); in decrementAlarmCount()
5568 if (oldCount < decrement) { in decrementAlarmCount()
5569 Slog.wtf(TAG, "Attempt to decrement existing alarm count " + oldCount + " by " in decrementAlarmCount()