Home | History | Annotate | Download | only in latin

Lines Matching defs:shortcutTarget

198     public void addWord(final String word, final String shortcutTarget, final int frequency) {
202 addWordRec(mRoots, word, 0, shortcutTarget, frequency, null);
206 final String shortcutTarget, final int frequency, Node parentNode) {
220 final boolean isShortcutOnly = (null != shortcutTarget);
228 if (wordLength == depth + 1 && shortcutTarget != null) {
235 childNode.mShortcutTargets.add(shortcutTarget.toCharArray());
246 addWordRec(childNode.mChildren, word, depth + 1, shortcutTarget, frequency, childNode);