Home
last modified time | relevance | path

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

/frameworks/base/core/tests/coretests/src/android/widget/
DTextViewActivityMouseTest.java28 import static android.widget.espresso.TextViewActions.mouseDragOnText;
92 mouseDragOnText(helloWorld.indexOf("llo"), helloWorld.indexOf("ld!"))); in testSelectTextByDrag()
113 mouseDragOnText( helloWorld.indexOf("ld!"), helloWorld.indexOf("llo"))); in testSelectTextByDrag_reverse()
156 mouseDragOnText(text.indexOf("c"), text.indexOf("h"))); in testContextMenu()
192 mouseDragOnText(text.indexOf("d"), text.indexOf("f") + 1)); in testDragAndDrop()
195 mouseDragOnText(text.indexOf("e"), text.length())); in testDragAndDrop()
209 mouseDragOnText(text.indexOf("d"), text.indexOf("f") + 1)); in testDragAndDrop_longClick()
/frameworks/base/core/tests/coretests/src/android/widget/espresso/
DTextViewActions.java235 public static ViewAction mouseDragOnText(int startIndex, int endIndex) { in mouseDragOnText() method in TextViewActions