Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/tests/coretests/src/android/widget/
H A DTextViewActivityMouseTest.java28 import static android.widget.espresso.TextViewActions.mouseDragOnText;
88 mouseDragOnText(helloWorld.indexOf("llo"), helloWorld.indexOf("ld!"))); in testSelectTextByDrag()
101 mouseDragOnText( helloWorld.indexOf("ld!"), helloWorld.indexOf("llo"))); in testSelectTextByDrag_reverse()
144 mouseDragOnText(text.indexOf("c"), text.indexOf("h"))); in testContextMenu()
180 mouseDragOnText(text.indexOf("d"), text.indexOf("f") + 1)); in testDragAndDrop()
183 mouseDragOnText(text.indexOf("e"), text.length())); in testDragAndDrop()
196 mouseDragOnText(text.indexOf("d"), text.indexOf("f") + 1)); in testDragAndDrop_longClick()
400 mouseDragOnText(helloWorld.indexOf("llo"), helloWorld.indexOf("ld!"))); in testSelectionHandlesDisplay()
/aosp14/frameworks/base/core/tests/coretests/src/android/widget/espresso/
H A DTextViewActions.java315 public static ViewAction mouseDragOnText(int startIndex, int endIndex) { in mouseDragOnText() method in TextViewActions