Home | History | Annotate | Download | only in latin

Lines Matching refs:firstWord

330         final Node firstWord = searchWord(mRoots, word1.toLowerCase(), 0, null);
332 LinkedList<NextWord> bigrams = firstWord.mNGrams;
361 final Node firstWord = searchWord(mRoots, word1.toLowerCase(), 0, null);
363 LinkedList<NextWord> bigrams = firstWord.mNGrams;
562 final Node firstWord = searchWord(mRoots, word1Lower, 0, null);
564 LinkedList<NextWord> bigrams = firstWord.mNGrams;
566 firstWord.mNGrams = CollectionUtils.newLinkedList();
567 bigrams = firstWord.mNGrams;
577 firstWord.mNGrams.add(new NextHistoryWord(secondWord, fcp));
579 firstWord.mNGrams.add(new NextStaticWord(secondWord, frequency));