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

/packages/apps/UnifiedEmail/src/com/android/mail/
H A DNotificationActionIntentService.java71 private static void logNotificationAction(String intentAction, NotificationAction action) { argument
75 if (ACTION_ARCHIVE_REMOVE_LABEL.equals(intentAction)) {
78 } else if (ACTION_DELETE.equals(intentAction)) {
82 eventAction = intentAction;
/packages/apps/Dialer/java/com/android/dialer/oem/
H A DMotorolaHiddenMenuKeySequence.java113 private void addHiddenKeySequence(String keySequence, String intentAction) { argument
115 hiddenKeySequenceIntents.add(intentAction);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DVoicemailNotifier.java62 for (String intentAction : mIntentActions) {
64 boolean includeSelfChangeExtra = intentAction.equals(Intent.ACTION_PROVIDER_CHANGED);
65 Log.i(TAG, "receivers for " + intentAction + " :" + getBroadcastReceiverComponents(
66 intentAction, uri));
68 getBroadcastReceiverComponents(intentAction, uri)) {
82 Intent intent = new Intent(intentAction, uri);
117 private List<ComponentName> getBroadcastReceiverComponents(String intentAction, Uri uri) { argument
118 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/TV/src/com/android/tv/search/
H A DAutoValue_LocalSearchProvider_SearchResult.java36 private final String intentAction; field in class:AutoValue_LocalSearchProvider_SearchResult
52 @Nullable String intentAction,
66 this.intentAction = intentAction;
109 return intentAction;
163 + "intentAction=" + intentAction + ", "
187 && ((this.intentAction == null) ? (that.getIntentAction() == null) : this.intentAction.equals(that.getIntentAction()))
214 h$ ^= (intentAction
46 AutoValue_LocalSearchProvider_SearchResult( long channelId, @Nullable String channelNumber, @Nullable String title, @Nullable String description, @Nullable String imageUri, @Nullable String intentAction, @Nullable String intentData, @Nullable String intentExtraData, @Nullable String contentType, boolean isLive, int videoWidth, int videoHeight, long duration, int progressPercentage) argument
240 private String intentAction; field in class:AutoValue_LocalSearchProvider_SearchResult.Builder
277 setIntentAction(@ullable String intentAction) argument
[all...]
/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/Settings/src/com/android/settings/search/indexing/
H A DIndexData.java50 public final String intentAction; field in class:IndexData
87 intentAction = builder.mIntentAction;
219 public Builder setIntentAction(String intentAction) { argument
220 mIntentAction = intentAction;
/packages/apps/Settings/src/com/android/settings/utils/
H A DManagedServiceSettings.java75 .setIntentAction(mConfig.intentAction)
231 public final String intentAction; field in class:ManagedServiceSettings.Config
238 private Config(String tag, String setting, String intentAction, String permission, argument
242 this.intentAction = intentAction;
270 public Builder setIntentAction(String intentAction) { argument
271 mIntentAction = intentAction;
/packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/search/indexing/
H A DIndexData.java52 public final String intentAction; field in class:IndexData
88 intentAction = builder.mIntentAction;
226 public Builder setIntentAction(String intentAction) { argument
227 mIntentAction = intentAction;
/packages/apps/Email/provider_src/com/android/email/service/
H A DEmailServiceUtils.java91 if (info != null && info.intentAction != null) {
103 if (info != null && info.intentAction != null) {
114 if (info.intentAction != null) {
126 if (info.intentAction != null) {
138 if (info.intentAction != null) {
164 final Intent serviceIntent = new Intent(info.intentAction);
188 String intentAction; field in class:EmailServiceUtils.EmailServiceInfo
570 info.intentAction = ta.getString(R.styleable.EmailServiceInfo_intent);
633 info.intentAction == null &&
638 if (info.klass != null && info.intentAction !
[all...]

Completed in 371 milliseconds