Home | History | Annotate | Download | only in method

Lines Matching defs:selStart

86         int selStart, selEnd;
97 selStart = Math.min(a, b);
100 if (selStart < 0 || selEnd < 0) {
101 selStart = selEnd = 0;
115 if (count > 0 && selStart == selEnd && selStart > 0) {
116 char c = content.charAt(selStart - 1);
139 if (selStart == selEnd) {
147 start = selStart;
157 selStart = start;
158 Selection.setSelection(content, selStart, selEnd);
173 if (activeStart == selStart && activeEnd == selEnd) {
176 if (selEnd - selStart - 1 == 0) {
177 char accent = content.charAt(selStart);
190 selStart = selEnd;
196 TextKeyListener.shouldCap(mAutoCap, content, selStart)) {
200 if (where == selStart && (((flags >> 16) & 0xFFFF) == i)) {
206 if (selStart == 0)
211 selStart - 1, selStart,
217 if (selStart != selEnd) {
220 content.setSpan(OLD_SEL_START, selStart, selStart,
223 content.replace(selStart, selEnd, String.valueOf((char) i));
305 && selStart == selEnd) {
315 if (content.getSpanEnd(TextKeyListener.LAST_TYPED) == selStart) {
316 if (content.charAt(selStart - 1) != '\n')
320 Replaced[] repl = content.getSpans(selStart - consider, selStart,
334 if (selStart >= en) {