Home | History | Annotate | Download | only in widget

Lines Matching defs:selStart

3728             ss.selStart = start;
3783 if (ss.selStart >= 0 && ss.selEnd >= 0) {
3787 if (ss.selStart > len || ss.selEnd > len) {
3794 Log.e(LOG_TAG, "Saved cursor position " + ss.selStart +
3798 Selection.setSelection((Spannable) mText, ss.selStart, ss.selEnd);
5220 final int selStart = getSelectionStart();
5222 if (mMovement != null && (isFocused() || isPressed()) && selStart >= 0) {
5223 if (selStart == selEnd) {
5230 mLayout.getCursorPath(selStart, mHighlightPath, mText);
5244 mLayout.getSelectionPath(selStart, selEnd, mHighlightPath);
5447 int selStart = getSelectionStart();
5448 if (selStart < 0 || selStart >= selEnd) {
5455 int lineStart = mLayout.getLineForOffset(selStart);
5460 r.left = (int) mLayout.getPrimaryHorizontal(selStart);
5468 mLayout.getSelectionPath(selStart, selEnd, mHighlightPath);
7569 * @param selStart The new selection start location.
7572 protected void onSelectionChanged(int selStart, int selEnd) {
8615 final int selStart = getSelectionStart();
8618 min = Math.max(0, Math.min(selStart, selEnd));
8619 max = Math.max(0, Math.max(selStart, selEnd));
9120 int selStart;
9133 out.writeInt(selStart);
9150 + " start=" + selStart + " end=" + selEnd;
9171 selStart = in.readInt();