Home
last modified time | relevance | path

Searched refs:actuals (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/services/surfaceflinger/FrameTimeline/
DFrameTimeline.cpp39 void dumpTable(std::string& result, TimelineItem predictions, TimelineItem actuals, in dumpTable() argument
61 if (actuals.startTime == 0) { in dumpTable()
64 std::chrono::nanoseconds startTime(std::max<nsecs_t>(0, actuals.startTime - baseTime)); in dumpTable()
68 if (actuals.endTime <= 0) { in dumpTable()
72 std::chrono::nanoseconds endTime(actuals.endTime - baseTime); in dumpTable()
76 if (actuals.presentTime == 0) { in dumpTable()
79 std::chrono::nanoseconds presentTime(std::max<nsecs_t>(0, actuals.presentTime - baseTime)); in dumpTable()
298 TimelineItem actuals) { in getMinTime() argument
308 if (actuals.startTime != 0) { in getMinTime()
309 minTime = std::min(minTime, actuals.startTime); in getMinTime()
[all …]
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DNotificationListenerServiceTest.java391 List<Notification.Action> expecteds, List<Notification.Action> actuals) { in assertActionsEqual() argument
392 assertEquals(expecteds.size(), actuals.size()); in assertActionsEqual()
395 Notification.Action actual = actuals.get(i); in assertActionsEqual()
/frameworks/base/core/tests/coretests/src/android/service/notification/
DNotificationRankingUpdateTest.java348 List<Notification.Action> expecteds, List<Notification.Action> actuals) { in assertActionsEqual() argument
349 Assert.assertEquals(expecteds.size(), actuals.size()); in assertActionsEqual()
352 Notification.Action actual = actuals.get(i); in assertActionsEqual()