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

1 2

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
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)
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);
WhitelistDictionary.java 62 addWord(after, score);
101 // The words have been added to the ExpandableDictionary with addWord() inside initWordlist.
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...]
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);
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);
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,
LatinIME.java     [all...]
  /frameworks/base/core/java/android/provider/
UserDictionary.java 109 public static void addWord(Context context, String word,
  /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;}
  /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) {
  /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/native/src/
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/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnEngineJAJP.java 524 /** @see jp.co.omronsoft.openwnn.WnnEngine#addWord */
525 public int addWord(WnnWord word) {
  /external/icu4c/common/
triedict.cpp 162 MutableTrieDictionary::addWord( const UChar *word,
212 addWord(word, length, status);
    [all...]
  /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/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 144 synchronized public boolean addWord(char[] word, int wordOffset, int wordLength, int score,
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/14/
android.jar 

Completed in 437 milliseconds

1 2