diff options
author | 2014-07-01 03:22:52 +0000 | |
---|---|---|
committer | 2014-06-26 23:14:30 +0000 | |
commit | 35605db9a4c2561c554f3fe3c5304ad544ad385a (patch) | |
tree | 57b8a4e0e1c274dd133d2679e708611702f52d4a /java/src | |
parent | c8094c463b7ee41feef49bb331eb6509b30d751f (diff) | |
parent | f84573c0b3128609e6d73ea61f2aa1a1dac762a4 (diff) | |
download | latinime-35605db9a4c2561c554f3fe3c5304ad544ad385a.tar.gz latinime-35605db9a4c2561c554f3fe3c5304ad544ad385a.tar.xz latinime-35605db9a4c2561c554f3fe3c5304ad544ad385a.zip |
Merge "Revert "[SD6] Inline a constant and remove logic become useless""
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/RichInputConnection.java | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/java/src/com/android/inputmethod/latin/RichInputConnection.java b/java/src/com/android/inputmethod/latin/RichInputConnection.java index 5e0dafa57..96bf17b5c 100644 --- a/java/src/com/android/inputmethod/latin/RichInputConnection.java +++ b/java/src/com/android/inputmethod/latin/RichInputConnection.java @@ -626,6 +626,7 @@ public final class RichInputConnection { * @return a range containing the text surrounding the cursor */ public TextRange getWordRangeAtCursor(final int[] sortedSeparators) { + final int additionalPrecedingWordsCount = 0; mIC = mParent.getCurrentInputConnection(); if (mIC == null) { return null; @@ -638,17 +639,29 @@ public final class RichInputConnection { return null; } - // Going backward, find the first breaking point (separator) + // Going backward, alternate skipping non-separators and separators until enough words + // have been read. + int count = additionalPrecedingWordsCount; int startIndexInBefore = before.length(); - while (startIndexInBefore > 0) { - final int codePoint = Character.codePointBefore(before, startIndexInBefore); - if (isSeparator(codePoint, sortedSeparators)) { - break; - } - --startIndexInBefore; - if (Character.isSupplementaryCodePoint(codePoint)) { + boolean isStoppingAtWhitespace = true; // toggles to indicate what to stop at + while (true) { // see comments below for why this is guaranteed to halt + while (startIndexInBefore > 0) { + final int codePoint = Character.codePointBefore(before, startIndexInBefore); + if (isStoppingAtWhitespace == isSeparator(codePoint, sortedSeparators)) { + break; // inner loop + } --startIndexInBefore; + if (Character.isSupplementaryCodePoint(codePoint)) { + --startIndexInBefore; + } + } + // isStoppingAtWhitespace is true every other time through the loop, + // so additionalPrecedingWordsCount is guaranteed to become < 0, which + // guarantees outer loop termination + if (isStoppingAtWhitespace && (--count < 0)) { + break; // outer loop } + isStoppingAtWhitespace = !isStoppingAtWhitespace; } // Find last word separator after the cursor |