HomeSort by relevance Sort by last modified time
    Searched defs:action (Results 126 - 150 of 3010) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmInitReceiver.java 53 final String action = intent.getAction(); local
54 LogUtils.i("AlarmInitReceiver " + action);
65 if (ACTION_BOOT_COMPLETED.equals(action)) {
69 } else if (Intent.ACTION_TIME_CHANGED.equals(action)) {
74 if (Intent.ACTION_BOOT_COMPLETED.equals(action)
75 || Intent.ACTION_LOCALE_CHANGED.equals(action)) {
83 if (Intent.ACTION_MY_PACKAGE_REPLACED.equals(action)) {
HandleShortcuts.java 40 final String action = intent.getAction(); local
41 switch (action) {
61 throw new IllegalArgumentException("Unsupported action: " + action);
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
CallLogNotificationsActivity.java 57 String action = intent.getAction(); local
58 switch (action) {
MissedCallNotificationReceiver.java 35 "android.telecom.action.SHOW_MISSED_CALLS_NOTIFICATION";
44 String action = intent.getAction(); local
45 if (!ACTION_SHOW_MISSED_CALLS_NOTIFICATION.equals(action)) {
  /packages/apps/Dialer/java/com/android/dialer/precall/impl/
PreCallImpl.java 51 for (PreCallAction action : PreCallComponent.get(context).getPreCall().getActions()) {
52 action.runWithoutUi(context, builder);
63 for (PreCallAction action : PreCallComponent.get(context).getPreCall().getActions()) {
64 if (action.requiresUi(context, builder)) {
65 LogUtil.i("PreCallImpl.requiresUi", action + " requested UI");
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/classifier/
PointerCountClassifier.java 36 int action = event.getActionMasked(); local
38 if (action == MotionEvent.ACTION_DOWN) {
42 if (action == MotionEvent.ACTION_POINTER_DOWN) {
  /packages/apps/Launcher3/quickstep/src/com/android/quickstep/logging/
UserEventDispatcherExtension.java 43 public void logStateChangeAction(int action, int dir, int srcChildTargetType,
48 super.logStateChangeAction(action, dir, srcChildTargetType, srcParentContainerType,
53 LauncherLogProto.Action action = new LauncherLogProto.Action(); local
57 action.type = LauncherLogProto.Action.Type.TIP;
62 action.type = LauncherLogProto.Action.Type.TOUCH;
63 action.touch = LauncherLogProto.Action.Touch.TAP
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
UpdateMessageNotificationAction.java 16 package com.android.messaging.datamodel.action;
27 public class UpdateMessageNotificationAction extends Action {
  /packages/apps/Messaging/src/com/android/messaging/ui/
RemoteInputEntrypointActivity.java 40 // Perform some action depending on the intent
41 String action = intent.getAction(); local
42 if (Intent.ACTION_SENDTO.equals(action)) {
52 LogUtil.w(TAG, "Unrecognized intent action: " + action);
  /packages/apps/Nfc/src/com/android/nfc/
NfcBootCompletedReceiver.java 32 String action = intent.getAction(); local
34 if (Intent.ACTION_BOOT_COMPLETED.equals(action)) {
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDeviceRenamePreferenceController.java 74 mMetricsFeatureProvider.action(mContext,
  /packages/apps/Settings/src/com/android/settings/fuelgauge/anomaly/action/
BackgroundCheckAction.java 17 package com.android.settings.fuelgauge.anomaly.action;
29 * Background check action for anomaly app, which means to stop app running in the background
  /packages/apps/Settings/src/com/android/settings/fuelgauge/batterytip/actions/
BatterySaverAction.java 30 * Handle the action when user clicks positive button
35 mMetricsFeatureProvider.action(mContext,
SmartBatteryAction.java 39 * Handle the action when user clicks positive button
43 mMetricsFeatureProvider.action(mContext,
UnrestrictAppAction.java 30 * Action to clear the restriction to the app
44 * Handle the action when user clicks positive button
52 mMetricsFeatureProvider.action(mContext,
  /packages/apps/Settings/src/com/android/settings/fuelgauge/batterytip/tips/
SmartBatteryTip.java 62 metricsFeatureProvider.action(context, MetricsProto.MetricsEvent.ACTION_SMART_BATTERY_TIP,
  /packages/apps/SpareParts/src/com/android/spare_parts/
Enabler.java 33 String action = intent.getAction(); local
  /packages/apps/Stk/src/com/android/stk/
BootCompletedReceiver.java 37 String action = intent.getAction(); local
38 if (action == null) {
43 if (action.equals(Intent.ACTION_BOOT_COMPLETED)) {
49 } else if(action.equals(Intent.ACTION_USER_INITIALIZE)) {
  /packages/apps/TV/src/com/android/tv/menu/
CustomizableOptionsRowAdapter.java 39 // Subclass should implement this to perform proper action
53 MenuAction action = local
58 actions.add(position++, action);
60 actions.add(action);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
BluetoothPairingRequest.java 33 String action = intent.getAction(); local
34 if (!action.equals(BluetoothDevice.ACTION_PAIRING_REQUEST)) {
38 // convert broadcast intent into activity intent (same action string)
  /packages/experimental/ExampleImsFramework/src/com/android/example/imsframework/
ImsFrameworkReceiver.java 29 String action = intent.getAction(); local
30 if (Intent.ACTION_BOOT_COMPLETED.equals(action)) {
37 } else if (Intent.ACTION_SHUTDOWN.equals(action)) {
41 Log.e(TAG, "Received unknown intent: " + action);
ImsFrameworkService.java 38 String action = intent.getAction(); local
39 Log.d(TAG, "Service starting for intent " + action);
40 if (action.equals(Intent.ACTION_BOOT_COMPLETED)) {
44 stopSelf(); // stop service after handling the action
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
EditorInfoCompatUtils.java 68 final String action = imeActionName(imeOptions); local
82 return (action != null) ? flags + action : flags.toString();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DictionaryDumpBroadcastReceiver.java 39 final String action = intent.getAction(); local
40 if (action.equals(DICTIONARY_DUMP_INTENT_ACTION)) {
43 Log.e(TAG, "Received dictionary dump intent action " +
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
IntentUtils.java 35 final String action = INPUT_METHOD_SUBTYPE_SETTINGS; local
36 final Intent intent = new Intent(action);

Completed in 477 milliseconds

1 2 3 4 56 7 8 91011>>