Home
last modified time | relevance | path

Searched refs:selectionStart (Results 1 – 4 of 4) sorted by relevance

/external/v8/tools/profview/
Dprofview.js660 this.selectionStart = null;
673 this.selectionStart =
675 this.selectionEnd = this.selectionStart + 1;
688 if (this.selectionStart !== null) {
690 if (Math.abs(x - this.selectionStart) < 10) {
691 this.selectionStart = null;
701 let start = this.selectionStart === null ? 0 : this.selectionStart;
732 if (this.selectionStart !== null && this.selectionEnd !== null) {
734 left = Math.min(this.selectionStart, this.selectionEnd);
735 right = Math.max(this.selectionStart, this.selectionEnd);
[all …]
/external/droiddriver/src/io/appium/droiddriver/base/
DBaseUiElement.java163 final int selectionStart = getSelectionStart(); in hasSelection() local
166 return selectionStart >= 0 && selectionStart != selectionEnd; in hasSelection()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowTextView.java49 protected int selectionStart = -1; field in ShadowTextView
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
DScriptEditor.java271 int selectionStart = Math.min(mContentText.getSelectionStart(), mContentText.getSelectionEnd()); in insertContent() local
273 mContentText.getEditableText().replace(selectionStart, selectionEnd, text); in insertContent()