Home | History | Annotate | Download | only in widget

Lines Matching refs:selStart

3236             ss.selStart = start;
3303 if (ss.selStart >= 0 && ss.selEnd >= 0) {
3307 if (ss.selStart > len || ss.selEnd > len) {
3314 Log.e(LOG_TAG, "Saved cursor position " + ss.selStart +
3318 Selection.setSelection((Spannable) mText, ss.selStart, ss.selEnd);
4699 final int selStart = getSelectionStart();
4701 if (mMovement != null && (isFocused() || isPressed()) && selStart >= 0) {
4702 if (selStart == selEnd) {
4709 mLayout.getCursorPath(selStart, mHighlightPath, mText);
4723 mLayout.getSelectionPath(selStart, selEnd, mHighlightPath);
4916 int selStart = getSelectionStart();
4917 if (selStart < 0 || selStart >= selEnd) {
4924 int lineStart = mLayout.getLineForOffset(selStart);
4929 r.left = (int) mLayout.getPrimaryHorizontal(selStart);
4937 mLayout.getSelectionPath(selStart, selEnd, mHighlightPath);
7013 * @param selStart The new selection start location.
7016 protected void onSelectionChanged(int selStart, int selEnd) {
7882 final int selStart = getSelectionStart();
7885 min = Math.max(0, Math.min(selStart, selEnd));
7886 max = Math.max(0, Math.max(selStart, selEnd));
8473 int selStart;
8486 out.writeInt(selStart);
8503 + " start=" + selStart + " end=" + selEnd;
8524 selStart = in.readInt();