Lines Matching defs:end

530     private void updateSpellCheckSpans(int start, int end, boolean createSpellChecker) {
533 mTextView.removeAdjacentSuggestionSpans(end);
541 mSpellChecker.spellCheck(start, end);
874 final int end = mTextView.getSelectionEnd();
875 CharSequence selectedText = mTextView.getTransformedText(start, end);
877 DragLocalState localState = new DragLocalState(mTextView, start, end);
1234 " end=" + ims.mChangedEnd +
1244 " end=" + ims.mExtractedText.partialEndOffset +
1394 blockDisplayList.end(hardwareCanvas);
1450 void invalidateTextDisplayList(Layout layout, int start, int end) {
1453 final int lastLine = layout.getLineForOffset(end);
1748 final int end = mTextView.getSelectionEnd();
1749 if (end < 0) return false;
1751 return start == end;
1826 public int start, end;
1828 public DragLocalState(TextView sourceTextView, int start, int end) {
1831 this.end = end;
1855 if (offset >= dragLocalState.start && offset < dragLocalState.end) {
1870 int dragSourceEnd = dragLocalState.end;
1927 public void onSpanAdded(Spannable text, Object span, int start, int end) {
1952 int end = editable.getSpanEnd(span);
1953 if (start >= 0 && end >= 0) {
1955 mTextView.deleteText_internal(start, end);
1984 public void onSpanRemoved(Spannable text, Object span, int start, int end) {
2106 // Place the pop-up at the end of the span
2472 int end = spannable.getSpanEnd(suggestionSpan);
2473 mSpansLengths.put(suggestionSpan, Integer.valueOf(end - start));
2603 // Also end outer for loop
2665 // Adjust the start/end of the suggestion span
2775 // Move cursor at the end of the replaced word
4053 int end = Math.min(length, mEnd);
4056 layout.getSelectionPath(start, end, mPath);
4168 public CharSequence filter(CharSequence source, int start, int end,
4171 Log.d(TAG, "filter: source=" + source + " (" + start + "-" + end + ")");
4189 // more if we are either appending new text to the end of the last edit or
4191 if (start < end && ((dstart >= op.mRangeStart && dend <= op.mRangeEnd)
4193 op.mRangeEnd = dstart + (end-start);
4201 if (start == end && dend == op.mRangeStart-1) {
4228 if (start < end) {
4229 op.mRangeEnd = dstart + (end-start);