Home
last modified time | relevance | path

Searched refs:actionType (Results 1 – 15 of 15) sorted by relevance

/frameworks/base/core/java/android/app/search/
DSearchTargetEvent.java119 @ActionType int actionType, in SearchTargetEvent() argument
123 mAction = actionType; in SearchTargetEvent()
230 public Builder(@NonNull String id, @ActionType int actionType) { in Builder() argument
233 mAction = actionType; in Builder()
240 public Builder(@NonNull List<String> ids, @ActionType int actionType) { in Builder() argument
242 mAction = actionType; in Builder()
/frameworks/base/packages/SystemUI/src/com/android/systemui/user/legacyhelper/data/
DLegacyUserDataHelper.kt68 actionType: UserActionModel, in createRecord()
73 isGuest = actionType == UserActionModel.ENTER_GUEST_MODE, in createRecord()
74 isAddUser = actionType == UserActionModel.ADD_USER, in createRecord()
75 isAddSupervisedUser = actionType == UserActionModel.ADD_SUPERVISED_USER, in createRecord()
83 isManageUsers = actionType == UserActionModel.NAVIGATE_TO_USER_MANAGEMENT, in createRecord()
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
DScreenshotSmartActions.java68 ScreenshotSmartActionType actionType, in getSmartActionsFuture() argument
74 screenshotId, screenshotUri, smartActionsProvider.getClass(), actionType, in getSmartActionsFuture()
100 componentName, actionType, userHandle); in getSmartActionsFuture()
119 ScreenshotSmartActionType actionType) { in getSmartActions() argument
124 screenshotId, timeoutMs, actionType, smartActionsProvider.getClass())); in getSmartActions()
132 actions.size(), waitTimeMs, actionType)); in getSmartActions()
144 waitTimeMs, actionType), e); in getSmartActions()
DSmartActionsReceiver.java50 String actionType = intent.getStringExtra(EXTRA_ACTION_TYPE); in onReceive() local
52 Log.d(TAG, "Executing smart action [" + actionType + "]:" + pendingIntent.getIntent()); in onReceive()
63 intent.getStringExtra(EXTRA_ID), actionType, true, in onReceive() local
DActionProxyReceiver.java104 String actionType = Intent.ACTION_EDIT.equals(intent.getAction()) in onReceive() local
108 intent.getStringExtra(EXTRA_ID), actionType, false, null); in onReceive() local
DSaveImageInBackgroundTask.java400 String actionType = extras.getString(
406 addIntentExtras(mScreenshotId, intent, actionType, true /* smartActionsEnabled */);
417 private static void addIntentExtras(String screenshotId, Intent intent, String actionType,
420 .putExtra(ScreenshotController.EXTRA_ACTION_TYPE, actionType)
454 String actionType = extras.getString(
462 addIntentExtras(mScreenshotId, intent, actionType, true /* smartActionsEnabled */);
DScreenshotNotificationSmartActionsProvider.java80 ScreenshotSmartActionType actionType, UserHandle userHandle) { in getActions() argument
/frameworks/base/core/java/android/app/prediction/
DAppTargetEvent.java73 @ActionType int actionType) { in AppTargetEvent() argument
76 mAction = actionType; in AppTargetEvent()
156 public Builder(@Nullable AppTarget target, @ActionType int actionType) { in Builder() argument
158 mAction = actionType; in Builder()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/classifier/
DClassifierTest.java108 private MotionEvent appendMotionEvent(int actionType, float x, float y) { in appendMotionEvent() argument
112 return appendMotionEvent(actionType, x, y, eventTime); in appendMotionEvent()
115 private MotionEvent appendMotionEvent(int actionType, float x, float y, long eventTime) { in appendMotionEvent() argument
119 MotionEvent motionEvent = MotionEvent.obtain(1, eventTime, actionType, x, y, in appendMotionEvent()
/frameworks/base/core/java/android/view/textclassifier/
DSelectionEvent.java303 int start, int end, @SelectionEvent.ActionType int actionType) { in createSelectionActionEvent() argument
305 checkActionType(actionType); in createSelectionActionEvent()
307 start, end, actionType, TextClassifier.TYPE_UNKNOWN, INVOCATION_UNKNOWN, in createSelectionActionEvent()
327 int start, int end, @SelectionEvent.ActionType int actionType, in createSelectionActionEvent() argument
331 checkActionType(actionType); in createSelectionActionEvent()
335 return new SelectionEvent(start, end, actionType, entityType, INVOCATION_UNKNOWN, in createSelectionActionEvent()
DConversationAction.java231 public Builder(@NonNull @ActionType String actionType) { in Builder() argument
232 mType = Objects.requireNonNull(actionType); in Builder()
/frameworks/base/core/java/android/app/slice/
DSliceMetrics.java86 public void logTouch(int actionType, @NonNull Uri subSlice) { in logTouch() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
DVolumePanelDialog.java173 if (eventInfo.actionType == EventInfo.ACTION_TYPE_SLIDER) { in setupAdapterWhenReady()
/frameworks/base/packages/SystemUI/src/com/android/systemui/user/domain/interactor/
DUserInteractor.kt558 actionType = action, in <lambda>()
/frameworks/base/core/java/android/widget/
DEditor.java5722 final int actionType = ev.getActionMasked(); in touchThrough() local
5723 switch (actionType) { in touchThrough()
5743 if (actionType == MotionEvent.ACTION_UP || actionType == MotionEvent.ACTION_CANCEL) { in touchThrough()
5761 if (!mOffsetChanged && actionType == MotionEvent.ACTION_UP) { in touchThrough()