Searched defs:expectedMoveAmount (Results 1 - 1 of 1) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DWordComposer.java230 * @param expectedMoveAmount How many java chars to move the cursor. Negative values move
234 public boolean moveCursorByAndReturnIfInsideComposingWord(final int expectedMoveAmount) { argument
239 if (expectedMoveAmount >= 0) {
242 while (actualMoveAmount < expectedMoveAmount && cursorPos < codePoints.length) {
249 while (actualMoveAmount > expectedMoveAmount && cursorPos > 0) {
256 if (actualMoveAmount != expectedMoveAmount) {

Completed in 152 milliseconds