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

  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/policy/
dictionary_structure_with_buffer_policy.h 74 virtual bool removeBigramWords(const int *const word0, const int length0,
  /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) {
ExpandableBinaryDictionary.java 381 mBinaryDictionary.removeBigramWords(word0, word1);
384 mDictionaryWriter.removeBigramWords(word0, word1);
BinaryDictionary.java 297 public void removeBigramWords(final String word0, final String word1) {
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
dictionary.h 77 void removeBigramWords(const int *const word0, const int length0, const int *const word1,
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/
dynamic_patricia_trie_policy.h 88 bool removeBigramWords(const int *const word0, const int length0, const int *const word1,
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_writing_helper.h 70 bool removeBigramWords(const int word0Pos, const int word1Pos);
dynamic_patricia_trie_policy.cpp 272 bool DynamicPatriciaTriePolicy::removeBigramWords(const int *const word0, const int length0,
275 AKLOGI("Warning: removeBigramWords() is called for non-updatable dictionary.");
295 if (writingHelper.removeBigramWords(word0Pos, word1Pos)) {
dynamic_patricia_trie_writing_helper.cpp 141 bool DynamicPatriciaTrieWritingHelper::removeBigramWords(const int word0Pos, const int word1Pos) {
  /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...]
  /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/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp 319 dictionary->removeBigramWords(word0CodePoints, word0Length, word1CodePoints,

Completed in 3910 milliseconds