Searched refs:entry3 (Results 1 – 6 of 6) sorted by relevance
/aosp14/frameworks/base/packages/SettingsLib/Spa/tests/src/com/android/settingslib/spa/framework/common/ |
H A D | SettingsEntryTest.kt | 176 val entry3 = entryBuilder.build() regex 177 assertThat(entry3.id).isEqualTo(genEntryId("myEntry", owner)) 178 assertThat(entry3.label).isEqualTo("myEntryDisplay") 179 assertThat(entry3.fromPage).isNull() 180 assertThat(entry3.toPage).isNull() 181 assertThat(entry3.isAllowSearch).isFalse() 182 assertThat(entry3.isSearchDataDynamic).isFalse() 183 assertThat(entry3.hasMutableStatus).isTrue() 184 assertThat(entry3.hasSliceSupport).isFalse()
|
/aosp14/frameworks/base/core/tests/coretests/src/com/android/internal/os/ |
H A D | LooperStatsTest.java | 229 LooperStats.ExportedEntry entry3 = entries.get(2); in testMultipleMessagesDispatched() local 230 assertThat(entry3.workSourceUid).isEqualTo(-1); in testMultipleMessagesDispatched() 232 assertThat(entry3.handlerClassName).isEqualTo( in testMultipleMessagesDispatched() 234 assertThat(entry3.messageName).startsWith( in testMultipleMessagesDispatched() 236 assertThat(entry3.messageCount).isEqualTo(1); in testMultipleMessagesDispatched() 237 assertThat(entry3.recordedMessageCount).isEqualTo(1); in testMultipleMessagesDispatched() 238 assertThat(entry3.exceptionCount).isEqualTo(0); in testMultipleMessagesDispatched() 239 assertThat(entry3.totalLatencyMicros).isEqualTo(10); in testMultipleMessagesDispatched() 240 assertThat(entry3.maxLatencyMicros).isEqualTo(10); in testMultipleMessagesDispatched() 241 assertThat(entry3.cpuUsageMicros).isEqualTo(10); in testMultipleMessagesDispatched() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/ |
H A D | NotifCollectionTest.java | 274 NotificationEntry entry3 = buildNotif(TEST_PACKAGE, 3) in testEventDispatchedWhenNotifBatchPosted() local 281 new CoalescedEvent(entry3.getKey(), 2, entry3.getSbn(), entry3.getRanking(), null) in testEventDispatchedWhenNotifBatchPosted() 292 assertEquals(entry3.getSbn(), capturedAdds.get(1).getSbn()); in testEventDispatchedWhenNotifBatchPosted() 293 assertEquals(entry3.getRanking(), capturedAdds.get(1).getRanking()); in testEventDispatchedWhenNotifBatchPosted() 418 final NotificationEntry entry3 = buildNotif(TEST_PACKAGE, 3) in testCancelScheduledBuildNotificationListEventWhenNotifUpdatedSynchronously() local 425 new CoalescedEvent(entry3.getKey(), 2, entry3.getSbn(), entry3.getRanking(), null) in testCancelScheduledBuildNotificationListEventWhenNotifUpdatedSynchronously() 524 assertEquals(newRanking3, entry3.getRanking()); in testRankingUpdateIsProperlyIssuedToEveryone() 528 assertNotNull(entry3.getSbn().getGroupKey()); in testRankingUpdateIsProperlyIssuedToEveryone() 649 new ArraySet<>(List.of(entry1, entry2, entry3)), in testRetractingLifetimeExtendedSummaryDoesNotDismissChildren() 657 new ArraySet<>(List.of(entry2, entry3)), in testRetractingLifetimeExtendedSummaryDoesNotDismissChildren() [all …]
|
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/power/stats/ |
H A D | KernelWakelockReaderTest.java | 378 KernelWakelockStats.Entry entry3 = staleStats.get("WakeLock3"); in testAggregateStatsUpdate() local 379 assertEquals(10, entry3.mCount); in testAggregateStatsUpdate() 380 assertEquals(1000 * 1000, entry3.mTotalTime); // Microseconds in testAggregateStatsUpdate()
|
/aosp14/frameworks/base/core/jni/ |
H A D | android_hardware_camera2_DngCreator.cpp | 1976 if (entry3.count == 0) { in DngCreator_setup() 1980 if ((entry3.count % 2) != 0) { in DngCreator_setup() 1990 for (size_t i = 0; i < entry3.count; i += 2) { in DngCreator_setup() 1991 int32_t x = entry3.data.i32[i]; in DngCreator_setup() 1992 int32_t y = entry3.data.i32[i + 1]; in DngCreator_setup() 2054 camera_metadata_entry entry3 = in DngCreator_setup() local 2056 if (entry3.count == 5) { in DngCreator_setup() 2061 for (size_t i = 0; i < entry3.count; i++) { in DngCreator_setup() 2062 distortion[i+1] = entry3.data.f[i]; in DngCreator_setup() 2097 for (size_t i = 0; i < entry3.count; i++) { in DngCreator_setup() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/appops/ |
H A D | AppOpsControllerTest.java | 253 AppOpsManager.OpEntry entry3 = mock(AppOpsManager.OpEntry.class); in startListening_fetchesCurrentActive_multipleEntries() local 254 when(entry3.getOpStr()).thenReturn(AppOpsManager.OPSTR_FINE_LOCATION); in startListening_fetchesCurrentActive_multipleEntries() 257 when(entry3.getAttributedOpEntries()).thenReturn(Map.of("tag", attributed3)); in startListening_fetchesCurrentActive_multipleEntries() 259 when(packageOps.getOps()).thenReturn(List.of(entry1, entry2, entry3)); in startListening_fetchesCurrentActive_multipleEntries()
|