HomeSort by relevance Sort by last modified time
    Searched full:intentaction (Results 1 - 25 of 25) sorted by null

  /frameworks/base/core/java/android/provider/
SearchIndexableData.java 72 * {@link SearchIndexableData#intentAction} and {@link SearchIndexableData#intentTargetPackage}
75 * @see SearchIndexableData#intentAction
102 public String intentAction;
107 * @see SearchIndexableData#intentAction
115 * @see SearchIndexableData#intentAction
168 sb.append("intentAction: ");
169 sb.append(intentAction);
SearchIndexablesContract.java 260 public static final String COLUMN_INTENT_ACTION = "intentAction";
  /development/samples/devbytes/telephony/SmsSampleProject/SmsSample/src/main/java/com/example/android/smssample/service/
MessagingService.java 44 String intentAction = intent.getAction();
45 if (ACTION_MY_RECEIVE_SMS.equals(intentAction)) {
50 } else if (ACTION_MY_RECEIVE_MMS.equals(intentAction)) {
  /device/sample/apps/LeanbackWidget/src/com/google/android/leanbacklauncher/partnerwidget/
ClockWidgetProvider.java 22 String intentAction = intent.getAction();
24 if (INET_CONDITION_ACTION.equals(intentAction) ||
25 ConnectivityManager.CONNECTIVITY_ACTION.equals(intentAction)) {
27 if (INET_CONDITION_ACTION.equals(intentAction)) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SystemBroadcastReceiver.java 65 final String intentAction = intent.getAction();
66 if (Intent.ACTION_MY_PACKAGE_REPLACED.equals(intentAction)) {
75 } else if (Intent.ACTION_BOOT_COMPLETED.equals(intentAction)) {
78 } else if (IntentCompatUtils.is_ACTION_USER_INITIALIZE(intentAction)) {
81 } else if (Intent.ACTION_LOCALE_CHANGED.equals(intentAction)) {
  /packages/apps/Music/src/com/android/music/
MediaButtonIntentReceiver.java 60 String intentAction = intent.getAction();
61 if (AudioManager.ACTION_AUDIO_BECOMING_NOISY.equals(intentAction)) {
66 } else if (Intent.ACTION_MEDIA_BUTTON.equals(intentAction)) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DbModifierWithNotification.java 205 for (String intentAction : intentActions) {
207 boolean includeSelfChangeExtra = intentAction.equals(Intent.ACTION_PROVIDER_CHANGED);
209 getBroadcastReceiverComponents(intentAction, notificationUri)) {
218 Intent intent = new Intent(intentAction, notificationUri);
238 private List<ComponentName> getBroadcastReceiverComponents(String intentAction, Uri uri) {
239 Intent intent = new Intent(intentAction, uri);
GlobalSearchSupport.java 81 String intentAction;
107 list.add(intentAction); // intentAction
159 intentAction = null;
  /packages/apps/UnifiedEmail/src/com/android/mail/
NotificationActionIntentService.java 71 private static void logNotificationAction(String intentAction, NotificationAction action) {
75 if (ACTION_ARCHIVE_REMOVE_LABEL.equals(intentAction)) {
78 } else if (ACTION_DELETE.equals(intentAction)) {
82 eventAction = intentAction;
  /development/samples/devbytes/telephony/SmsSampleProject/SmsSample/src/main/java/com/example/android/smssample/
MainActivity.java 89 String intentAction = getIntent() == null ? null : getIntent().getAction();
90 if (!TextUtils.isEmpty(intentAction) && (Intent.ACTION_SENDTO.equals(intentAction)
91 || Intent.ACTION_SEND.equals(intentAction))) {
  /packages/apps/Settings/src/com/android/settings/notification/
ConditionProviderSettings.java 34 c.intentAction = ConditionProviderService.SERVICE_INTERFACE;
NotificationAccessSettings.java 34 c.intentAction = NotificationListenerService.SERVICE_INTERFACE;
ManagedServiceSettings.java 228 new Intent(c.intentAction),
337 String intentAction;
  /developers/build/prebuilts/gradle/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
BluetoothLeService.java 74 String intentAction;
76 intentAction = ACTION_GATT_CONNECTED;
78 broadcastUpdate(intentAction);
85 intentAction = ACTION_GATT_DISCONNECTED;
88 broadcastUpdate(intentAction);
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
BluetoothLeService.java 74 String intentAction;
76 intentAction = ACTION_GATT_CONNECTED;
78 broadcastUpdate(intentAction);
85 intentAction = ACTION_GATT_DISCONNECTED;
88 broadcastUpdate(intentAction);
  /development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
BluetoothLeService.java 74 String intentAction;
76 intentAction = ACTION_GATT_CONNECTED;
78 broadcastUpdate(intentAction);
85 intentAction = ACTION_GATT_DISCONNECTED;
88 broadcastUpdate(intentAction);
  /packages/apps/Email/provider_src/com/android/email/service/
EmailServiceUtils.java 91 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;
570 info.intentAction = ta.getString(R.styleable.EmailServiceInfo_intent);
633 info.intentAction == null &&
638 if (info.klass != null && info.intentAction != null)
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionData.java 167 public SuggestionData setIntentAction(String intentAction) {
168 mIntentAction = intentAction;
323 appendField(builder, "intentAction", mIntentAction);
  /packages/apps/Settings/src/com/android/settings/search/
Index.java 565 sir.intentAction = action;
626 data.intentAction = action;
723 raw.intentAction,
764 sir.intentAction, sir.intentTargetPackage, sir.intentTargetClass,
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
WifiConfigurationActivity.java 105 String intentAction = intent.getAction();
107 if (intentAction.equals(ConnectivityManager.CONNECTIVITY_ACTION)
108 || intentAction.equals(ConnectivityManager.INET_CONDITION_ACTION)) {
  /packages/apps/Settings/src/com/android/settings/
WallpaperTypeSettings.java 87 data.intentAction = Intent.ACTION_SET_WALLPAPER;
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationActionUtils.java 389 final String intentAction =
392 final Intent intent = new Intent(intentAction);
400 final String intentAction = NotificationActionIntentService.ACTION_DELETE;
402 final Intent intent = new Intent(intentAction);
449 final String intentAction = (action == NotificationActionType.ARCHIVE_REMOVE_LABEL)
453 final Intent intent = new Intent(intentAction);
    [all...]
  /frameworks/base/docs/html/guide/topics/connectivity/
bluetooth-le.jd 386 String intentAction;
388 intentAction = ACTION_GATT_CONNECTED;
390 broadcastUpdate(intentAction);
396 intentAction = ACTION_GATT_DISCONNECTED;
399 broadcastUpdate(intentAction);
  /frameworks/base/docs/html/guide/topics/search/
adding-custom-suggestions.jd 19 <li><a href="#IntentAction">Declaring the intent action</a></li>
417 <h3 id="IntentAction">Declaring the intent action</h3>
    [all...]
  /frameworks/base/docs/html/training/tv/discovery/
searchable.jd 267 <a href="{@docRoot}guide/topics/search/adding-custom-suggestions.html#IntentAction">Declaring the

Completed in 1227 milliseconds