Home | History | Annotate | Download | only in method

Lines Matching defs:selEnd

98         int selStart, selEnd;
105 selEnd = Math.max(a, b);
108 if (selStart < 0 || selEnd < 0) {
109 selStart = selEnd = 0;
117 if (selStart != selEnd) {
118 Selection.setSelection(content, selEnd);
121 content.replace(selStart, selEnd, String.valueOf((char) i));
129 if (selStart == selEnd && selEnd > 0 &&
131 content.replace(selStart - 1, selEnd, String.valueOf('+'));