OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bigramlist
(Results
1 - 1
of
1
) sorted by null
/packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/makedict/
XmlDictInputOutput.java
182
ArrayList<WeightedString>
bigramList
= mAssocMap.get(mSrc);
183
if (null ==
bigramList
)
bigramList
= new ArrayList<WeightedString>();
184
bigramList
.add(bigram);
185
mAssocMap.put(mSrc,
bigramList
);
267
final ArrayList<WeightedString>
bigramList
= bigramMap.get(firstWord);
268
for (final WeightedString bigram :
bigramList
) {
Completed in 62 milliseconds