Home
last modified time | relevance | path

Searched refs:ACTION (Results 1 – 25 of 71) sorted by relevance

123

/frameworks/base/proto/src/metrics_constants/
Dmetrics_constants.proto819 // ACTION: QS Airplane mode tile tapped
826 // ACTION: QS Bluetooth tile tapped
833 // ACTION: QS Cast tile tapped
839 // ACTION: QS Cellular tile tapped
845 // ACTION: QS Color inversion tile tapped
857 // ACTION: QS Do not disturb tile tapped
864 // ACTION: QS Flashlight tile tapped
871 // ACTION: QS Hotspot tile tapped
878 // ACTION: QS 3P tile tapped
884 // ACTION: QS Location tile tapped
[all …]
/frameworks/base/core/tests/coretests/src/android/view/
DKeyEventTest.java47 private static final int ACTION = KeyEvent.ACTION_DOWN; field in KeyEventTest
65 KeyEvent keyEvent = KeyEvent.obtain(DOWN_TIME, EVENT_TIME, ACTION, KEYCODE, REPEAT, in testObtain()
73 KeyEvent keyEvent = KeyEvent.obtain(DOWN_TIME, EVENT_TIME, ACTION, KEYCODE, REPEAT, in testObtainFromKeyEvent()
83 KeyEvent keyEvent = KeyEvent.obtain(DOWN_TIME, EVENT_TIME, ACTION, KEYCODE, REPEAT, in testObtainWithDisplayId()
99 KeyEvent keyEvent = KeyEvent.obtain(DOWN_TIME, EVENT_TIME, ACTION, KEYCODE, REPEAT, in testObtainGeneratesUniqueId()
111 KeyEvent keyEvent = new KeyEvent(DOWN_TIME, EVENT_TIME, ACTION, KEYCODE, REPEAT); in testConstructorGeneratesUniqueId()
121 KeyEvent keyEvent = KeyEvent.obtain(DOWN_TIME, EVENT_TIME, ACTION, KEYCODE, REPEAT, in testObtainGeneratesIdWithRightSource()
130 KeyEvent keyEvent = new KeyEvent(DOWN_TIME, EVENT_TIME, ACTION, KEYCODE, REPEAT); in testConstructorGeneratesIdWithRightSource()
168 assertKeyEventFields(key2, DOWN_TIME, ANOTHER_EVENT_TIME, ACTION, KEYCODE, ANOTHER_REPEAT, in testCopyConstructorWith2ChangedFields()
177 KeyEvent key = new KeyEvent(DOWN_TIME, EVENT_TIME, ACTION, KEYCODE, REPEAT, METASTATE, in testConstructorWith10Args()
[all …]
DVerifiedKeyEventTest.kt46 assertEquals(ACTION, event.action) in testConstructor()
136 private const val ACTION = ACTION_DOWN constant
145 return VerifiedKeyEvent(DEVICE_ID, EVENT_TIME_NANOS, SOURCE, DISPLAY_ID, ACTION, in createVerifiedKeyEvent()
/frameworks/proto_logging/stats/enums/app/
Dsettings_enums.proto30 // ACTION: Settings > Wi-Fi > [Long press network] > Connect to network
36 // ACTION: Settings > Wi-Fi > [Long press network] > Forget network
41 // ACTION: Settings > Wi-Fi > Toggle off
47 // ACTION: Settings > Wi-Fi > Toggle on
52 // ACTION: Settings > Bluetooth > Overflow > Rename this device
57 // ACTION: Settings > Bluetooth > Overflow > Show received files
62 // ACTION: DND Settings > Priority only allows > Reminder toggle
68 // ACTION: DND Settings > Priority only allows > Event toggle
74 // ACTION: DND Settings > Priority only allows > Messages
80 // ACTION: DND Settings > Priority only allows > Calls
[all …]
/frameworks/base/packages/SettingsLib/SpaPrivileged/tests/src/com/android/settingslib/spaprivileged/model/app/
DPackageManagerExtTest.kt77 val activityInfo = packageManager.resolveActionForApp(APP, ACTION) in resolveActionForApp_noResolveInfo()
86 val activityInfo = packageManager.resolveActionForApp(APP, ACTION) in resolveActionForApp_noActivityInfo()
100 val activityInfo = packageManager.resolveActionForApp(APP, ACTION)!! in resolveActionForApp_hasActivityInfo()
109 action = ACTION, in resolveActionForApp_withFlags()
122 const val ACTION = "action" constant
/frameworks/base/services/people/java/com/android/server/people/data/
DConversationStatusExpirationBroadcastReceiver.java42 static final String ACTION = "ConversationStatusExpiration"; field in ConversationStatusExpirationBroadcastReceiver
53 new Intent(ACTION) in scheduleExpiration()
75 new IntentFilter(ConversationStatusExpirationBroadcastReceiver.ACTION); in getFilter()
87 if (ACTION.equals(action)) { in onReceive()
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
DDozeServicePlugin.java5 @ProvidesInterface(action = DozeServicePlugin.ACTION, version = DozeServicePlugin.VERSION)
7 String ACTION = "com.android.systemui.action.PLUGIN_DOZE"; field
DFalsingPlugin.java30 @ProvidesInterface(action = FalsingPlugin.ACTION, version = FalsingPlugin.VERSION)
33 String ACTION = "com.android.systemui.action.FALSING_PLUGIN"; field
DVolumeDialog.java25 @ProvidesInterface(action = VolumeDialog.ACTION, version = VolumeDialog.VERSION)
28 String ACTION = "com.android.systemui.action.PLUGIN_VOLUME"; field
DOverlayPlugin.java21 @ProvidesInterface(action = OverlayPlugin.ACTION, version = OverlayPlugin.VERSION)
24 String ACTION = "com.android.systemui.action.PLUGIN_OVERLAY"; field
DGlobalActions.java21 @ProvidesInterface(action = GlobalActions.ACTION, version = GlobalActions.VERSION)
25 String ACTION = "com.android.systemui.action.PLUGIN_GLOBAL_ACTIONS"; field
DNavigationEdgeBackPlugin.java29 action = NavigationEdgeBackPlugin.ACTION,
32 String ACTION = "com.android.systemui.action.PLUGIN_NAVIGATION_EDGE_BACK_ACTION"; field
DToastPlugin.java28 @ProvidesInterface(action = ToastPlugin.ACTION, version = ToastPlugin.VERSION)
31 String ACTION = "com.android.systemui.action.PLUGIN_TOAST"; field
DSensorManagerPlugin.java27 @ProvidesInterface(action = SensorManagerPlugin.ACTION, version = SensorManagerPlugin.VERSION)
29 String ACTION = "com.android.systemui.action.PLUGIN_SENSOR_MANAGER"; field
DNotificationPersonExtractorPlugin.java28 action = NotificationPersonExtractorPlugin.ACTION,
33 String ACTION = "com.android.systemui.action.PEOPLE_HUB_PERSON_EXTRACTOR"; field
DGlobalActionsPanelPlugin.java44 action = GlobalActionsPanelPlugin.ACTION, version = GlobalActionsPanelPlugin.VERSION)
48 String ACTION = "com.android.systemui.action.PLUGIN_GLOBAL_ACTIONS_PANEL"; field
DNotificationListenerController.java26 @ProvidesInterface(action = NotificationListenerController.ACTION,
30 String ACTION = "com.android.systemui.action.PLUGIN_NOTIFICATION_ASSISTANT"; field
/frameworks/base/services/core/java/com/android/server/notification/
DCountdownConditionProvider.java47 private static final String ACTION = CountdownConditionProvider.class.getName(); field in CountdownConditionProvider
97 mContext.registerReceiver(mReceiver, new IntentFilter(ACTION), in onConnected()
135 ACTION, ts(mTime), mTime - now, span, ts(now))); in onSubscribe()
140 final Intent intent = new Intent(ACTION) in getPendingIntent()
157 if (ACTION.equals(intent.getAction())) { in onReceive()
DTimeToLiveHelper.java47 private static final String ACTION = "com.android.server.notification.TimeToLiveHelper"; field in TimeToLiveHelper
65 IntentFilter timeoutFilter = new IntentFilter(ACTION); in TimeToLiveHelper()
83 new Intent(ACTION) in getAlarmPendingIntent()
164 if (ACTION.equals(action)) {
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/qs/
DQSFactory.java25 @ProvidesInterface(action = QSFactory.ACTION, version = QSFactory.VERSION)
30 String ACTION = "com.android.systemui.action.PLUGIN_QS_FACTORY"; field
DQS.java32 @ProvidesInterface(action = QS.ACTION, version = QS.VERSION)
36 String ACTION = "com.android.systemui.action.PLUGIN_QS"; field
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/hearingaid/
DHearingDevicesDialogReceiver.java33 public static String ACTION = "com.android.systemui.action.LAUNCH_HEARING_DEVICES_DIALOG"; field in HearingDevicesDialogReceiver
48 if (ACTION.equals(intent.getAction())) { in onReceive()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DSysuiRestartReceiver.java27 public static String ACTION = "com.android.systemui.action.RESTART"; field in SysuiRestartReceiver
31 if (ACTION.equals(intent.getAction())) { in onReceive()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/
DCameraPairwiseTest.java60 public enum SceneMode { SUNSET, ACTION, PARTY, NIGHT, AUTO }; enumConstant
190 genericPairwiseTestCase(Flash.AUTO, Exposure.MIN, WhiteBalance.AUTO, SceneMode.ACTION, in testCameraPairwiseScenario07()
200 genericPairwiseTestCase(Flash.ON, Exposure.MIN, WhiteBalance.AUTO, SceneMode.ACTION, in testCameraPairwiseScenario08()
310 genericPairwiseTestCase(Flash.OFF, Exposure.NONE, WhiteBalance.AUTO, SceneMode.ACTION, in testCameraPairwiseScenario19()
338 genericPairwiseTestCase(Flash.ON, Exposure.MAX, WhiteBalance.AUTO, SceneMode.ACTION, in testCameraPairwiseScenario22()
444 case ACTION: in genericPairwiseTestCase()
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/statusbar/
DNotificationMenuRowPlugin.java34 @ProvidesInterface(action = NotificationMenuRowPlugin.ACTION,
42 public static final String ACTION = "com.android.systemui.action.PLUGIN_NOTIFICATION_MENU_ROW"; field

123