OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bigramList
(Results
1 - 2
of
2
) sorted by null
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
UserHistoryDictIOUtilsTests.java
83
final UserHistoryDictionaryBigramList
bigramList
) {
84
bigramList
.addBigram(null, word1);
85
bigramList
.addBigram(word1, word2);
113
final UserHistoryDictionaryBigramList
bigramList
, final String word,
116
final HashMap<String,Byte> unigramMap =
bigramList
.getBigrams(null);
121
bigramList
.getBigrams(word).keySet());
128
private void checkWordsInBigramList(final UserHistoryDictionaryBigramList
bigramList
,
132
checkWordInBigramList(
bigramList
, word, addedWords.get(word));
134
checkWordInBigramList(
bigramList
, word, NOT_HAVE_BIGRAM);
140
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 50 milliseconds