Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/classifier/
H A DClassifierTest.java86 protected static int getPointerAction(int actionType, int index) { in getPointerAction() argument
87 return actionType + (index << MotionEvent.ACTION_POINTER_INDEX_SHIFT); in getPointerAction()
115 private MotionEvent appendMotionEvent(int actionType, float x, float y) { in appendMotionEvent() argument
119 return appendMotionEvent(actionType, x, y, eventTime); in appendMotionEvent()
126 MotionEvent motionEvent = MotionEvent.obtain(1, eventTime, actionType, x, y, in appendMotionEvent()
143 protected MotionEvent appendTrackpadPointerDownEvent(int actionType, float x, float y, in appendTrackpadPointerDownEvent() argument
145 return appendTrackpadMotionEvent(actionType, x, y, pointerCount); in appendTrackpadPointerDownEvent()
148 private MotionEvent appendTrackpadMotionEvent(int actionType, float x, float y, in appendTrackpadMotionEvent() argument
152 return appendTrackpadMotionEvent(actionType, x, y, pointerCount, eventTime); in appendTrackpadMotionEvent()
155 private MotionEvent appendTrackpadMotionEvent(int actionType, float x, float y, in appendTrackpadMotionEvent() argument
[all …]
/aosp14/frameworks/base/core/java/android/app/search/
H A DSearchTargetEvent.java131 @ActionType int actionType, in SearchTargetEvent() argument
135 mAction = actionType; in SearchTargetEvent()
242 public Builder(@NonNull String id, @ActionType int actionType) { in Builder() argument
245 mAction = actionType; in Builder()
252 public Builder(@NonNull List<String> ids, @ActionType int actionType) { in Builder() argument
254 mAction = actionType; in Builder()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/user/legacyhelper/data/
H A DLegacyUserDataHelper.kt68 actionType: UserActionModel,
73 isGuest = actionType == UserActionModel.ENTER_GUEST_MODE,
74 isAddUser = actionType == UserActionModel.ADD_USER,
75 isAddSupervisedUser = actionType == UserActionModel.ADD_SUPERVISED_USER,
83 isManageUsers = actionType == UserActionModel.NAVIGATE_TO_USER_MANAGEMENT,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DScreenshotSmartActions.java66 ScreenshotSmartActionType actionType, in getSmartActionsFuture() argument
72 screenshotId, screenshotUri, smartActionsProvider.getClass(), actionType, in getSmartActionsFuture()
98 componentName, actionType, userHandle); in getSmartActionsFuture()
116 ScreenshotSmartActionType actionType) { in getSmartActions() argument
121 screenshotId, timeoutMs, actionType, smartActionsProvider.getClass())); in getSmartActions()
129 actions.size(), waitTimeMs, actionType)); in getSmartActions()
141 waitTimeMs, actionType), e); in getSmartActions()
H A DSmartActionsReceiver.java53 String actionType = intent.getStringExtra(EXTRA_ACTION_TYPE); in onReceive() local
55 Log.d(TAG, "Executing smart action [" + actionType + "]:" + pendingIntent.getIntent()); in onReceive()
67 intent.getStringExtra(EXTRA_ID), actionType, true, in onReceive() local
H A DActionProxyReceiver.java100 String actionType = Intent.ACTION_EDIT.equals(intent.getAction()) in onReceive() local
104 intent.getStringExtra(EXTRA_ID), actionType, false, null); in onReceive() local
H A 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)
450 String actionType = extras.getString(
455 addIntentExtras(screenshotId, wrappedIntent, actionType, true /* smartActionsEnabled */);
H A DScreenshotNotificationSmartActionsProvider.java80 ScreenshotSmartActionType actionType, UserHandle userHandle) { in getActions() argument
/aosp14/frameworks/base/core/java/android/app/prediction/
H A 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()
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/tv/
H A DTvPipAction.java65 TvPipAction(@ActionType int actionType, @NonNull SystemActionsHandler systemActionsHandler) { in TvPipAction() argument
67 mActionType = actionType; in TvPipAction()
91 void executeAction(@TvPipAction.ActionType int actionType); in executeAction() argument
H A DTvPipSystemAction.java46 TvPipSystemAction(@ActionType int actionType, @StringRes int title, @DrawableRes int icon, in TvPipSystemAction() argument
49 super(actionType, systemActionsHandler); in TvPipSystemAction()
H A DTvPipActionsProvider.java91 public void executeAction(@TvPipAction.ActionType int actionType) { in executeAction() argument
93 mSystemActionsHandler.executeAction(actionType); in executeAction()
220 int getFirstIndexOfAction(@TvPipAction.ActionType int actionType) { in getFirstIndexOfAction() argument
222 if (mActionsList.get(i).getActionType() == actionType) { in getFirstIndexOfAction()
H A DTvPipCustomAction.java47 TvPipCustomAction(@ActionType int actionType, @NonNull RemoteAction remoteAction, in TvPipCustomAction() argument
49 super(actionType, systemActionsHandler); in TvPipCustomAction()
H A DTvPipController.java690 private void executeAction(@TvPipAction.ActionType int actionType) { in executeAction() argument
691 switch (actionType) { in executeAction()
/aosp14/frameworks/base/core/java/android/view/textclassifier/
H A 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()
H A DConversationAction.java231 public Builder(@NonNull @ActionType String actionType) { in Builder() argument
232 mType = Objects.requireNonNull(actionType); in Builder()
/aosp14/frameworks/base/core/java/android/app/slice/
H A DSliceMetrics.java86 public void logTouch(int actionType, @NonNull Uri subSlice) { in logTouch() argument
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumePanelDialog.java173 if (eventInfo.actionType == EventInfo.ACTION_TYPE_SLIDER) { in setupAdapterWhenReady()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/user/domain/interactor/
H A DUserInteractor.kt587 actionType = action,
/aosp14/frameworks/base/core/java/android/widget/
H A DEditor.java5882 final int actionType = ev.getActionMasked(); in touchThrough() local
5883 switch (actionType) { in touchThrough()
5903 if (actionType == MotionEvent.ACTION_UP || actionType == MotionEvent.ACTION_CANCEL) { in touchThrough()
5921 if (!mOffsetChanged && actionType == MotionEvent.ACTION_UP) { in touchThrough()
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...