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

12 3 4 5 6 7 8 91011>>

  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
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...]
  /external/iproute2/man/man8/
rtmon.8 47 Use IPv4. Shortcut for -family inet.
50 Use IPv6. Shortcut for -family inet6.
53 Use a special family identifier meaning that no networking protocol is involved. Shortcut for -family link.
ip.8 100 shortcut for
105 shortcut for
110 shortcut for
115 shortcut for
120 shortcut for
125 shortcut for
130 shortcut for
  /external/autotest/client/common_lib/
site_packages.py 8 # shortcut quick http test for now since our dev server does not support
  /external/protobuf/examples/
Makefile 37 @echo "Writing shortcut script add_person_java..."
43 @echo "Writing shortcut script list_people_java..."
49 @echo "Writing shortcut script add_person_python..."
55 @echo "Writing shortcut script list_people_python..."
  /external/sl4a/Common/src/com/googlecode/android_scripting/
IntentBuilders.java 92 * Builds an intent that creates a shortcut to launch the provided interpreter.
97 * the icon resource to associate with the shortcut
98 * @return the intent that will create the shortcut
111 * Builds an intent that creates a shortcut to launch the provided script in the background.
116 * the icon resource to associate with the shortcut
117 * @return the intent that will create the shortcut
128 * Builds an intent that creates a shortcut to launch the provided script in a terminal.
133 * the icon resource to associate with the shortcut
134 * @return the intent that will create the shortcut
  /frameworks/base/tests/FrameworkPerf/res/values/
attrs.xml 43 <!-- The alphabetic shortcut key. This is the shortcut when using a keyboard
47 <!-- The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key)
  /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/native/jni/src/dictionary/structure/backward/v402/content/
