/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/classifier/ |
D | ClassifierTest.java | 86 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() 122 private MotionEvent appendMotionEvent(int actionType, float x, float y, long eventTime) { in appendMotionEvent() argument 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() [all …]
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/tv/ |
D | TvPipAction.java | 65 TvPipAction(@ActionType int actionType, @NonNull SystemActionsHandler systemActionsHandler) { in TvPipAction() argument 67 mActionType = actionType; in TvPipAction() 80 static String getActionTypeString(@ActionType int actionType) { in getActionTypeString() argument 81 switch (actionType) { in getActionTypeString() 104 void executeAction(@TvPipAction.ActionType int actionType); in executeAction() argument
|
D | TvPipSystemAction.java | 46 TvPipSystemAction(@ActionType int actionType, @StringRes int title, @DrawableRes int icon, in TvPipSystemAction() argument 49 super(actionType, systemActionsHandler); in TvPipSystemAction()
|
D | TvPipCustomAction.java | 47 TvPipCustomAction(@ActionType int actionType, @NonNull RemoteAction remoteAction, in TvPipCustomAction() argument 49 super(actionType, systemActionsHandler); in TvPipCustomAction()
|
D | TvPipActionsProvider.java | 94 public void executeAction(@TvPipAction.ActionType int actionType) { in executeAction() argument 96 mSystemActionsHandler.executeAction(actionType); in executeAction() 231 int getFirstIndexOfAction(@TvPipAction.ActionType int actionType) { in getFirstIndexOfAction() argument 233 if (mActionsList.get(i).getActionType() == actionType) { in getFirstIndexOfAction()
|
D | TvPipController.java | 717 private void executeAction(@TvPipAction.ActionType int actionType) { in executeAction() argument 718 switch (actionType) { in executeAction()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/user/legacyhelper/data/ |
D | LegacyUserDataHelper.kt | 68 actionType: UserActionModel, in createRecord() 74 isGuest = actionType == UserActionModel.ENTER_GUEST_MODE, in createRecord() 75 isAddUser = actionType == UserActionModel.ADD_USER, in createRecord() 76 isAddSupervisedUser = actionType == UserActionModel.ADD_SUPERVISED_USER, in createRecord() 85 isManageUsers = actionType == UserActionModel.NAVIGATE_TO_USER_MANAGEMENT, in createRecord()
|
/frameworks/base/core/java/android/app/search/ |
D | SearchTargetEvent.java | 131 @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()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ |
D | ScreenshotSmartActions.java | 66 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()
|
D | SmartActionsReceiver.java | 52 String actionType = intent.getStringExtra(EXTRA_ACTION_TYPE); in onReceive() local 54 Log.d(TAG, "Executing smart action [" + actionType + "]:" + pendingIntent.getIntent()); in onReceive() 66 intent.getStringExtra(EXTRA_ID), actionType, true, in onReceive() local
|
D | SaveImageInBackgroundTask.java | 223 String actionType = extras.getString( in buildSmartActions() local 229 addIntentExtras(mScreenshotId, intent, actionType, true /* smartActionsEnabled */); in buildSmartActions() 240 private static void addIntentExtras(String screenshotId, Intent intent, String actionType, in addIntentExtras() argument 243 .putExtra(ScreenshotController.EXTRA_ACTION_TYPE, actionType) in addIntentExtras() 273 String actionType = extras.getString( in createQuickShareAction() local 278 addIntentExtras(screenshotId, wrappedIntent, actionType, true /* smartActionsEnabled */); in createQuickShareAction()
|
D | ScreenshotNotificationSmartActionsProvider.java | 80 ScreenshotSmartActionType actionType, UserHandle userHandle) { in getActions() argument
|
/frameworks/base/core/java/android/app/prediction/ |
D | AppTargetEvent.java | 74 @ActionType int actionType) { in AppTargetEvent() argument 77 mAction = actionType; in AppTargetEvent() 164 public Builder(@Nullable AppTarget target, @ActionType int actionType) { in Builder() argument 166 mAction = actionType; in Builder()
|
/frameworks/base/core/java/android/view/textclassifier/ |
D | SelectionEvent.java | 303 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()
|
D | ConversationAction.java | 231 public Builder(@NonNull @ActionType String actionType) { in Builder() argument 232 mType = Objects.requireNonNull(actionType); in Builder()
|
/frameworks/base/core/java/android/app/slice/ |
D | SliceMetrics.java | 91 public void logTouch(int actionType, @NonNull Uri subSlice) { in logTouch() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
D | VolumePanelDialog.java | 173 if (eventInfo.actionType == EventInfo.ACTION_TYPE_SLIDER) { in setupAdapterWhenReady()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/user/domain/interactor/ |
D | UserSwitcherInteractor.kt | 595 actionType = action, in <lambda>()
|
/frameworks/base/core/java/android/widget/ |
D | Editor.java | 5921 final int actionType = ev.getActionMasked(); in touchThrough() local 5922 switch (actionType) { in touchThrough() 5942 if (actionType == MotionEvent.ACTION_UP || actionType == MotionEvent.ACTION_CANCEL) { in touchThrough() 5960 if (!mOffsetChanged && actionType == MotionEvent.ACTION_UP) { in touchThrough()
|
/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |