/frameworks/base/core/java/android/provider/ |
UserDictionary.java | 97 * An optional shortcut for this word. When the shortcut is typed, supporting IMEs should 100 public static final String SHORTCUT = "shortcut"; 156 * @param shortcut optional shortcut spelling for this word. When the shortcut 162 int frequency, String shortcut, Locale locale) { 179 values.put(SHORTCUT, shortcut); [all...] |
Settings.java | [all...] |
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/ |
UserDictionaryProvider.java | 62 * Adds SHORTCUT (TEXT). 93 sDictProjectionMap.put(Words.SHORTCUT, Words.SHORTCUT); 117 + Words.SHORTCUT + " TEXT" 125 + " to version 2: adding " + Words.SHORTCUT + " column"); 127 + " ADD " + Words.SHORTCUT + " TEXT;"); 236 if (!values.containsKey(Words.SHORTCUT)) { 237 values.put(Words.SHORTCUT, (String) null);
|
DictionaryBackupAgent.java | 75 Words.SHORTCUT 170 String shortcut = cursor.getString(COLUMN_SHORTCUT); local 171 if (TextUtils.isEmpty(shortcut)) shortcut = ""; 174 + SEPARATOR + shortcut; 229 String shortcut = null; local 233 if (st.hasMoreTokens()) shortcut = st.nextToken(); 234 if (TextUtils.isEmpty(shortcut)) shortcut = null; 246 && Objects.equals(shortcut, previousShortcut) [all...] |
/packages/apps/Settings/src/com/android/settings/ |
UserDictionarySettings.java | 49 UserDictionary.Words._ID, UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT 52 // The index of the shortcut in the above array. 63 + "=? AND " + UserDictionary.Words.SHORTCUT + "=?"; 65 + "=? AND " + UserDictionary.Words.SHORTCUT + " is null OR " 66 + UserDictionary.Words.SHORTCUT + "=''"; 146 new String[] { UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT }, 153 final String shortcut = getShortcut(position); local 155 showAddOrEditDialog(word, shortcut); 180 * @param editingShortcut the shortcut for this entry, or null if none. 213 mCursor.getColumnIndexOrThrow(UserDictionary.Words.SHORTCUT)); [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/ |
UserDictionarySettings.java | 57 { UserDictionary.Words._ID, UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT}; 62 // The index of the shortcut in the above array. 70 UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT 95 + "=? AND " + UserDictionary.Words.SHORTCUT + "=?"; 97 + "=? AND " + UserDictionary.Words.SHORTCUT + " is null OR " 98 + UserDictionary.Words.SHORTCUT + "=''"; 208 final String shortcut = getShortcut(position); local 210 showAddOrEditDialog(word, shortcut); 221 // with the shortcut API. 244 * @param editingShortcut the shortcut for this entry, or null if none [all...] |
/packages/apps/Launcher3/tests/src/com/android/launcher3/model/ |
GridSizeMigrationTaskTest.java | 29 private static final int SHORTCUT = LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT; 54 addItem(SHORTCUT, 1, HOTSEAT, 0, 0), 56 addItem(SHORTCUT, 3, HOTSEAT, 0, 0), 71 addItem(SHORTCUT, 3, HOTSEAT, 0, 0), 287 * @param type {@link #APPLICATION} or {@link #SHORTCUT} or >= 2 for 302 if (type == APPLICATION || type == SHORTCUT) {
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
PersonalDictionaryLookup.java | 205 * We store a map from a shortcut to a word for each locale. 346 * Note that this method returns shortcut keys, not expanded words. Words are handled 360 // First look for the country-specific shortcut: en_US, en_UK, fr_FR, etc. 367 // Next look for the language-specific shortcut: en, fr, etc. 375 // If all else fails, look for a global shortcut. 451 * Expands the given shortcut for the given locale. 453 * @param shortcut the shortcut to expand 454 * @param inputLocale the locale in which to expand the shortcut 455 * @return expanded shortcut iff the word is a shortcut in the dictionary 611 final String shortcut = cursor.getString(shortcutIndex); local [all...] |
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/ |
DatabaseHelper.java | 225 "shortcut INTEGER," + 230 db.execSQL("CREATE INDEX bookmarksIndex2 ON bookmarks (shortcut);"); [all...] |
/external/libgdx/backends/gdx-backend-android/libs/ |
android-4.4.jar | |
/external/robolectric/v1/lib/main/ |
android.jar | |
/prebuilts/sdk/18/ |
android.jar | |
/prebuilts/sdk/19/ |
android.jar | |
/prebuilts/sdk/21/ |
android.jar | |