HomeSort by relevance Sort by last modified time
    Searched full:shortcut (Results 1 - 25 of 1117) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/dictionaries/
en_emoji.combined.gz 
fr_emoji.combined.gz 
sample.combined 17 # into the dictionary is to add shortcut targets and maybe a whitelist
20 # Each word may or may not have any number of shortcut target lines
21 # starting with a `shortcut' entry and having at least a `f' frequency
34 word=shortcut,f=176
35 shortcut=target,f=10
37 shortcut=whitelisted,f=whitelist
  /frameworks/base/core/res/res/xml/
bookmarks.xml 37 shortcut="a" />
40 shortcut="b" />
43 shortcut="c" />
46 shortcut="e" />
49 shortcut="l" />
52 shortcut="m" />
55 shortcut="p" />
58 shortcut="s" />
  /frameworks/base/packages/SettingsProvider/res/xml/
bookmarks.xml 37 shortcut="a" />
40 shortcut="b" />
43 shortcut="c" />
46 shortcut="e" />
49 shortcut="l" />
52 shortcut="m" />
55 shortcut="p" />
58 shortcut="s" />
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LauncherShortcuts.java 28 * This Activity actually handles two stages of a launcher shortcut's life cycle.
31 * the user installs a shortcut, an activity within your application
32 * generates the actual shortcut and returns it to the launcher, where it
35 * 2. Any time the user clicks on an installed shortcut, an intent is sent.
39 * We handle stage 1 (creating a shortcut) by simply sending back the information (in the form
40 * of an {@link android.content.Intent} that the launcher will use to create the shortcut.
43 * UI for the user to select the specific nature of the shortcut, such as a contact, picture, URL,
46 * We handle stage 2 (responding to a shortcut) in this sample by simply displaying the contents
49 * In a real application, you would probably use the shortcut intent to display specific content
65 // If the intent is a request to create a shortcut, we'll do that and exi
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/shortcut/
ver4_shortcut_list_policy.h 22 * dictionary/structure/v4/shortcut/ver4_shortcut_list_policy.h
30 #include "dictionary/structure/pt_common/shortcut/shortcut_list_reading_utils.h"
47 // The first shortcut entry is located at the head position of the shortcut list.
63 // Do nothing because we don't need to skip shortcut lists in ver4 dictionaries.
70 // Create shortcut list.
72 AKLOGE("Cannot create new shortcut list. terminal id: %d", terminalId);
82 // Add new entry to the shortcut list.
83 // Create new shortcut list.
85 AKLOGE("Cannot create new shortcut list. terminal id: %d", terminalId)
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/shortcut/
ver4_shortcut_list_policy.h 22 #include "dictionary/structure/pt_common/shortcut/shortcut_list_reading_utils.h"
37 // The first shortcut entry is located at the head position of the shortcut list.
53 // Do nothing because we don't need to skip shortcut lists in ver4 dictionaries.
60 // Create shortcut list.
62 AKLOGE("Cannot create new shortcut list. terminal id: %d", terminalId);
72 // Add new entry to the shortcut list.
73 // Create new shortcut list.
75 AKLOGE("Cannot create new shortcut list. terminal id: %d", terminalId);
81 AKLOGE("Cannot write shortcut entry. terminal id: %d, pos: %d", terminalId
    [all...]
  /frameworks/base/services/core/java/com/android/server/policy/
ShortcutManager.java 41 * <li> Returning a shortcut-matching intent to clients
51 private static final String ATTRIBUTE_SHORTCUT = "shortcut";
66 * Gets the shortcut intent for a given keycode+modifier. Make sure you
68 * if 'Sym+A' should invoke a shortcut on 'A', you should strip the
77 * to invoke the shortcut.
78 * @return The intent that matches the shortcut, or null if not found.
81 ShortcutInfo shortcut = null; local
90 shortcut = shortcutMap.get(shortcutChar);
94 if (shortcut == null) {
97 shortcut = shortcutMap.get(shortcutChar)
175 ShortcutInfo shortcut = new ShortcutInfo(title, intent); local
    [all...]
  /docs/source.android.com/templates/
includes 3 <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
  /frameworks/base/core/java/android/view/
KeyboardShortcutInfo.java 27 * Information about a Keyboard Shortcut.
37 * @param label The label that identifies the action performed by this shortcut.
38 * @param icon An icon that identifies the action performed by this shortcut.
39 * @param keycode The keycode that triggers the shortcut. This should be a valid constant
41 * @param modifiers The set of modifiers that, combined with the key, trigger the shortcut.
60 * @param label The label that identifies the action performed by this shortcut.
61 * @param keycode The keycode that triggers the shortcut. This should be a valid constant
63 * @param modifiers The set of modifiers that, combined with the key, trigger the shortcut.
74 * @param label The label that identifies the action performed by this shortcut.
75 * @param baseCharacter The character that triggers the shortcut
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TableLayout8.java 61 TextView shortcut = new TextView(this); local
62 shortcut.setText(R.string.table_layout_8_ctrlq);
63 shortcut.setPadding(3, 3, 3, 3);
64 shortcut.setGravity(Gravity.RIGHT | Gravity.TOP);
67 row.addView(shortcut, new TableRow.LayoutParams());
TableLayout7.java 70 TextView shortcut = new TextView(this); local
71 shortcut.setText(R.string.table_layout_7_ctrlq);
72 shortcut.setPadding(3, 3, 3, 3);
73 shortcut.setGravity(Gravity.RIGHT | Gravity.TOP);
76 row.addView(shortcut, new TableRow.LayoutParams());
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
PersonalDictionaryLookupTest.java 82 private Uri addWord(final String word, final Locale locale, int frequency, String shortcut) {
84 UserDictionary.Words.addWord(mContext, word, frequency, shortcut, locale);
120 // Insert "shortcut" => "Expansion" in the personal dictionary for the given locale.
121 addWord("Expansion", locale, 17, "shortcut");
142 assertEquals("Expansion", lookup.expandShortcut("shortcut", Locale.US));
143 assertNull(lookup.expandShortcut("Shortcut", Locale.US));
144 assertNull(lookup.expandShortcut("SHORTCUT", Locale.US));
155 verifyWordExists(lookup.getShortcutsForLocale(Locale.US), "shortcut");
161 assertEquals("Expansion", lookup.expandShortcut("shortcut", Locale.US));
162 assertNull(lookup.expandShortcut("shortcut", Locale.UK))
    [all...]
  /frameworks/base/core/java/com/android/internal/policy/
IShortcutService.aidl 20 * An interface to notify the shortcut service that a shortcut key is pressed
  /external/nanopb-c/docs/
Makefile 9 sed -i 's!</head>!<link href="favicon.ico" type="image/x-icon" rel="shortcut icon" />\n</head>!' $@
  /external/skia/site/user/
issue-tracker.md 7 You can find it at https://bugs.chromium.org/p/skia/issues/list or use shortcut
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
UserDictionaryCompatUtils.java 29 final int freq, final String shortcut, final Locale locale) {
31 addWordWithShortcut(context, word, freq, shortcut, locale);
45 final int freq, final String shortcut, final Locale locale) {
46 UserDictionary.Words.addWord(context, word, freq, shortcut, locale);
  /external/avahi/avahi-core/
log.h 56 /** Shortcut for avahi_log(AVAHI_LOG_ERROR, ...) */
59 /** Shortcut for avahi_log(AVAHI_LOG_WARN, ...) */
62 /** Shortcut for avahi_log(AVAHI_LOG_NOTICE, ...) */
65 /** Shortcut for avahi_log(AVAHI_LOG_INFO, ...) */
68 /** Shortcut for avahi_log(AVAHI_LOG_DEBUG, ...) */
  /external/kernel-headers/original/uapi/linux/
atmmpc.h 17 __be32 ipaddr; /* the IP address of the shortcut */
43 __u16 mpc_p1; /* Shortcut-Setup Frame Count */
44 __u16 mpc_p2; /* Shortcut-Setup Frame Time */
84 #define MPC_P1 10 /* Shortcut-Setup Frame Count */
85 #define MPC_P2 1 /* Shortcut-Setup Frame Time */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
atmmpc.h 17 __be32 ipaddr; /* the IP address of the shortcut */
43 __u16 mpc_p1; /* Shortcut-Setup Frame Count */
44 __u16 mpc_p2; /* Shortcut-Setup Frame Time */
84 #define MPC_P1 10 /* Shortcut-Setup Frame Count */
85 #define MPC_P2 1 /* Shortcut-Setup Frame Time */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
atmmpc.h 17 __be32 ipaddr; /* the IP address of the shortcut */
43 __u16 mpc_p1; /* Shortcut-Setup Frame Count */
44 __u16 mpc_p2; /* Shortcut-Setup Frame Time */
84 #define MPC_P1 10 /* Shortcut-Setup Frame Count */
85 #define MPC_P2 1 /* Shortcut-Setup Frame Time */
  /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...]
  /packages/apps/Launcher3/src/com/android/launcher3/
ShortcutInfo.java 42 * The shortcut was restored from a backup and it not ready to be used. This is automatically
96 * shortcut icon as an application's resource.
134 * The installation progress [0-100] of the package that this shortcut represents.
144 * If this shortcut is a placeholder, then intent will be a market intent for the package, and
291 final ShortcutInfo shortcut = new ShortcutInfo(); local
292 shortcut.user = info.getUser();
293 shortcut.title = Utilities.trim(info.getLabel());
294 shortcut.contentDescription = UserManagerCompat.getInstance(context)
296 shortcut.customIcon = false;
297 shortcut.intent = AppInfo.makeLaunchIntent(context, info, info.getUser())
    [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...]

Completed in 1970 milliseconds

1 2 3 4 5 6 7 8 91011>>