Home
last modified time | relevance | path

Searched refs:getLaunchIntent (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/draganddrop/
DDragUtils.java49 && getLaunchIntent(event) != null) { in canHandleDrag()
70 public static PendingIntent getLaunchIntent(@NonNull DragEvent dragEvent) { in getLaunchIntent() method in DragUtils
71 return getLaunchIntent(dragEvent.getClipData(), dragEvent.getDragFlags()); in getLaunchIntent()
78 public static PendingIntent getLaunchIntent(@NonNull ClipData data, int dragFlags) { in getLaunchIntent() method in DragUtils
DDragSession.java99 launchableIntent = DragUtils.getLaunchIntent(mInitialDragData, mInitialDragFlags); in update()
DDragAndDropController.java384 final PendingIntent launchIntent = DragUtils.getLaunchIntent(dragEvent); in onUnhandledDrop()
/frameworks/base/apct-tests/perftests/contentcapture/src/android/view/contentcapture/
DLoginTest.java113 final Intent intent = getLaunchIntent(layoutId, numViews); in testActivityLaunchTime()
144 final Intent intent = getLaunchIntent(layoutId, numViews); in testSendEventLatency()
DAbstractContentCapturePerfTestCase.java271 protected Intent getLaunchIntent(int layoutId, int numViews) { in getLaunchIntent() method in AbstractContentCapturePerfTestCase
286 final Intent intent = getLaunchIntent(layoutId, numViews); in launchActivity()
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/draganddrop/
DDragAndDropPolicyTest.java264 when(DragUtils.getLaunchIntent((ClipData) any(), anyInt())).thenReturn( in testDragIntentOverFullscreenHome_expectOnlyFullscreenTarget()
271 when(DragUtils.getLaunchIntent((ClipData) any(), anyInt())).thenReturn( in testDragIntentOverFullscreenApp_expectSplitScreenTargets()
278 when(DragUtils.getLaunchIntent((ClipData) any(), anyInt())).thenReturn( in testDragIntentOverFullscreenAppPhone_expectVerticalSplitScreenTargets()
358 assertTrue(DragUtils.getLaunchIntent(mLaunchableIntentClipData, 0) == null); in testDisallowLaunchIntentWithoutDelegationFlag()