Home | History | Annotate | Download | only in method

Lines Matching refs:selectionEnd

162         int selectionEnd = Selection.getSelectionEnd(content);
163 if (selectionEnd < selectionStart) {
164 int temp = selectionEnd;
165 selectionEnd = selectionStart;
168 if (selectionStart != selectionEnd) {
169 content.delete(selectionStart, selectionEnd);
244 int selectionEnd = Selection.getSelectionEnd(content);
245 if (selectionEnd < selectionStart) {
246 int temp = selectionEnd;
247 selectionEnd = selectionStart;
256 content.replace(selectionStart, selectionEnd, text);