Searched refs:shortcutTargets (Results 1 – 7 of 7) sorted by relevance
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/ |
D | FusionDictionary.java | 112 public CharGroup(final int[] chars, final ArrayList<WeightedString> shortcutTargets, in CharGroup() argument 117 mShortcutTargets = shortcutTargets; in CharGroup() 124 public CharGroup(final int[] chars, final ArrayList<WeightedString> shortcutTargets, in CharGroup() argument 129 mShortcutTargets = shortcutTargets; in CharGroup() 237 public void update(final int frequency, final ArrayList<WeightedString> shortcutTargets, in update() argument 243 if (shortcutTargets != null) { in update() 245 mShortcutTargets = shortcutTargets; in update() 247 final int size = shortcutTargets.size(); in update() 249 final WeightedString shortcut = shortcutTargets.get(i); in update() 377 final ArrayList<WeightedString> shortcutTargets, final boolean isNotAWord) { in add() argument [all …]
|
D | BinaryDictInputOutput.java | 1305 ArrayList<WeightedString> shortcutTargets = null; in readCharGroup() local 1308 shortcutTargets = new ArrayList<WeightedString>(); in readCharGroup() 1313 shortcutTargets.add(new WeightedString(word, in readCharGroup() 1356 parentAddress, childrenAddress, shortcutTargets, bigrams); in readCharGroup() 1518 ArrayList<WeightedString> shortcutTargets = info.mShortcutTargets; in readNode() local 1540 new CharGroup(info.mCharacters, shortcutTargets, bigrams, in readNode() 1546 new CharGroup(info.mCharacters, shortcutTargets, bigrams, in readNode()
|
D | CharGroupInfo.java | 40 final int childrenAddress, final ArrayList<WeightedString> shortcutTargets, in CharGroupInfo() argument 49 mShortcutTargets = shortcutTargets; in CharGroupInfo()
|
D | Word.java | 40 final ArrayList<WeightedString> shortcutTargets, in Word() argument 45 mShortcutTargets = shortcutTargets; in Word()
|
D | BinaryDictIOUtils.java | 685 final ArrayList<WeightedString> shortcutTargets, in moveGroup() argument 694 shortcutTargets, bigrams); in moveGroup() 698 nodeOrigin + 1 + size + FormatSpec.FORWARD_LINK_ADDRESS_SIZE, shortcutTargets, in moveGroup()
|
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/ |
D | Info.java | 81 final ArrayList<WeightedString> shortcutTargets = group.getShortcutTargets(); in showWordInfo() local 82 if (null == shortcutTargets || shortcutTargets.isEmpty()) { in showWordInfo() 85 for (final WeightedString shortcutTarget : shortcutTargets) { in showWordInfo()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
D | ExpandableBinaryDictionary.java | 185 final ArrayList<WeightedString> shortcutTargets = CollectionUtils.newArrayList(); in addWord() local 186 shortcutTargets.add(new WeightedString(shortcutTarget, frequency)); in addWord() 187 mFusionDictionary.add(word, frequency, shortcutTargets, isNotAWord); in addWord()
|