Searched defs:NextWord (Results 1 - 1 of 1) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DExpandableDictionary.java55 LinkedList<NextWord> mNGrams; // Supports ngram
79 public interface NextWord { interface in class:ExpandableDictionary
86 private static final class NextStaticWord implements NextWord {
115 private static final class NextHistoryWord implements NextWord {
294 LinkedList<NextWord> bigrams = firstWord.mNGrams;
295 NextWord bigramNode = null;
299 for (NextWord nw : bigrams) {
322 public NextWord getBigramWord(final String word0, final String word1) {
326 LinkedList<NextWord> bigrams = firstWord.mNGrams;
330 for (NextWord n
[all...]

Completed in 269 milliseconds