OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NextWord
(Results
1 - 2
of
2
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ExpandableDictionary.java
55
LinkedList<
NextWord
> mNGrams; // Supports ngram
79
public interface
NextWord
{
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
nw : bigrams)
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/
DynamicPersonalizationDictionaryWriter.java
27
import com.android.inputmethod.latin.ExpandableDictionary.
NextWord
;
148
final
NextWord
nw = mExpandableDictionary.getBigramWord(word0, word1);
Completed in 32 milliseconds