Home | History | Annotate | Download | only in userdictionary

Lines Matching refs:shortcut

75         Words.SHORTCUT
170 String shortcut = cursor.getString(COLUMN_SHORTCUT);
171 if (TextUtils.isEmpty(shortcut)) shortcut = "";
174 + SEPARATOR + shortcut;
229 String shortcut = null;
233 if (st.hasMoreTokens()) shortcut = st.nextToken();
234 if (TextUtils.isEmpty(shortcut)) shortcut = null;
246 && Objects.equals(shortcut, previousShortcut))
251 previousShortcut = shortcut;
258 cv.put(Words.SHORTCUT, shortcut);
260 if (null != shortcut) {
262 + Words.SHORTCUT + "=?", new String[] {word, shortcut});
265 + Words.SHORTCUT + " is null", new String[0]);