Searched refs:newShortcut (Results 1 – 3 of 3) sorted by relevance
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/ |
D | UserDictionaryAddWordContents.java | 149 final String newShortcut; in apply() local 151 newShortcut = null; in apply() 153 newShortcut = null; in apply() 157 newShortcut = null; in apply() 159 newShortcut = tmpShortcut; in apply() 167 mSavedShortcut = newShortcut; in apply() 172 if (TextUtils.isEmpty(newShortcut) && hasWord(newWord, context)) { in apply() 180 if (!TextUtils.isEmpty(newShortcut)) { in apply() 182 UserDictionarySettings.deleteWord(newWord, newShortcut, resolver); in apply() 188 FREQUENCY_FOR_USER_DICTIONARY_ADDS, newShortcut, TextUtils.isEmpty(mLocale) ? in apply()
|
/packages/apps/Settings/src/com/android/settings/inputmethod/ |
D | UserDictionaryAddWordContents.java | 127 final String newShortcut; in apply() local 129 newShortcut = null; in apply() 133 newShortcut = null; in apply() 135 newShortcut = tmpShortcut; in apply() 143 mSavedShortcut = newShortcut; in apply() 148 if (TextUtils.isEmpty(newShortcut) && hasWord(newWord, context)) { in apply() 156 if (!TextUtils.isEmpty(newShortcut)) { in apply() 158 UserDictionarySettings.deleteWord(newWord, newShortcut, resolver); in apply() 164 FREQUENCY_FOR_USER_DICTIONARY_ADDS, newShortcut, in apply()
|
/packages/apps/Dialer/java/com/android/dialer/shortcuts/ |
D | DynamicShortcuts.java | 183 DialerShortcut newShortcut = newDynamicShortcutsById.get(oldInfo.getId()); in computeDelta() local 184 if (newShortcut != null) { in computeDelta() 185 if (newShortcut.needsUpdate(oldInfo)) { in computeDelta() 187 delta.shortcutsToUpdateById.put(oldInfo.getId(), newShortcut); in computeDelta() local 199 DialerShortcut newShortcut = entry.getValue(); in computeDelta() local 203 delta.shortcutsToAddById.put(newId, newShortcut); in computeDelta()
|