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

/frameworks/base/core/java/android/widget/
H A DEditText.java138 * Convenience for {@link Selection#extendSelection}.
140 public void extendSelection(int index) { method in class:EditText
141 Selection.extendSelection(getText(), index);
/frameworks/base/core/java/android/text/
H A DSelection.java100 public static final void extendSelection(Spannable text, int index) { method in class:Selection
276 extendSelection(text, move);
279 extendSelection(text, 0);
305 extendSelection(text, move);
308 extendSelection(text, text.length());
324 extendSelection(text, to);
340 extendSelection(text, to);
349 extendSelection(text, where);
355 extendSelection(text, where);
381 Spannable text, PositionIterator iter, boolean extendSelection) {
380 moveToPreceding( Spannable text, PositionIterator iter, boolean extendSelection) argument
394 moveToFollowing( Spannable text, PositionIterator iter, boolean extendSelection) argument
[all...]
/frameworks/base/core/java/android/view/
H A DView.java11409 final boolean extendSelection = arguments.getBoolean(
11411 return traverseAtGranularity(granularity, true, extendSelection);
11418 final boolean extendSelection = arguments.getBoolean(
11420 return traverseAtGranularity(granularity, false, extendSelection);
11460 boolean extendSelection) {
11481 if (extendSelection && isAccessibilitySelectionExtendable()) {
11459 traverseAtGranularity(int granularity, boolean forward, boolean extendSelection) argument

Completed in 334 milliseconds