HomeSort by relevance Sort by last modified time
    Searched refs:SHORTCUT (Results 1 - 23 of 23) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/logging/
QuickContactEvent.java 67 public static final int SHORTCUT = 8;
  /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/apps/Launcher3/protos/
launcher_dump.proto 55 SHORTCUT = 3; // ShortcutManager
launcher_log.proto 53 optional int32 intent_hash = 12; // Used for ItemType.SHORTCUT
65 SHORTCUT = 2;
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
UserDictionaryProvider.java 62 * Adds SHORTCUT (TEXT).
95 sDictProjectionMap.put(Words.SHORTCUT, Words.SHORTCUT);
121 + Words.SHORTCUT + " TEXT"
129 + " to version 2: adding " + Words.SHORTCUT + " column");
131 + " ADD " + Words.SHORTCUT + " TEXT;");
240 if (!values.containsKey(Words.SHORTCUT)) {
241 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/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/Settings/src/com/android/settings/inputmethod/
UserDictionarySettings.java 55 + "=? AND " + UserDictionary.Words.SHORTCUT + "=?";
57 + "=? AND " + UserDictionary.Words.SHORTCUT + " is null OR "
58 + UserDictionary.Words.SHORTCUT + "=''";
139 new String[]{UserDictionary.Words.WORD, UserDictionary.Words.SHORTCUT},
146 final String shortcut = getShortcut(position); local
148 showAddOrEditDialog(word, shortcut);
180 * @param editingShortcut the shortcut for this entry, or null if none.
217 mCursor.getColumnIndexOrThrow(UserDictionary.Words.SHORTCUT));
220 public static void deleteWord(final String word, final String shortcut,
222 if (TextUtils.isEmpty(shortcut)) {
    [all...]
UserDictionaryCursorLoader.java 37 UserDictionary.Words.SHORTCUT
40 // The index of the shortcut in the above array.
88 final String shortcut = candidate.getString(2); local
89 final int hash = Objects.hash(word, shortcut);
94 result.addRow(new Object[]{id, word, shortcut});
  /packages/apps/Launcher3/tests/src/com/android/launcher3/model/
GridSizeMigrationTaskTest.java 51 private static final int SHORTCUT = LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT;
81 addItem(SHORTCUT, 1, HOTSEAT, 0, 0),
83 addItem(SHORTCUT, 3, HOTSEAT, 0, 0),
105 addItem(SHORTCUT, 3, HOTSEAT, 0, 0),
393 * @param type {@link #APPLICATION} or {@link #SHORTCUT} or >= 2 for
410 if (type == APPLICATION || type == SHORTCUT) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
ShortcutParser.java 41 private static final String SHORTCUT = "shortcut";
74 public List<Shortcut> getShortcuts() {
75 List<Shortcut> list = new ArrayList<>();
86 if (parser.getName().equals(SHORTCUT)) {
87 Shortcut c = parseShortcut(parser);
101 private Shortcut parseShortcut(XmlResourceParser parser)
103 final TypedArray sa = mResources.obtainAttributes(mAttrs, R.styleable.Shortcut);
104 Shortcut c = new Shortcut();
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/logging/
DumpTargetWrapper.java 88 dt.itemType = ItemType.SHORTCUT;
LoggerUtils.java 164 t.itemType = ItemType.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 219 "shortcut INTEGER," +
224 db.execSQL("CREATE INDEX bookmarksIndex2 ON bookmarks (shortcut);");
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
QuickContactActivity.java 237 /** This is the Intent action to install a shortcut in the launcher. */
    [all...]
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/25/
android.jar 
  /prebuilts/tools/common/m2/repository/com/google/android/android/4.1.1.4/
android-4.1.1.4.jar 

Completed in 704 milliseconds