Searched defs:selectionEnd (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/view/inputmethod/
H A DExtractedText.java66 * <var>startOffset</var>+<var>selectionEnd</var>.
68 public int selectionEnd; field in class:ExtractedText
101 dest.writeInt(selectionEnd);
117 res.selectionEnd = source.readInt();
/frameworks/base/core/java/android/view/textclassifier/
H A DSmartSelection.java48 * character index where the selection begins, and selectionEnd is the index of one character
52 * same semantics as the input selectionBeginning and selectionEnd.
54 public int[] suggest(String context, int selectionBegin, int selectionEnd) { argument
55 return nativeSuggest(mCtx, context, selectionBegin, selectionEnd);
67 String context, int selectionBegin, int selectionEnd, int hintFlags) {
68 return nativeClassifyText(mCtx, context, selectionBegin, selectionEnd, hintFlags);
95 long context, String text, int selectionBegin, int selectionEnd);
98 long context, String text, int selectionBegin, int selectionEnd, int hintFlags);
66 classifyText( String context, int selectionBegin, int selectionEnd, int hintFlags) argument
94 nativeSuggest( long context, String text, int selectionBegin, int selectionEnd) argument
97 nativeClassifyText( long context, String text, int selectionBegin, int selectionEnd, int hintFlags) argument
/frameworks/base/core/java/android/view/
H A DViewStructure.java180 * extending from <var>selectionStart</var> through <var>selectionEnd</var>.
182 public abstract void setText(CharSequence text, int selectionStart, int selectionEnd); argument
/frameworks/support/design/tests/src/android/support/design/testutils/
H A DViewStructureImpl.java186 public void setText(CharSequence text, int selectionStart, int selectionEnd) { argument
/frameworks/base/core/java/android/widget/
H A DSelectionActionModeHelper.java235 public void onOriginalSelection(CharSequence text, int selectionStart, int selectionEnd) { argument
241 mOriginalEnd = mSelectionEnd = selectionEnd;
264 int selectionStart, int selectionEnd,
268 mSelectionEnd = selectionEnd;
270 mLogger.logSelectionModified(selectionStart, selectionEnd, classification, null);
287 int selectionStart, int selectionEnd,
292 mLogger.logSelectionAction(selectionStart, selectionEnd, action, classification);
630 CharSequence text, int selectionStart, int selectionEnd, LocaleList locales) {
631 init(textClassifier, text, selectionStart, selectionEnd, locales);
636 CharSequence text, int selectionStart, int selectionEnd, LocaleLis
263 onSelectionUpdated( int selectionStart, int selectionEnd, @Nullable TextClassification classification) argument
286 onSelectionAction( int selectionStart, int selectionEnd, @SelectionEvent.ActionType int action, @Nullable TextClassification classification) argument
629 TextClassificationHelper(TextClassifier textClassifier, CharSequence text, int selectionStart, int selectionEnd, LocaleList locales) argument
635 init(TextClassifier textClassifier, CharSequence text, int selectionStart, int selectionEnd, LocaleList locales) argument
[all...]
H A DNumberPicker.java2082 * {@code selectionStart} to {@code selectionEnd}.
2084 private void postSetSelectionCommand(int selectionStart, int selectionEnd) { argument
2088 mSetSelectionCommand.post(selectionStart, selectionEnd);
2300 public void post(int selectionStart, int selectionEnd) { argument
2302 mSelectionEnd = selectionEnd;
H A DEditor.java866 int selectionStart, selectionEnd;
874 selectionEnd = ((Spanned) mTextView.getText()).getSpanEnd(urlSpan);
882 selectionEnd = wordIterator.getEnd(maxOffset);
884 if (selectionStart == BreakIterator.DONE || selectionEnd == BreakIterator.DONE
885 || selectionStart == selectionEnd) {
889 selectionEnd = TextUtils.unpackRangeEndFromLong(range);
893 Selection.setSelection((Spannable) mTextView.getText(), selectionStart, selectionEnd);
894 return selectionEnd > selectionStart;
1009 int selectionEnd = mTextView.getSelectionEnd();
1011 if (selectionStart == selectionEnd) {
5570 updateSelectionInternal(int selectionStart, int selectionEnd, boolean fromTouchScreen) argument
[all...]
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java1600 public void setText(CharSequence text, int selectionStart, int selectionEnd) { argument
1604 t.mTextSelectionEnd = selectionEnd;

Completed in 216 milliseconds