HomeSort by relevance Sort by last modified time
    Searched defs:ACTION (Results 1 - 25 of 302) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
AllUsersActivity.java 28 public static final String ACTION =
ManagedProfileActivity.java 28 public static final String ACTION =
PrimaryUserActivity.java 29 public static final String ACTION =
  /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
OverlayPlugin.java 20 @ProvidesInterface(action = OverlayPlugin.ACTION, version = OverlayPlugin.VERSION)
23 String ACTION = "com.android.systemui.action.PLUGIN_OVERLAY";
DozeServicePlugin.java 5 @ProvidesInterface(action = DozeServicePlugin.ACTION, version = DozeServicePlugin.VERSION)
7 String ACTION = "com.android.systemui.action.PLUGIN_DOZE";
GlobalActions.java 21 @ProvidesInterface(action = GlobalActions.ACTION, version = GlobalActions.VERSION)
25 String ACTION = "com.android.systemui.action.PLUGIN_GLOBAL_ACTIONS";
VolumeDialog.java 25 @ProvidesInterface(action = VolumeDialog.ACTION, version = VolumeDialog.VERSION)
28 String ACTION = "com.android.systemui.action.PLUGIN_VOLUME";
NotificationListenerController.java 24 @ProvidesInterface(action = NotificationListenerController.ACTION,
28 String ACTION = "com.android.systemui.action.PLUGIN_NOTIFICATION_ASSISTANT";
  /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/qs/
QSFactory.java 25 @ProvidesInterface(action = QSFactory.ACTION, version = QSFactory.VERSION)
30 String ACTION = "com.android.systemui.action.PLUGIN_QS_FACTORY";
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SysuiRestartReceiver.java 27 public static String ACTION = "com.android.systemui.action.RESTART";
31 if (ACTION.equals(intent.getAction())) {
  /bionic/libc/include/
search.h 18 } ACTION;
45 ENTRY* hsearch(ENTRY, ACTION) __INTRODUCED_IN(28);
50 int hsearch_r(ENTRY, ACTION, ENTRY**, struct hsearch_data*) __INTRODUCED_IN(28);
  /external/bsdiff/
extents_file_unittest.cc 33 ACTION(SucceedIO) {
  /external/libchrome/base/
gmock_unittest.cc 56 ACTION(ReturnVal) {
60 ACTION(ReturnSecond) {
108 // Test a mock of the ReturnSecond behavior using an action that provides an
124 // Alternate implemention of ReturnSecond using a more general custom action,
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
Intents.java 34 public static final String ACTION = "com.google.zxing.client.android.YOUTUBE_SCAN";
  /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/statusbar/phone/
NavBarButtonProvider.java 25 @ProvidesInterface(action = NavBarButtonProvider.ACTION, version = NavBarButtonProvider.VERSION)
28 public static final String ACTION = "com.android.systemui.action.PLUGIN_NAV_BUTTON";
NavGesture.java 24 @ProvidesInterface(action = NavGesture.ACTION, version = NavGesture.VERSION)
27 public static final String ACTION = "com.android.systemui.action.PLUGIN_NAV_GESTURE";
  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/background/systemalarm/
ConstraintProxyUpdateReceiver.java 37 static final String ACTION = "androidx.work.impl.background.systemalarm.UpdateProxies";
62 Intent intent = new Intent(ACTION);
73 String action = intent != null ? intent.getAction() : null; local
74 if (!ACTION.equals(action)) {
75 Log.d(TAG, String.format("Ignoring unknown action %s", action));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
search.h 44 } ACTION;
  /tools/test/connectivity/acts/framework/acts/controllers/relay_lib/
dongles.py 33 ACTION = 'Action'
39 """A Bluetooth dongle with one generic button Normally action.
50 self.ensure_config_contains_relay(Buttons.ACTION.value)
68 Holds down the 'ACTION' buttons for PAIRING_MODE_WAIT_TIME seconds.
70 self.relays[Buttons.ACTION.value].set_nc_for(
74 """Briefly presses the Action button."""
75 self.relays[Buttons.ACTION.value].set_nc_for(
79 """Long press the Action button."""
80 self.relays[Buttons.ACTION.value].set_nc_for
    [all...]
  /cts/tools/dasm/src/java_cup/
sym.java 30 static final int ACTION = 5;
  /external/ipsec-tools/src/libipsec/
policy_parse.h 47 ACTION = 263,
66 #define ACTION 263
  /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/statusbar/
NotificationSwipeActionHelper.java 30 public static final String ACTION = "com.android.systemui.action.PLUGIN_NOTIFICATION_SWIPE_ACTION";
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
search.h 62 /* Action which shall be performed in the call the hsearch. */
68 ACTION;
85 ACTION is `FIND' return found entry or signal error by returning
86 NULL. If ACTION is `ENTER' replace existing data (if any) with
88 extern ENTRY *hsearch (ENTRY __item, ACTION __action) __THROW;
107 extern int hsearch_r (ENTRY __item, ACTION __action, ENTRY **__retval,
149 /* Walk through the whole tree and call the ACTION callback for every node
  /cts/tests/sensor/src/android/hardware/cts/helpers/sensoroperations/
AlarmOperation.java 44 private static final String ACTION = "AlarmOperationAction";
81 IntentFilter intentFilter = new IntentFilter(ACTION);
93 Intent intent = new Intent(ACTION);
  /cts/tests/tests/batterysaving/src/android/os/cts/batterysaving/
BatterySaverAlarmTest.java 90 // Use a different broadcast action every time.
91 private final String ACTION = "BATTERY_SAVER_ALARM_TEST_ALARM_ACTION_" + Values.getRandomInt();
107 final IntentFilter filter = new IntentFilter(ACTION);
128 .setIntentAction(ACTION)
146 final String action = "start_service_" + getRandomInt() + "_fg=" + foreground; local
153 .setAction(action).build()
157 return action;

Completed in 402 milliseconds

1 2 3 4 5 6 7 8 91011>>