Home
last modified time | relevance | path

Searched refs:expectedList (Results 1 – 2 of 2) sorted by relevance

/cts/tests/accessibility/common/src/android/accessibility/cts/common/
DAccessibilityShortcutSettingsRule.java125 List<String> expectedList) { in waitForAccessibilityShortcutStateChange() argument
126 waitForShortcutStateChange(uiAutomation, HARDWARE, expectedList); in waitForAccessibilityShortcutStateChange()
138 List<String> expectedList) { in waitForAccessibilityButtonStateChange() argument
139 waitForShortcutStateChange(uiAutomation, SOFTWARE, expectedList); in waitForAccessibilityButtonStateChange()
211 List<String> expectedList) { in waitForShortcutStateChange() argument
214 message.append(" expect:").append(expectedList); in waitForShortcutStateChange()
219 if (currentShortcuts.size() != expectedList.size()) { in waitForShortcutStateChange()
222 for (String expect : expectedList) { in waitForShortcutStateChange()
/cts/tests/app/BroadcastsTest/src/android/app/cts/broadcasts/
DBaseBroadcastTest.java275 final ArrayList<?> expectedList = (ArrayList<?>) expectedValue; in compareExtras() local
277 if (actualList.size() != expectedList.size()) { in compareExtras()
280 for (int i = 0; i < expectedList.size(); ++i) { in compareExtras()
281 if (!Objects.equal(actualList.get(i), expectedList.get(i))) { in compareExtras()