HomeSort by relevance Sort by last modified time
    Searched full:currentcursoroffset (Results 1 - 1 of 1) sorted by null

  /frameworks/base/core/java/android/text/method/
BaseKeyListener.java 113 int currentCursorOffset = Selection.getSelectionStart(content);
116 if (currentCursorOffset != Selection.getSelectionEnd(content)) {
121 if ((!isForwardDelete && currentCursorOffset == 0) ||
122 (isForwardDelete && currentCursorOffset == content.length())) {
142 deleteFrom = currentCursorOffset;
144 deleteTo = wordIterator.following(currentCursorOffset);
149 deleteTo = currentCursorOffset;
151 deleteFrom = wordIterator.preceding(currentCursorOffset);

Completed in 4434 milliseconds