HomeSort by relevance Sort by last modified time
    Searched refs:addWord (Results 1 - 25 of 34) sorted by null

1 2

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SuggestedWords.java 107 addWord(words.get(i), suggestedWordInfo);
112 public Builder addWord(CharSequence word) {
113 return addWord(word, null, false);
116 public Builder addWord(CharSequence word, CharSequence debugString,
119 return addWord(word, info);
122 private Builder addWord(CharSequence word, SuggestedWordInfo suggestedWordInfo) {
133 if (null != info) addWord(info.getText());
160 addWord(typedWord, null, false);
167 addWord(prevWord, null, true);
Dictionary.java 57 boolean addWord(char[] word, int wordOffset, int wordLength, int score, int dicTypeId,
67 * @see WordCallback#addWord(char[], int, int, int, int, DataType)
WhitelistDictionary.java 62 addWord(after, score);
101 // The words have been added to the ExpandableDictionary with addWord() inside initWordlist.
UserDictionary.java 160 public synchronized void addWord(final String word, final int frequency) {
166 super.addWord(word, frequency);
179 new Thread("addWord") {
240 super.addWord(word, frequency);
UserUnigramDictionary.java 135 super.addWord(word, frequency);
146 public void addWord(String newWord, int addFrequency) {
158 super.addWord(word, freq);
BinaryDictionary.java 160 callback.addWord(mOutputChars_bigrams, start, len, mBigramScores[j],
180 callback.addWord(mOutputChars, start, len, mScores[j], mDicTypeId,
ContactsDictionary.java 152 super.addWord(word, FREQUENCY_FOR_CONTACTS);
ExpandableDictionary.java 156 public void addWord(String word, int frequency) {
302 if (!callback.addWord(word, 0, depth + 1, finalFreq, mDicTypeId,
343 callback.addWord(word, 0, depth + 1, finalFreq, mDicTypeId,
507 callback.addWord(mLookedUpString, index, MAX_WORD_LENGTH - index, freq, mDicTypeId,
    [all...]
Suggest.java 106 // TODO: Remove these member variables by passing more context to addWord() callback method
408 public boolean addWord(final char[] word, final int offset, final int length, int score,
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnEngine.java 133 public int addWord(WnnWord word);
SymbolList.java 225 /** @see jp.co.omronsoft.openwnn.WnnEngine#addWord */
226 public int addWord(WnnWord word) {return 0;}
OpenWnnEN.java 424 mConverterEN.addWord(ev.word);
    [all...]
  /frameworks/base/core/java/android/provider/
UserDictionary.java 109 public static void addWord(Context context, String word,
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryDatabase.java 213 long id = addWord(strings[0].trim(), strings[1].trim());
228 public long addWord(String word, String definition) {
  /cts/tests/tests/provider/src/android/provider/cts/
UserDictionary_WordsTest.java 73 method = "addWord",
81 UserDictionary.Words.addWord(getContext(), word, frequency,
  /external/icu4c/common/
triedict.h 182 virtual void addWord( const UChar *word,
triedict.cpp 162 MutableTrieDictionary::addWord( const UChar *word,
212 addWord(word, length, status);
    [all...]
  /packages/inputmethods/LatinIME/native/src/
unigram_dictionary.h 91 bool addWord(unsigned short *word, int length, int frequency);
unigram_dictionary.cpp 262 // TODO: We need to optimize addWord by using STL or something
264 bool UnigramDictionary::addWord(unsigned short *word, int length, int frequency) {
383 addWord(wordPointer, wordLength, finalFreq);
438 addWord(word, newWordLength, pairFreq);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
UserDictionarySettings.java 286 UserDictionary.Words.addWord(getActivity(), word.toString(),
290 UserDictionary.Words.addWord(getActivity(), word.toString(),
297 UserDictionary.Words.addWord(getActivity(), word.toString(),
  /external/icu4c/tools/genctd/
genctd.cpp 322 mtd->addWord(candidate, length, status);
324 fprintf(stderr, "MutableTrieDictionary::addWord: ICU Error \"%s\"\n",
  /external/icu4c/tools/gennames/
gennames.c 316 addWord(char *s, int16_t length);
711 word=addWord(name+start, wordLength);
725 word=addWord(name+prevStart, wordLength);
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
OpenWnnEngineEN.java 317 /** @see jp.co.omronsoft.openwnn.WnnEngine#addWord */
318 public int addWord(WnnWord word) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 144 synchronized public boolean addWord(char[] word, int wordOffset, int wordLength, int score,
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnEngineJAJP.java 524 /** @see jp.co.omronsoft.openwnn.WnnEngine#addWord */
525 public int addWord(WnnWord word) {

Completed in 157 milliseconds

1 2