Home
last modified time | relevance | path

Searched refs:actionType (Results 1 – 13 of 13) 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/screenshot/
DScreenshotSmartActions.java64 ScreenshotSmartActionType actionType, in getSmartActionsFuture() argument
70 screenshotId, screenshotUri, smartActionsProvider.getClass(), actionType, in getSmartActionsFuture()
96 componentName, actionType, userHandle); in getSmartActionsFuture()
115 ScreenshotSmartActionType actionType) { in getSmartActions() argument
120 screenshotId, timeoutMs, actionType, smartActionsProvider.getClass())); in getSmartActions()
128 actions.size(), waitTimeMs, actionType)); in getSmartActions()
140 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 context, intent.getStringExtra(EXTRA_ID), actionType, true, in onReceive()
DActionProxyReceiver.java101 String actionType = Intent.ACTION_EDIT.equals(intent.getAction()) in onReceive() local
105 context, intent.getStringExtra(EXTRA_ID), actionType, false, null); in onReceive()
DSaveImageInBackgroundTask.java384 String actionType = extras.getString(
390 addIntentExtras(mScreenshotId, intent, actionType, mSmartActionsEnabled);
401 private static void addIntentExtras(String screenshotId, Intent intent, String actionType,
404 .putExtra(ScreenshotController.EXTRA_ACTION_TYPE, actionType)
439 String actionType = extras.getString(
445 addIntentExtras(mScreenshotId, intent, actionType, mSmartActionsEnabled);
DScreenshotNotificationSmartActionsProvider.java80 ScreenshotSmartActionType actionType, UserHandle userHandle) { in getActions() argument
/frameworks/base/core/java/android/app/prediction/
DAppTargetEvent.java68 @ActionType int actionType) { in AppTargetEvent() argument
71 mAction = actionType; in AppTargetEvent()
151 public Builder(@Nullable AppTarget target, @ActionType int actionType) { in Builder() argument
153 mAction = actionType; in Builder()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/classifier/
DClassifierTest.java105 private MotionEvent appendMotionEvent(int actionType, float x, float y) { in appendMotionEvent() argument
109 return appendMotionEvent(actionType, x, y, eventTime); in appendMotionEvent()
112 private MotionEvent appendMotionEvent(int actionType, float x, float y, long eventTime) { in appendMotionEvent() argument
116 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/packages/SystemUI/shared/src/com/android/systemui/shared/recents/
DIOverviewProxy.aidl50 void onTip(int actionType, int viewType) = 10; in onTip() argument
/frameworks/base/core/java/android/app/slice/
DSliceMetrics.java86 public void logTouch(int actionType, @NonNull Uri subSlice) { in logTouch() argument
/frameworks/base/core/java/android/widget/
DEditor.java5629 final int actionType = ev.getActionMasked(); in touchThrough() local
5630 switch (actionType) { in touchThrough()
5650 if (actionType == MotionEvent.ACTION_UP || actionType == MotionEvent.ACTION_CANCEL) { in touchThrough()
5668 if (!mOffsetChanged && actionType == MotionEvent.ACTION_UP) { in touchThrough()