Searched refs:getInteractionController (Results 1 – 4 of 4) sorted by relevance
/aosp14/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/ |
H A D | UiDevice.java | 414 return getAutomatorBridge().getInteractionController().clickNoSync(x, y); in click() 432 return getAutomatorBridge().getInteractionController() in swipe() 453 return getAutomatorBridge().getInteractionController() in drag() 655 getAutomatorBridge().getInteractionController().freezeRotation(); in freezeRotation() 666 getAutomatorBridge().getInteractionController().unfreezeRotation(); in unfreezeRotation() 680 getAutomatorBridge().getInteractionController().setRotationLeft(); in setOrientationLeft() 695 getAutomatorBridge().getInteractionController().setRotationRight(); in setOrientationRight() 710 getAutomatorBridge().getInteractionController().setRotationNatural(); in setOrientationNatural() 725 if(getAutomatorBridge().getInteractionController().wakeDevice()) { in wakeUp() 741 return getAutomatorBridge().getInteractionController().isScreenOn(); in isScreenOn() [all …]
|
H A D | UiObject.java | 112 InteractionController getInteractionController() { in getInteractionController() method in UiObject 113 return UiDevice.getInstance().getAutomatorBridge().getInteractionController(); in getInteractionController() 245 return getInteractionController().swipe(rect.centerX(), in swipeUp() 273 return getInteractionController().swipe(rect.centerX(), in swipeDown() 301 return getInteractionController().swipe(rect.right - SWIPE_MARGIN_LIMIT, in swipeLeft() 328 return getInteractionController().swipe(rect.left + SWIPE_MARGIN_LIMIT, in swipeRight() 460 return getInteractionController().clickNoSync(rect.left + 5, rect.top + 5); in clickTopLeft() 603 return getInteractionController().sendText(text); in setText() 633 getInteractionController().longTapNoSync(rect.left + 20, rect.centerY()); in clearTextField() 641 getInteractionController().sendKey(KeyEvent.KEYCODE_DEL, 0); in clearTextField() [all …]
|
H A D | UiScrollable.java | 447 return getInteractionController().scrollSwipe(downX, downY, upX, upY, steps); in scrollForward() 528 return getInteractionController().scrollSwipe(downX, downY, upX, upY, steps); in scrollBackward()
|
H A D | UiAutomatorBridge.java | 53 InteractionController getInteractionController() { in getInteractionController() method in UiAutomatorBridge
|