Home
last modified time | relevance | path

Searched defs:condition (Results 1 – 5 of 5) sorted by relevance

/test/uiautomator/uiautomator/src/main/java/androidx/test/uiautomator/
DWaitMixin.java33 public <U> U wait(Condition<? super T, U> condition, long timeout) { in wait()
37 public <U> U wait(Condition<? super T, U> condition, long timeout, long interval) { in wait()
DUiObject2.java212 public <U> U wait(@NonNull UiObject2Condition<U> condition, long timeout) { in wait()
224 public <U> U wait(@NonNull SearchCondition<U> condition, long timeout) { in wait()
237 public <U> U wait(@NonNull Condition<? super UiObject2, U> condition, long timeout) { in wait()
580 public <U> U clickAndWait(@NonNull EventCondition<U> condition, long timeout) { in clickAndWait()
600 public <U> U clickAndWait(@NonNull Point point, @NonNull EventCondition<U> condition, in clickAndWait()
806 @NonNull Condition<? super UiObject2, U> condition) { in scrollUntil()
879 public <U> U scrollUntil(@NonNull Direction direction, @NonNull EventCondition<U> condition) { in scrollUntil()
DUiDevice.java200 public <U> U wait(@NonNull SearchCondition<U> condition, long timeout) { in wait()
212 public <U> U wait(@NonNull Condition<? super UiDevice, U> condition, long timeout) { in wait()
228 @NonNull EventCondition<U> condition, long timeout) { in performActionAndWait()
DGestureController.java133 public <U> U performGestureAndWait(EventCondition<U> condition, long timeout, in performGestureAndWait()
DInteractionController.java307 EventCondition<Boolean> condition = Until.scrollFinished(direction); in scrollSwipe() local