shortcut_dict_content.cpp 37 AKLOGE("Invalid shortcut entry position. shortcutEntryPos: %d, bufSize: %d",
88 // Copy shortcut list from original content.
91 AKLOGE("Cannot copy shortcut list during GC. original pos: %d, pos: %d",
95 // Set shortcut list position to the lookup table.
97 AKLOGE("Cannot set shortcut list position. terminal id: %d, pos: %d",
127 AKLOGE("Cannot write shortcut entry to copy. pos: %d", writingPos);
151 AKLOGE("Cannot write shortcut flags. flags; %x, pos: %d", shortcutFlags, *shortcutEntryPos);
156 AKLOGE("Cannot write shortcut target code points. pos: %d", *shortcutEntryPos);
162 // Find a shortcut entry that has specified target and return its position.
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/content/
shortcut_dict_content.cpp 28 AKLOGE("Invalid shortcut entry position. shortcutEntryPos: %d, bufSize: %d",
73 // Copy shortcut list from original content.
76 AKLOGE("Cannot copy shortcut list during GC. original pos: %d, pos: %d",
80 // Set shortcut list position to the lookup table.
82 AKLOGE("Cannot set shortcut list position. terminal id: %d, pos: %d",
112 AKLOGE("Cannot write shortcut entry to copy. pos: %d", writingPos);
136 AKLOGE("Cannot write shortcut flags. flags; %x, pos: %d", shortcutFlags, *shortcutEntryPos);
141 AKLOGE("Cannot write shortcut target code points. pos: %d", *shortcutEntryPos);
147 // Find a shortcut entry that has specified target and return its position.
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue6128.go 11 // NOTE: Must use hex, or else a shortcut for decimals
  /prebuilts/go/linux-x86/misc/cgo/test/
issue6128.go 11 // NOTE: Must use hex, or else a shortcut for decimals
  /frameworks/base/core/java/android/content/pm/
ShortcutInfo.java 42 * Represents a shortcut from an application.
114 * Shortcut category for
116 public static final String SHORTCUT_CATEGORY_CONVERSATION = "android.shortcut.conversation";
173 mId = Preconditions.checkStringNotEmpty(b.mId, "Shortcut ID must be provided");
206 Preconditions.checkStringNotEmpty(mId, "Shortcut ID must be provided");
207 Preconditions.checkStringNotEmpty(mTitle, "Shortcut title must be provided");
208 Preconditions.checkNotNull(mIntent, "Shortcut Intent must be provided");
356 * Sets the ID of the shortcut. This is a mandatory field.
366 * has multiple launcher icons, this shortcut will be shown on all those icons.
367 * If it's set, this shortcut will be only shown on this activity
    [all...]
LauncherApps.java 162 * <p>Only the applications that are allowed to access the shortcut information,
421 * Returns whether the caller can access the shortcut information.
423 * <p>Only the default launcher can access the shortcut information.
428 * this permission, it does <b>not</b> have to purge pinned shortcut information.
443 * <p>Callers must be allowed to access the shortcut information, as defined in {@link
485 * <p>Callers must be allowed to access the shortcut information, as defined in {@link
489 * @param shortcutIds The IDs of the shortcut to be pinned.
506 public int getShortcutIconResId(@NonNull ShortcutInfo shortcut) {
507 return shortcut.getIconResourceId();
528 * <p>Callers must be allowed to access the shortcut information, as defined in {@lin
    [all...]
ShortcutManager.java 40 * A dynamic shortcut can be deleted with {@link #removeDynamicShortcuts(List)}, and apps
47 * {@link #getPinnedShortcuts()}. Applications should keep the pinned shortcut information
56 * <h3>Shortcut IDs</h3>
58 * Each shortcut must have an ID, which must be unique within each application. When a shortcut is
60 * pinned shortcut.
79 * <pre>adb shell cmd shortcut reset-throttling</pre>
152 * Publish a single dynamic shortcut. If there's already dynamic or pinned shortcuts with
172 * Delete a single dynamic shortcut by ID.
  /external/hamcrest/src/org/hamcrest/core/
Is.java 46 * This is a shortcut to the frequently used is(equalTo(x)).
57 * This is a shortcut to the frequently used is(instanceOf(SomeClass.class)).
  /frameworks/base/packages/SystemUI/src/com/android/systemui/shortcut/
ShortcutKeyServiceProxy.java 17 package com.android.systemui.shortcut;
26 * post them onto shortcut handlers.
  /packages/apps/Dialer/src/com/android/dialer/list/
DialerPhoneNumberListAdapter.java 80 final int shortcut = getShortcutTypeFromPosition(position); local
81 if (shortcut >= 0) {
83 return super.getViewTypeCount() + shortcut;
125 * @return The enabled shortcut type matching the given position if the item is a
126 * shortcut, -1 otherwise
140 + " but not a shortcut.");
193 throw new IllegalArgumentException("Invalid shortcut type");
202 * @return True if the shortcut state (disabled vs enabled) was changed by this operation
  /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...]
  /packages/apps/Launcher2/res/values-tl/
strings.xml 42 <string name="group_shortcuts" msgid="9133529424900391877">"Mga Shortcut"</string>
49 <string name="shortcut_installed" msgid="7071557296331322355">"Nalikha ang shortcut na \"<xliff:g id="NAME">%s</xliff:g>\"."</string>
50 <string name="shortcut_uninstalled" msgid="2129499669449749995">"Inalis ang shortcut na \"<xliff:g id="NAME">%s</xliff:g>\"."</string>
51 <string name="shortcut_duplicate" msgid="4757756326465060694">"Umiiral na ang shortcut na \"<xliff:g id="NAME">%s</xliff:g>\"."</string>
52 <string name="title_select_shortcut" msgid="1873670208166882222">"Pumili ng shortcut"</string>
78 <string name="cab_shortcut_selection_text" msgid="8115847384500412878">"1 shortcut ang napili"</string>
79 <string name="permlab_install_shortcut" msgid="1201690825493376489">"i-install ang mga shortcut"</string>
80 <string name="permdesc_install_shortcut" msgid="8634424803272077038">"Binibigyang-daan ang isang app na magdagdag ng mga shortcut nang walang panghihimasok ng user."</string>
81 <string name="permlab_uninstall_shortcut" msgid="7696645932555926449">"huwag i-install ang mga shortcut"</string>
82 <string name="permdesc_uninstall_shortcut" msgid="274355570620220977">"Binibigyang-daan ang app na mag-alis ng mga shortcut nang walang panghihimasok ng user."</string
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
DiscourseLoggerTest.java 27 /** Shortcut to create a byte array */
36 /** Shortcut to create a String array */
41 /** Shortcut to create an Object array */
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
EventLogLogger.java 105 String shortcut = cursor.isSuggestionShortcut() ? "shortcut" : ""; local
106 sb.append(source).append(':').append(type).append(':').append(shortcut);
Suggestion.java 31 * Gets the shortcut ID of the current suggestion.
36 * Whether to show a spinner while refreshing this shortcut.
110 * Checks if this suggestion is a shortcut.
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionaryAddWordContents.java 50 public static final String EXTRA_SHORTCUT = "shortcut";
87 final String shortcut; local
89 shortcut = args.getString(EXTRA_SHORTCUT);
90 if (null != shortcut && null != mShortcutEditText) {
91 mShortcutEditText.setText(shortcut);
95 shortcut = null;
168 // If there is no shortcut, and the word already exists in the database, then we
169 // should not insert, because either A. the word exists with no shortcut, in which
171 // exists with at least one shortcut, in which case it has priority on our word.
176 // Disallow duplicates. If the same word with no shortcut is defined, remove it; i
    [all...]
  /device/asus/fugu/
init.recovery.fugu.rc 5 # can be associated with the correct disk. Create a shortcut to

Completed in 710 milliseconds

12 3 4 5 6 7 8 91011>>