Home | History | Annotate | Download | only in method

Lines Matching defs:selectionEnd

426         int selectionEnd = Selection.getSelectionEnd(content);
427 if (selectionEnd < selectionStart) {
428 int temp = selectionEnd;
429 selectionEnd = selectionStart;
432 if (selectionStart != selectionEnd) {
433 content.delete(selectionStart, selectionEnd);
509 int selectionEnd = Selection.getSelectionEnd(content);
510 if (selectionEnd < selectionStart) {
511 int temp = selectionEnd;
512 selectionEnd = selectionStart;
521 content.replace(selectionStart, selectionEnd, text);