Home
last modified time | relevance | path

Searched refs:actualId (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
DAccountsDbTest.java116 long actualId = mAccountsDb.findDeAccountId(account); in testDeAccountInsertFindDelete() local
117 assertEquals(accId, actualId); in testDeAccountInsertFindDelete()
120 actualId = mAccountsDb.findDeAccountId(account); in testDeAccountInsertFindDelete()
121 assertEquals(-1, actualId); in testDeAccountInsertFindDelete()
129 long actualId = mAccountsDb.findCeAccountId(account); in testCeAccountInsertFindDelete() local
130 assertEquals(accId, actualId); in testCeAccountInsertFindDelete()
133 actualId = mAccountsDb.findCeAccountId(account); in testCeAccountInsertFindDelete()
134 assertEquals(-1, actualId); in testCeAccountInsertFindDelete()
349 long actualId = mAccountsDb.findCeAccountId(account); in testCrossDbTransactions() local
350 assertEquals(accId, actualId); in testCrossDbTransactions()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/user/domain/interactor/
DSelectedUserInteractorTest.kt34 val actualId = underTest.getSelectedUserId() in getSelectedUserIdReturnsId() constant
36 assertThat(actualId).isEqualTo(USER_INFOS[0].id) in getSelectedUserIdReturnsId()
/frameworks/base/core/java/android/view/contentcapture/
DMainContentCaptureSession.java892 int actualId = session.getId(); in notifyContentCaptureEventsImpl() local
893 if (actualId != sessionId) { in notifyContentCaptureEventsImpl()
895 + "): was " + sessionId + " before, it's " + actualId + " now"); in notifyContentCaptureEventsImpl()
DMainContentCaptureSessionV2.java965 int actualId = session.getId(); in prepareViewStructures() local
966 if (actualId != sessionId) { in prepareViewStructures()
968 + "): was " + sessionId + " before, it's " + actualId + " now"); in prepareViewStructures()
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
DAndroidCamera2AgentImpl.java1326 String actualId = mCameraIds[cameraId]; in getCharacteristics() local
1328 CameraCharacteristics info = mCameraManager.getCameraCharacteristics(actualId); in getCharacteristics()