HomeSort by relevance Sort by last modified time
    Searched defs:removeBigramWords (Results 1 - 9 of 9) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
AbstractDictionaryWriter.java 61 abstract public void removeBigramWords(final String word0, final String word1);
DictionaryWriter.java 83 public void removeBigramWords(final String word0, final String word1) {
BinaryDictionary.java 297 public void removeBigramWords(final String word0, final String word1) {
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
dictionary.cpp 114 void Dictionary::removeBigramWords(const int *const word0, const int length0,
116 mDictionaryStructureWithBufferPolicy->removeBigramWords(word0, length0, word1, length1);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
patricia_trie_policy.h 93 bool removeBigramWords(const int *const word0, const int length0, const int *const word1,
96 AKLOGI("Warning: removeBigramWords() is called for non-updatable dictionary.");
dynamic_patricia_trie_policy.cpp 279 bool DynamicPatriciaTriePolicy::removeBigramWords(const int *const word0, const int length0,
282 AKLOGI("Warning: removeBigramWords() is called for non-updatable dictionary.");
302 if (writingHelper.removeBigramWords(word0Pos, word1Pos)) {
dynamic_patricia_trie_writing_helper.cpp 141 bool DynamicPatriciaTrieWritingHelper::removeBigramWords(const int word0Pos, const int word1Pos) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/
DynamicPersonalizationDictionaryWriter.java 116 public void removeBigramWords(final String word0, final String word1) {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
BinaryDictionaryTests.java 305 binaryDictionary.removeBigramWords("aaa", "abb");
311 binaryDictionary.removeBigramWords("aaa", "bcc");
313 binaryDictionary.removeBigramWords("abb", "aaa");
315 binaryDictionary.removeBigramWords("abb", "bcc");
318 binaryDictionary.removeBigramWords("aaa", "abb");
320 binaryDictionary.removeBigramWords("aaa", "abb");
321 binaryDictionary.removeBigramWords("bcc", "aaa");
558 binaryDictionary.removeBigramWords(bigram.first, bigram.second);
    [all...]

Completed in 252 milliseconds