Home | History | Annotate | Download | only in widget

Lines Matching defs:selEnd

3729             ss.selEnd = end;
3783 if (ss.selStart >= 0 && ss.selEnd >= 0) {
3787 if (ss.selStart > len || ss.selEnd > len) {
3795 "/" + ss.selEnd + " out of range for " + restored +
3798 Selection.setSelection((Spannable) mText, ss.selStart, ss.selEnd);
5221 final int selEnd = getSelectionEnd();
5223 if (selStart == selEnd) {
5244 mLayout.getSelectionPath(selStart, selEnd, mHighlightPath);
5441 int selEnd = getSelectionEnd();
5442 if (selEnd < 0) {
5448 if (selStart < 0 || selStart >= selEnd) {
5449 int line = mLayout.getLineForOffset(selEnd);
5452 r.left = (int) mLayout.getPrimaryHorizontal(selEnd) - 2;
5456 int lineEnd = mLayout.getLineForOffset(selEnd);
5461 r.right = (int) mLayout.getPrimaryHorizontal(selEnd);
5468 mLayout.getSelectionPath(selStart, selEnd, mHighlightPath);
7570 * @param selEnd The new selection end location.
7572 protected void onSelectionChanged(int selStart, int selEnd) {
8616 final int selEnd = getSelectionEnd();
8618 min = Math.max(0, Math.min(selStart, selEnd));
8619 max = Math.max(0, Math.max(selStart, selEnd));
9121 int selEnd;
9134 out.writeInt(selEnd);
9150 + " start=" + selStart + " end=" + selEnd;
9172 selEnd = in.readInt();