Lines Matching defs:action

322         String action = intent.getAction();
323 if (ACTION_NEW_RAW_CONTACT.equals(action)) {
325 } else if (ACTION_SAVE_CONTACT.equals(action)) {
327 } else if (ACTION_CREATE_GROUP.equals(action)) {
329 } else if (ACTION_RENAME_GROUP.equals(action)) {
331 } else if (ACTION_DELETE_GROUP.equals(action)) {
333 } else if (ACTION_UPDATE_GROUP.equals(action)) {
335 } else if (ACTION_SET_STARRED.equals(action)) {
337 } else if (ACTION_SET_SUPER_PRIMARY.equals(action)) {
339 } else if (ACTION_CLEAR_PRIMARY.equals(action)) {
341 } else if (ACTION_DELETE_MULTIPLE_CONTACTS.equals(action)) {
343 } else if (ACTION_DELETE_CONTACT.equals(action)) {
345 } else if (ACTION_SPLIT_CONTACT.equals(action)) {
347 } else if (ACTION_JOIN_CONTACTS.equals(action)) {
349 } else if (ACTION_JOIN_SEVERAL_CONTACTS.equals(action)) {
351 } else if (ACTION_SET_SEND_TO_VOICEMAIL.equals(action)) {
353 } else if (ACTION_SET_RINGTONE.equals(action)) {
355 } else if (ACTION_UNDO.equals(action)) {
357 } else if (ACTION_SLEEP.equals(action)) {
754 * @param callbackAction is the intent action for the callback intent
907 * @param callbackAction is the intent action for the callback intent
1950 * Returns the first intent requested that has the specified action or null if no intent
1951 * with that action has been requested.
1953 public Intent getNextIntentWithAction(String action) {
1955 if (action.equals(intent.getAction())) {
1962 public boolean isActionPending(String action) {
1963 return getNextIntentWithAction(action) != null;
1970 final String action = mPending.get(0).getAction();
1971 if (action.equals(intent.getAction())) {