Home
last modified time | relevance | path

Searched refs:isTranslucent (Results 1 – 25 of 29) sorted by relevance

12

/frameworks/base/core/java/android/view/
DRemoteAnimationTarget.java114 public final boolean isTranslucent; field in RemoteAnimationTarget
253 public RemoteAnimationTarget(int taskId, int mode, SurfaceControl leash, boolean isTranslucent, in RemoteAnimationTarget() argument
260 this(taskId, mode, leash, isTranslucent, clipRect, contentInsets, prefixOrderIndex, in RemoteAnimationTarget()
265 public RemoteAnimationTarget(int taskId, int mode, SurfaceControl leash, boolean isTranslucent, in RemoteAnimationTarget() argument
275 this.isTranslucent = isTranslucent; in RemoteAnimationTarget()
299 isTranslucent = in.readBoolean(); in RemoteAnimationTarget()
351 dest.writeBoolean(isTranslucent); in writeToParcel()
376 pw.print(" isTranslucent="); pw.print(isTranslucent); in dump()
401 proto.write(IS_TRANSLUCENT, isTranslucent); in dumpDebug()
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/model/
DThumbnailData.java47 public boolean isTranslucent; field in ThumbnailData
62 isTranslucent = false; in ThumbnailData()
115 isTranslucent = snapshot.isTranslucent(); in ThumbnailData()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DRootTaskTests.java488 doReturn(false).when(fullscreenRootTask).isTranslucent(any()); in testShouldBeVisible_Fullscreen()
494 doReturn(true).when(fullscreenRootTask).isTranslucent(any()); in testShouldBeVisible_Fullscreen()
517 doReturn(false).when(organizer.mPrimary).isTranslucent(any()); in testShouldBeVisible_SplitScreen()
518 doReturn(false).when(organizer.mSecondary).isTranslucent(any()); in testShouldBeVisible_SplitScreen()
519 doReturn(false).when(splitScreenPrimary).isTranslucent(any()); in testShouldBeVisible_SplitScreen()
520 doReturn(false).when(splitScreenSecondary).isTranslucent(any()); in testShouldBeVisible_SplitScreen()
529 doReturn(true).when(splitScreenPrimary).isTranslucent(any()); in testShouldBeVisible_SplitScreen()
541 doReturn(false).when(splitScreenSecondary2).isTranslucent(any()); in testShouldBeVisible_SplitScreen()
554 doReturn(true).when(splitScreenSecondary2).isTranslucent(any()); in testShouldBeVisible_SplitScreen()
569 doReturn(false).when(assistantRootTask).isTranslucent(any()); in testShouldBeVisible_SplitScreen()
[all …]
DTaskSnapshotPersisterLoaderTest.java356 assertTrue(a.isTranslucent()); in testIsTranslucentPersistAndLoadSnapshot()
357 assertFalse(b.isTranslucent()); in testIsTranslucentPersistAndLoadSnapshot()
367 assertTrue(snapshotA.isTranslucent()); in testIsTranslucentPersistAndLoadSnapshot()
368 assertFalse(snapshotB.isTranslucent()); in testIsTranslucentPersistAndLoadSnapshot()
DTaskSnapshotPersisterTestBase.java179 TaskSnapshotBuilder setIsTranslucent(boolean isTranslucent) { in setIsTranslucent() argument
180 mIsTranslucent = isTranslucent; in setIsTranslucent()
DRemoteAnimationControllerTest.java190 assertEquals(false, app.isTranslucent); in testRun()
386 assertEquals(false, app.isTranslucent); in testChangeToSmallerSize()
440 assertEquals(false, app.isTranslucent); in testChangeTolargerSize()
494 assertEquals(false, app.isTranslucent); in testChangeToDifferentPosition()
617 assertEquals(false, app.isTranslucent); in testNonAppIncluded_keygaurdGoingAway()
DTaskSnapshotControllerTest.java182 assertTrue(snapshot.isTranslucent()); in testSnapshotBuilder()
DTransitionTests.java629 doReturn(false).when(newTask).isTranslucent(any()); in testOpenOpaqueTask()
631 doReturn(false).when(oldTask).isTranslucent(any()); in testOpenOpaqueTask()
670 doReturn(true).when(newTask).isTranslucent(any()); in testOpenTranslucentTask()
672 doReturn(false).when(oldTask).isTranslucent(any()); in testOpenTranslucentTask()
DWindowOrganizerTests.java589 assertFalse(rootTask.isTranslucent(activity)); in testContainerTranslucentChanges()
592 assertTrue(rootTask.isTranslucent(activity)); in testContainerTranslucentChanges()
595 assertFalse(rootTask.isTranslucent(activity)); in testContainerTranslucentChanges()
DTaskFragmentTest.java251 doReturn(true).when(mTaskFragment).isTranslucent(any()); in testActivityVisibilityBehindTranslucentTaskFragment()
DTaskTests.java1450 doReturn(true).when(tfFront).isTranslucent(any()); in testResumeTask_doNotResumeTaskFragmentBehindTranslucent()
DActivityRecordTests.java791 doReturn(false).when(stack).isTranslucent(any()); in testPushConfigurationWhenLaunchTaskBehind()
/frameworks/base/core/java/android/window/
DTaskSnapshot.java73 @WindowInsetsController.Appearance int appearance, boolean isTranslucent, in TaskSnapshot() argument
89 mIsTranslucent = isTranslucent; in TaskSnapshot()
214 public boolean isTranslucent() {
378 public Builder setIsTranslucent(boolean isTranslucent) {
379 mIsTranslucent = isTranslucent;
/frameworks/base/services/core/java/com/android/server/wm/
DEnsureActivitiesVisibleHelper.java116 && !childTaskFragment.isTranslucent(starting)); in process()
127 if (!childTaskFragment.isTranslucent(starting) in process()
128 && !childTaskFragment.getAdjacentTaskFragment().isTranslucent( in process()
DTaskSnapshotLoader.java162 options.inPreferredConfig = mPersister.use16BitFormat() && !proto.isTranslucent in loadTask()
202 proto.appearance, proto.isTranslucent, false /* hasImeSurface */); in loadTask()
DTaskSnapshotPersister.java390 proto.isTranslucent = mSnapshot.isTranslucent(); in writeProto()
DTaskFragment.java909 boolean isTranslucent(ActivityRecord starting) { in isTranslucent() method in TaskFragment
1093 if (isTranslucent(other, starting)) { in getVisibility()
1101 if (isTranslucent(other, starting)) { in getVisibility()
1113 if (otherTaskFrag.isTranslucent(starting) in getVisibility()
1114 || otherTaskFrag.mAdjacentTaskFragment.isTranslucent(starting)) { in getVisibility()
1146 private static boolean isTranslucent(WindowContainer wc, ActivityRecord starting) { in isTranslucent() method in TaskFragment
1148 return wc.asTaskFragment().isTranslucent(starting); in isTranslucent()
DTaskSnapshotController.java334 final boolean isTranslucent = PixelFormat.formatHasAlpha(pixelFormat)
339 builder.setIsTranslucent(isTranslucent);
DTransition.java1347 private static boolean isTranslucent(@NonNull WindowContainer wc) { in isTranslucent() method in Transition
1350 if (taskFragment.isTranslucent(null /* starting */)) { in isTranslucent()
1357 return adjacentTaskFragment.isTranslucent(null /* starting */); in isTranslucent()
2024 if (isTranslucent(wc)) { in getChangeFlags()
DTask.java3299 if (!isRootTask() || isTranslucent(null)) {
3801 sb.append(isTranslucent(null /* starting */));
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shared/system/
DRemoteTransitionTest.java128 assertTrue(wrapped.isTranslucent);
/frameworks/base/core/java/android/content/pm/
DActivityInfo.java1915 final boolean isTranslucent = in isTranslucentOrFloating()
1922 return isFloating || isTranslucent; in isTranslucentOrFloating()
/frameworks/base/core/java/com/android/internal/policy/
DDecorView.java988 mWindow.isTranslucent() || mWindow.isShowingWallpaper());
992 mWindow.isTranslucent() || mWindow.isShowingWallpaper());
1341 mBackgroundBlurRadius = mCrossWindowBlurEnabled && mWindow.isTranslucent() in updateBackgroundBlurRadius()
2232 mWindow.mBackgroundFallbackDrawable, mWindow.isTranslucent() in loadBackgroundDrawablesIfNeeded()
2475 || mWindow.isTranslucent() in drawResizingShadowIfNeeded()
DPhoneWindow.java569 public boolean isTranslucent() { in isTranslucent() method in PhoneWindow
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/transition/
DDefaultTransitionHandler.java409 final boolean isTranslucent = (change.getFlags() & FLAG_TRANSLUCENT) != 0; in startAnimation()
410 if (isOpenOrCloseTransition && !isTranslucent in startAnimation()

12