Home | History | Annotate | Download | only in widget

Lines Matching refs:selEnd

3739             ss.selEnd = end;
3793 if (ss.selStart >= 0 && ss.selEnd >= 0) {
3797 if (ss.selStart > len || ss.selEnd > len) {
3805 "/" + ss.selEnd + " out of range for " + restored +
3808 Selection.setSelection((Spannable) mText, ss.selStart, ss.selEnd);
5237 final int selEnd = getSelectionEnd();
5239 if (selStart == selEnd) {
5260 mLayout.getSelectionPath(selStart, selEnd, mHighlightPath);
5457 int selEnd = getSelectionEnd();
5458 if (selEnd < 0) {
5464 if (selStart < 0 || selStart >= selEnd) {
5465 int line = mLayout.getLineForOffset(selEnd);
5468 r.left = (int) mLayout.getPrimaryHorizontal(selEnd) - 2;
5472 int lineEnd = mLayout.getLineForOffset(selEnd);
5477 r.right = (int) mLayout.getPrimaryHorizontal(selEnd);
5484 mLayout.getSelectionPath(selStart, selEnd, mHighlightPath);
7586 * @param selEnd The new selection end location.
7588 protected void onSelectionChanged(int selStart, int selEnd) {
8645 final int selEnd = getSelectionEnd();
8647 min = Math.max(0, Math.min(selStart, selEnd));
8648 max = Math.max(0, Math.max(selStart, selEnd));
9153 int selEnd;
9166 out.writeInt(selEnd);
9182 + " start=" + selStart + " end=" + selEnd;
9204 selEnd = in.readInt();