Home
last modified time | relevance | path

Searched refs:dragHandle (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/core/tests/coretests/src/android/widget/
H A DTextViewActivityTest.java29 import static android.widget.espresso.TextViewActions.dragHandle;
412 .perform(dragHandle(textView, Handle.SELECTION_START, 0)); in testToolbarMenuItemClickAfterSelectionChange()
556 .perform(dragHandle(textView, Handle.SELECTION_END, text.length())); in testToolbarAndSelectionHandle()
578 .perform(dragHandle(textView, Handle.INSERTION, text.indexOf('a'))); in testInsertionHandle()
582 .perform(dragHandle(textView, Handle.INSERTION, text.indexOf('f'))); in testInsertionHandle()
597 .perform(dragHandle(textView, Handle.INSERTION, text.indexOf('f'))); in testInsertionHandle_multiLine()
601 .perform(dragHandle(textView, Handle.INSERTION, text.indexOf('i'))); in testInsertionHandle_multiLine()
724 .perform(dragHandle(textView, Handle.SELECTION_END, text.indexOf('a'))); in testSelectionHandles_bidi()
742 .perform(dragHandle(textView, Handle.SELECTION_END, text.length())); in testSelectionHandles_bidi()
814 .perform(dragHandle(textView, Handle.SELECTION_END, text.indexOf('a'))); in testSelectionHandles_doesNotPassAnotherHandle()
[all …]
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/phone/
H A DPipMenuIconsAlgorithm.java45 public void bindViews(ViewGroup viewRoot, ViewGroup topEndContainer, View dragHandle, in bindViews() argument
49 mDragHandle = dragHandle; in bindViews()
/aosp14/frameworks/base/core/tests/coretests/src/android/widget/espresso/
H A DTextViewActions.java410 public static ViewAction dragHandle(TextView textView, Handle handleType, int endIndex) { in dragHandle() method in TextViewActions
411 return dragHandle(textView, handleType, endIndex, true); in dragHandle()
429 public static ViewAction dragHandle(TextView textView, Handle handleType, int endIndex, in dragHandle() method in TextViewActions