Home
last modified time | relevance | path

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

/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowTextView.java50 protected int selectionEnd = 0; field in ShadowTextView
86 boolean isSelectEndAtEnd = selectionEnd == this.text.length(); in append()
98 selectionEnd = this.text.length(); in append()
494 selectionEnd = end; in setSelection()
504 return selectionEnd; in getSelectionEnd()
/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/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
DScriptEditor.java271 int selectionEnd = Math.max(mContentText.getSelectionStart(), mContentText.getSelectionEnd()); in insertContent() local
272 mContentText.getEditableText().replace(selectionStart, selectionEnd, text); in insertContent()