Searched defs:shortcutAction (Results 1 - 2 of 2) sorted by relevance

/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DPhoneNumberPickerFragment.java45 private static final String KEY_SHORTCUT_ACTION = "shortcutAction";
178 * @param shortcutAction either {@link Intent#ACTION_CALL} or
181 public void setShortcutAction(String shortcutAction) { argument
182 this.mShortcutAction = shortcutAction;
H A DShortcutIntentBuilder.java131 public void createPhoneNumberShortcutIntent(Uri dataUri, String shortcutAction) { argument
132 new PhoneNumberLoadingAsyncTask(dataUri, shortcutAction).execute();
211 public PhoneNumberLoadingAsyncTask(Uri uri, String shortcutAction) { argument
213 mShortcutAction = shortcutAction;
290 String phoneNumber, int phoneType, String phoneLabel, String shortcutAction) {
294 if (Intent.ACTION_CALL.equals(shortcutAction)) {
305 Intent shortcutIntent = new Intent(shortcutAction, phoneUri);
289 createPhoneNumberShortcutIntent(Uri uri, String displayName, byte[] bitmapData, String phoneNumber, int phoneType, String phoneLabel, String shortcutAction) argument

Completed in 48 milliseconds