Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/tests/coretests/src/android/widget/
H A DTextViewActivityTest.java31 import static android.widget.espresso.TextViewActions.longPressAndDragOnText;
224 longPressAndDragOnText(helloWorld.indexOf("little"), helloWorld.indexOf(" boy!"))); in testLongPressAndDragToSelect()
234 onView(withId(R.id.textview)).perform(longPressAndDragOnText(4, 6)); in testLongPressAndDragToSelect_emoji()
239 onView(withId(R.id.textview)).perform(longPressAndDragOnText(4, 2)); in testLongPressAndDragToSelect_emoji()
250 longPressAndDragOnText(text.indexOf("e"), text.length())); in testDragAndDrop()
/aosp14/frameworks/base/core/tests/coretests/src/android/widget/espresso/
H A DTextViewActions.java191 public static ViewAction longPressAndDragOnText(int startIndex, int endIndex) { in longPressAndDragOnText() method in TextViewActions