Home
last modified time | relevance | path

Searched refs:firstWord (Results 1 – 3 of 3) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DExpandableDictionary.java308 final Node firstWord = searchWord(mRoots, word1.toLowerCase(), 0, null);
310 LinkedList<NextWord> bigrams = firstWord.mNGrams;
339 final Node firstWord = searchWord(mRoots, word1.toLowerCase(), 0, null);
341 LinkedList<NextWord> bigrams = firstWord.mNGrams;
527 Node firstWord = searchWord(mRoots, word1.toLowerCase(), 0, null);
529 LinkedList<NextWord> bigrams = firstWord.mNGrams;
531 firstWord.mNGrams = new LinkedList<NextWord>();
532 bigrams = firstWord.mNGrams;
542 firstWord.mNGrams.add(new NextHistoryWord(secondWord, fcp));
544 firstWord.mNGrams.add(new NextStaticWord(secondWord, frequency));
/packages/apps/Email/src/com/android/email/activity/setup/
DAccountSettingsUtils.java277 String firstWord = server.substring(0, firstDotIndex).toLowerCase(); in inferServerName() local
278 boolean isImapOrPop = "imap".equals(firstWord) in inferServerName()
279 || "pop3".equals(firstWord) || "pop".equals(firstWord); in inferServerName()
280 boolean isMail = "mail".equals(firstWord); in inferServerName()
/packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/makedict/
DXmlDictInputOutput.java265 for (final String firstWord : bigramMap.keySet()) { in readDictionaryXml()
266 if (!dict.hasWord(firstWord)) continue; in readDictionaryXml()
267 final ArrayList<WeightedString> bigramList = bigramMap.get(firstWord); in readDictionaryXml()
270 dict.setBigram(firstWord, bigram.mWord, bigram.mFrequency); in readDictionaryXml()