Searched refs:dragHandle (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/tests/coretests/src/android/widget/ |
D | TextViewActivityTest.java | 42 import static android.widget.espresso.TextViewActions.dragHandle; 457 .perform(dragHandle(textView, Handle.SELECTION_START, text.indexOf('a'))); in testToolbarAndSelectionHandle() 462 .perform(dragHandle(textView, Handle.SELECTION_END, text.length())); in testToolbarAndSelectionHandle() 485 .perform(dragHandle(textView, Handle.INSERTION, text.indexOf('a'))); in testInsertionHandle() 489 .perform(dragHandle(textView, Handle.INSERTION, text.indexOf('f'))); in testInsertionHandle() 504 .perform(dragHandle(textView, Handle.INSERTION, text.indexOf('a'))); in testInsertionHandle_multiLine() 508 .perform(dragHandle(textView, Handle.INSERTION, text.indexOf('f'))); in testInsertionHandle_multiLine() 526 .perform(dragHandle(textView, Handle.SELECTION_START, text.indexOf('a'))); in testSelectionHandles() 530 .perform(dragHandle(textView, Handle.SELECTION_END, text.indexOf('k') + 1)); in testSelectionHandles() 550 .perform(dragHandle(textView, Handle.SELECTION_START, text.indexOf('f'))); in testSelectionHandles_bidi() [all …]
|
/frameworks/base/core/tests/coretests/src/android/widget/espresso/ |
D | TextViewActions.java | 329 public static ViewAction dragHandle(TextView textView, Handle handleType, int endIndex) { in dragHandle() method in TextViewActions 330 return dragHandle(textView, handleType, endIndex, true); in dragHandle() 348 public static ViewAction dragHandle(TextView textView, Handle handleType, int endIndex, in dragHandle() method in TextViewActions
|