OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shortcutIterator
(Results
1 - 3
of
3
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
Ver3DictEncoder.java
191
final Iterator<WeightedString>
shortcutIterator
= shortcuts.iterator();
192
while (
shortcutIterator
.hasNext()) {
193
final WeightedString target =
shortcutIterator
.next();
195
shortcutIterator
.hasNext(),
Ver4DictEncoder.java
212
final Iterator<WeightedString>
shortcutIterator
) throws IOException {
217
writeShortcutForOneWordInternal(outStream,
shortcutIterator
);
223
final Iterator<WeightedString>
shortcutIterator
) throws IOException {
224
while (
shortcutIterator
.hasNext()) {
225
final WeightedString target =
shortcutIterator
.next();
227
shortcutIterator
.hasNext(), target.mFrequency);
BinaryDictIOUtils.java
384
final Iterator<WeightedString>
shortcutIterator
= info.mShortcutTargets.iterator();
385
while (
shortcutIterator
.hasNext()) {
386
final WeightedString target =
shortcutIterator
.next();
388
shortcutIterator
.hasNext(), target.mFrequency));
Completed in 53 milliseconds