Home
last modified time | relevance | path

Searched refs:launchOptions (Results 1 – 11 of 11) sorted by relevance

/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/f32/
DRefocusFilterF32.java154 Script.LaunchOptions launchOptions = new Script.LaunchOptions(); in filterLayerBehindFocalDepth() local
155 launchOptions.setX(0, 1); in filterLayerBehindFocalDepth()
156 launchOptions.setY(0, buffers.inputImage.getHeight()); in filterLayerBehindFocalDepth()
160 buffers.inAllocation, launchOptions); in filterLayerBehindFocalDepth()
214 Script.LaunchOptions launchOptions = new Script.LaunchOptions(); in filterLayerInFrontOfFocalDepth() local
215 launchOptions.setX(0, 1); in filterLayerInFrontOfFocalDepth()
216 launchOptions.setY(0, buffers.inputImage.getHeight()); in filterLayerInFrontOfFocalDepth()
220 buffers.inAllocation, launchOptions); in filterLayerInFrontOfFocalDepth()
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/d1new/
DRefocusFilterd1new.java161 Script.LaunchOptions launchOptions = new Script.LaunchOptions(); in filterLayerBehindFocalDepth() local
162 launchOptions.setX(0, 1); in filterLayerBehindFocalDepth()
163 launchOptions.setY(0, buffers.inputImage.getHeight()); in filterLayerBehindFocalDepth()
167 buffers.inAllocation, launchOptions); in filterLayerBehindFocalDepth()
232 Script.LaunchOptions launchOptions = new Script.LaunchOptions(); in filterLayerInFrontOfFocalDepth() local
233 launchOptions.setX(0, 1); in filterLayerInFrontOfFocalDepth()
234 launchOptions.setY(0, buffers.inputImage.getHeight()); in filterLayerInFrontOfFocalDepth()
238 buffers.inAllocation, launchOptions); in filterLayerInFrontOfFocalDepth()
/frameworks/base/packages/SystemUI/src/com/android/systemui/communal/util/
DInteractionHandlerDelegate.kt52 val launchOptions = response.getLaunchOptions(view) in onInteraction() constant
61 val (fillInIntent, activityOptions) = launchOptions in onInteraction()
70 else -> RemoteViews.startPendingIntent(view, pendingIntent, launchOptions) in onInteraction()
/frameworks/opt/car/services/updatableServices/src/com/android/server/wm/
DCarDisplayCompatActivityInterceptor.java146 ActivityOptionsWrapper launchOptions = info.getCheckedOptions(); in onInterceptActivityLaunch() local
147 if (launchOptions == null) { in onInterceptActivityLaunch()
148 launchOptions = EMPTY_LAUNCH_OPTIONS_WRAPPER; in onInterceptActivityLaunch()
156 intent.putExtra(LAUNCH_ACTIVITY_OPTIONS, launchOptions.getOptions().toBundle()); in onInterceptActivityLaunch()
161 int launchDisplayId = launchOptions.getOptions().getLaunchDisplayId(); in onInterceptActivityLaunch()
DCarLaunchOnPrivateDisplayActivityInterceptor.java147 ActivityOptionsWrapper launchOptions = info.getCheckedOptions(); in onInterceptActivityLaunch() local
148 if (launchOptions == null) { in onInterceptActivityLaunch()
149 launchOptions = EMPTY_LAUNCH_OPTIONS_WRAPPER; in onInterceptActivityLaunch()
166 if (launchOptions.getOptions() != null) { in onInterceptActivityLaunch()
167 intent.putExtra(LAUNCH_ACTIVITY_OPTIONS, launchOptions.getOptions().toBundle()); in onInterceptActivityLaunch()
171 return ActivityInterceptResultWrapper.create(intent, launchOptions.getOptions()); in onInterceptActivityLaunch()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DWorkLockActivity.java201 final ActivityOptions launchOptions = ActivityOptions.makeBasic(); in showConfirmCredentialActivity() local
202 launchOptions.setLaunchTaskId(getTaskId()); in showConfirmCredentialActivity()
203 launchOptions.setTaskOverlay(true /* taskOverlay */, true /* canResume */); in showConfirmCredentialActivity()
208 launchOptions.toBundle()); in showConfirmCredentialActivity()
/frameworks/base/libs/WindowManager/Jetpack/src/androidx/window/extensions/embedding/
DTaskFragmentContainer.java211 @Nullable Bundle launchOptions, @Nullable Activity associatedActivity) { in TaskFragmentContainer() argument
224 if (launchOptions != null) { in TaskFragmentContainer()
225 mLaunchOptions.putAll(launchOptions); in TaskFragmentContainer()
264 launchOptions, pendingAppearedIntent); in TaskFragmentContainer()
1167 Builder setLaunchOptions(@Nullable Bundle launchOptions) { in setLaunchOptions() argument
1168 mLaunchOptions = launchOptions; in setLaunchOptions()
DSplitController.java1736 @Nullable Bundle launchOptions, boolean associateLaunchingActivity) { in createEmptyContainer() argument
1756 .setLaunchOptions(launchOptions) in createEmptyContainer()
/frameworks/base/libs/WindowManager/Jetpack/tests/unittest/src/androidx/window/extensions/embedding/
DOverlayPresentationTest.java878 final Bundle launchOptions = new Bundle(); in createOrUpdateOverlayTaskFragmentIfNeeded() local
879 launchOptions.putString(KEY_OVERLAY_TAG, tag); in createOrUpdateOverlayTaskFragmentIfNeeded()
889 final Bundle launchOptions = new Bundle(); in createOrUpdateOverlayTaskFragmentIfNeeded() local
890 launchOptions.putString(KEY_OVERLAY_TAG, tag); in createOrUpdateOverlayTaskFragmentIfNeeded()
892 launchOptions, mIntent, activity); in createOrUpdateOverlayTaskFragmentIfNeeded()
/frameworks/base/core/java/android/window/
DWindowContainerTransaction.java1957 Builder setLaunchOptions(@Nullable Bundle launchOptions) { in setLaunchOptions() argument
1958 mLaunchOptions = launchOptions; in setLaunchOptions()
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/desktopmode/
DDesktopTasksControllerTest.kt1853 assertThat(op.launchOptions?.getInt(LAUNCH_KEY_TASK_ID)).isEqualTo(taskId) in WindowContainerTransaction()
1854 assertThat(op.launchOptions?.getInt(keyLaunchWindowingMode, WINDOWING_MODE_UNDEFINED)) in WindowContainerTransaction()