diff options
author | 2011-08-29 02:55:46 -0700 | |
---|---|---|
committer | 2011-08-29 02:55:46 -0700 | |
commit | 5406d63d34d6a9bb9e640d981de668047d951192 (patch) | |
tree | 88645be74d110a8f6f27e94526072d70d084c006 /java/src/com/android/inputmethod/latin/ExpandableDictionary.java | |
parent | 46286874f30c4a6ef44646c4e4adf36fe55c74b9 (diff) | |
parent | f019d505d7da97c03c321eef02c4879c4e0448f6 (diff) | |
download | latinime-5406d63d34d6a9bb9e640d981de668047d951192.tar.gz latinime-5406d63d34d6a9bb9e640d981de668047d951192.tar.xz latinime-5406d63d34d6a9bb9e640d981de668047d951192.zip |
Merge "Fix a bug with synchronicity of spell checking/user dict"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/ExpandableDictionary.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/ExpandableDictionary.java | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/ExpandableDictionary.java b/java/src/com/android/inputmethod/latin/ExpandableDictionary.java index 9f4777f5a..2b78b9065 100644 --- a/java/src/com/android/inputmethod/latin/ExpandableDictionary.java +++ b/java/src/com/android/inputmethod/latin/ExpandableDictionary.java @@ -202,7 +202,11 @@ public class ExpandableDictionary extends Dictionary { // Currently updating contacts, don't return any results. if (mUpdatingDictionary) return; } + getWordsInner(codes, callback, proximityInfo); + } + protected final void getWordsInner(final WordComposer codes, final WordCallback callback, + final ProximityInfo proximityInfo) { mInputLength = codes.size(); if (mCodes.length < mInputLength) mCodes = new int[mInputLength][]; // Cache the codes so that we don't have to lookup an array list @@ -223,8 +227,7 @@ public class ExpandableDictionary extends Dictionary { if (mRequiresReload) startDictionaryLoadingTaskLocked(); if (mUpdatingDictionary) return false; } - final int freq = getWordFrequency(word); - return freq > -1; + return getWordFrequency(word) > -1; } /** @@ -464,7 +467,7 @@ public class ExpandableDictionary extends Dictionary { } /** - * Used only for testing purposes + * Used for testing purposes and in the spell checker * This function will wait for loading from database to be done */ void waitForDictionaryLoading() { @@ -477,6 +480,11 @@ public class ExpandableDictionary extends Dictionary { } } + protected final void blockingReloadDictionaryIfRequired() { + reloadDictionaryIfRequired(); + waitForDictionaryLoading(); + } + // Local to reverseLookUp, but do not allocate each time. private final char[] mLookedUpString = new char[MAX_WORD_LENGTH]; |