Searched defs:selectionStart (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/view/inputmethod/
H A DExtractedText.java61 * <var>startOffset</var>+<var>selectionStart</var>.
63 public int selectionStart; field in class:ExtractedText
109 dest.writeInt(selectionStart);
126 res.selectionStart = source.readInt();
/frameworks/base/core/java/android/view/
H A DViewStructure.java184 * extending from <var>selectionStart</var> through <var>selectionEnd</var>.
186 public abstract void setText(CharSequence text, int selectionStart, int selectionEnd); argument
/frameworks/base/core/java/android/widget/
H A DSelectionActionModeHelper.java455 private void resetTextClassificationHelper(int selectionStart, int selectionEnd) { argument
456 if (selectionStart < 0 || selectionEnd < 0) {
458 selectionStart = mTextView.getSelectionStart();
464 selectionStart, selectionEnd,
504 CharSequence text, int selectionStart, int selectionEnd, boolean isLink) {
509 mOriginalStart = mSelectionStart = selectionStart;
514 text, selectionStart,
547 int selectionStart, int selectionEnd,
550 mSelectionStart = selectionStart;
553 mLogger.logSelectionModified(selectionStart, selectionEn
503 onOriginalSelection( CharSequence text, int selectionStart, int selectionEnd, boolean isLink) argument
546 onSelectionUpdated( int selectionStart, int selectionEnd, @Nullable TextClassification classification) argument
569 onSelectionAction( int selectionStart, int selectionEnd, @SelectionEvent.ActionType int action, @Nullable TextClassification classification) argument
961 TextClassificationHelper(Context context, Supplier<TextClassifier> textClassifier, CharSequence text, int selectionStart, int selectionEnd, LocaleList locales) argument
968 init(Supplier<TextClassifier> textClassifier, CharSequence text, int selectionStart, int selectionEnd, LocaleList locales) argument
[all...]
H A DNumberPicker.java2086 * {@code selectionStart} to {@code selectionEnd}.
2088 private void postSetSelectionCommand(int selectionStart, int selectionEnd) { argument
2092 mSetSelectionCommand.post(selectionStart, selectionEnd);
2304 public void post(int selectionStart, int selectionEnd) { argument
2305 mSelectionStart = selectionStart;
H A DEditor.java951 int selectionStart, selectionEnd;
958 selectionStart = ((Spanned) mTextView.getText()).getSpanStart(urlSpan);
966 selectionStart = wordIterator.getBeginning(minOffset);
969 if (selectionStart == BreakIterator.DONE || selectionEnd == BreakIterator.DONE
970 || selectionStart == selectionEnd) {
973 selectionStart = TextUtils.unpackRangeStartFromLong(range);
978 Selection.setSelection((Spannable) mTextView.getText(), selectionStart, selectionEnd);
979 return selectionEnd > selectionStart;
1093 int selectionStart = mTextView.getSelectionStart();
1096 if (selectionStart
6053 updateSelectionInternal(int selectionStart, int selectionEnd, boolean fromTouchScreen) argument
[all...]
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java1714 public void setText(CharSequence text, int selectionStart, int selectionEnd) { argument
1717 t.mTextSelectionStart = selectionStart;

Completed in 363 milliseconds