HomeSort by relevance Sort by last modified time
    Searched defs:bigramList (Results 1 - 2 of 2) sorted by null

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
UserHistoryDictIOUtilsTests.java 79 final UserHistoryDictionaryBigramList bigramList) {
80 bigramList.addBigram(null, word1);
81 bigramList.addBigram(word1, word2);
109 final UserHistoryDictionaryBigramList bigramList, final String word,
112 final HashMap<String,Byte> unigramMap = bigramList.getBigrams(null);
117 bigramList.getBigrams(word).keySet());
124 private void checkWordsInBigramList(final UserHistoryDictionaryBigramList bigramList,
128 checkWordInBigramList(bigramList, word, addedWords.get(word));
130 checkWordInBigramList(bigramList, word, NOT_HAVE_BIGRAM);
136 final UserHistoryDictionaryBigramList bigramList) {
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
XmlDictInputOutput.java 188 ArrayList<WeightedString> bigramList = mAssocMap.get(mSrc);
189 if (null == bigramList) bigramList = new ArrayList<WeightedString>();
190 bigramList.add(bigram);
191 mAssocMap.put(mSrc, bigramList);
325 final ArrayList<WeightedString> bigramList = bigramMap.get(firstWord);
326 for (final WeightedString bigram : bigramList) {

Completed in 265 milliseconds