Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/util/
DCharSequences.java73 public CharSequence subSequence(int newStart, int newEnd) {
74 newStart -= start;
76 validate(newStart, newEnd, length());
77 return forAsciiBytes(bytes, newStart, newEnd);
/frameworks/base/core/java/android/webkit/
DWebTextView.java336 int newStart = Selection.getSelectionStart(span); in dispatchKeyEvent() local
339 newStart, newEnd); in dispatchKeyEvent()
DWebViewCore.java559 int oldStart, int oldEnd, String replace, int newStart, int newEnd, in nativeReplaceTextfieldText() argument
DWebView.java7687 String replace, int newStart, int newEnd) { in replaceTextfieldText() argument
7690 arg.mNewStart = newStart; in replaceTextfieldText()
/frameworks/base/core/java/android/widget/
DTextView.java7008 int newStart = start; in moveCursorToVisibleOffset() local
7009 if (newStart < lowChar) { in moveCursorToVisibleOffset()
7010 newStart = lowChar; in moveCursorToVisibleOffset()
7011 } else if (newStart > highChar) { in moveCursorToVisibleOffset()
7012 newStart = highChar; in moveCursorToVisibleOffset()
7015 if (newStart != start) { in moveCursorToVisibleOffset()
7016 Selection.setSelection((Spannable)mText, newStart); in moveCursorToVisibleOffset() local
7634 void spanChange(Spanned buf, Object what, int oldStart, int newStart, int oldEnd, int newEnd) { in spanChange() argument
7646 newSelEnd = newStart; in spanChange()
7652 if (oldStart >= 0 || newStart >= 0) { in spanChange()
[all …]