Searched defs:extendSelection (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DEditText.java147 * Convenience for {@link Selection#extendSelection}.
149 public void extendSelection(int index) { method in class:EditText
150 Selection.extendSelection(getText(), index);
/frameworks/base/core/java/android/text/
H A DSelection.java165 public static final void extendSelection(Spannable text, int index) { method in class:Selection
166 extendSelection(text, index, -1);
172 private static void extendSelection(Spannable text, int index, int memory) { method in class:Selection
256 extendSelection(text, move, newMemory);
360 extendSelection(text, 0);
379 extendSelection(text, text.length(), -1);
395 extendSelection(text, to);
411 extendSelection(text, to);
420 extendSelection(text, where);
426 extendSelection(tex
451 moveToPreceding( Spannable text, PositionIterator iter, boolean extendSelection) argument
465 moveToFollowing( Spannable text, PositionIterator iter, boolean extendSelection) argument
[all...]
/frameworks/support/recyclerview-selection/src/main/java/androidx/recyclerview/selection/
H A DGestureSelectionHelper.java184 extendSelection(lastGlidedItemPos);
205 private void extendSelection(int endPos) { method in class:GestureSelectionHelper
/frameworks/base/core/java/android/view/
H A DView.java12131 final boolean extendSelection = arguments.getBoolean(
12133 return traverseAtGranularity(granularity, true, extendSelection);
12140 final boolean extendSelection = arguments.getBoolean(
12142 return traverseAtGranularity(granularity, false, extendSelection);
12197 boolean extendSelection) {
12218 if (extendSelection && isAccessibilitySelectionExtendable()) {
12196 traverseAtGranularity(int granularity, boolean forward, boolean extendSelection) argument
[all...]

Completed in 802 milliseconds