Searched defs:intentAction (Results 1 - 5 of 5) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/
H A DNotificationActionIntentService.java70 private static void logNotificationAction(String intentAction, NotificationAction action) { argument
74 if (ACTION_ARCHIVE_REMOVE_LABEL.equals(intentAction)) {
77 } else if (ACTION_DELETE.equals(intentAction)) {
81 eventAction = intentAction;
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDbModifierWithNotification.java205 for (String intentAction : intentActions) {
207 boolean includeSelfChangeExtra = intentAction.equals(Intent.ACTION_PROVIDER_CHANGED);
209 getBroadcastReceiverComponents(intentAction, notificationUri)) {
217 Intent intent = new Intent(intentAction, notificationUri);
237 private List<ComponentName> getBroadcastReceiverComponents(String intentAction, Uri uri) { argument
238 Intent intent = new Intent(intentAction, uri);
H A DGlobalSearchSupport.java81 String intentAction; field in class:GlobalSearchSupport.SearchSuggestion
107 list.add(intentAction); // intentAction
159 intentAction = null;
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DSuggestionData.java167 public SuggestionData setIntentAction(String intentAction) { argument
168 mIntentAction = intentAction;
323 appendField(builder, "intentAction", mIntentAction);
/packages/apps/Email/src/com/android/email/service/
H A DEmailServiceUtils.java84 if (info != null && info.intentAction != null) {
96 if (info != null && info.intentAction != null) {
107 if (info.intentAction != null) {
119 if (info.intentAction != null) {
131 if (info.intentAction != null) {
157 final Intent serviceIntent = new Intent(info.intentAction);
181 String intentAction; field in class:EmailServiceUtils.EmailServiceInfo
536 info.intentAction = ta.getString(R.styleable.EmailServiceInfo_intent);
592 if (info.klass == null && info.intentAction == null) {
596 if (info.klass != null && info.intentAction !
[all...]

Completed in 1083 milliseconds