Home
last modified time | relevance | path

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

/external/perfetto/ui/src/frontend/
Danalyze_page.ts51 const {selectionStart, selectionEnd} = target; constant
52 target.value = target.value.substring(0, selectionStart) + whitespace +
54 target.selectionEnd = selectionStart + TAB_SPACES;
/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()