Home
last modified time | relevance | path

Searched refs:selectionEnd (Results 1 – 5 of 5) sorted by relevance

/external/libtextclassifier/java/com/google/android/textclassifier/
DAnnotatorModel.java124 String context, int selectionBegin, int selectionEnd, SelectionOptions options) { in suggestSelection() argument
125 return nativeSuggestSelection(annotatorPtr, context, selectionBegin, selectionEnd, options); in suggestSelection()
137 String context, int selectionBegin, int selectionEnd, ClassificationOptions options) { in classifyText() argument
141 selectionEnd, in classifyText()
150 int selectionEnd, in classifyText() argument
155 annotatorPtr, context, selectionBegin, selectionEnd, options, appContext, deviceLocales); in classifyText()
574 long context, String text, int selectionBegin, int selectionEnd, SelectionOptions options); in nativeSuggestSelection() argument
580 int selectionEnd, in nativeClassifyText() argument
/external/v8/tools/profview/
Dprofview.js661 this.selectionEnd = null;
675 this.selectionEnd = this.selectionStart + 1;
681 this.selectionEnd =
692 this.selectionEnd = null;
696 this.selectionEnd = x;
702 let end = this.selectionEnd === null ? Infinity : this.selectionEnd;
732 if (this.selectionStart !== null && this.selectionEnd !== null) {
734 left = Math.min(this.selectionStart, this.selectionEnd);
735 right = Math.max(this.selectionStart, this.selectionEnd);
839 this.selectionEnd = (end - firstTime) / (lastTime - firstTime) * width;
/external/droiddriver/src/io/appium/droiddriver/base/
DBaseUiElement.java164 final int selectionEnd = getSelectionEnd(); in hasSelection() local
166 return selectionStart >= 0 && selectionStart != selectionEnd; in hasSelection()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowTextView.java50 protected int selectionEnd = -1; field in ShadowTextView
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
DScriptEditor.java272 int selectionEnd = Math.max(mContentText.getSelectionStart(), mContentText.getSelectionEnd()); in insertContent() local
273 mContentText.getEditableText().replace(selectionStart, selectionEnd, text); in insertContent()