Home
last modified time | relevance | path

Searched refs:scrimView (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/unfold/
DFullscreenLightRevealAnimation.kt84 private var scrimView: LightRevealScrim? = null variable in com.android.systemui.unfold.FullscreenLightRevealAnimationController
140 scrimView = null in ensureOverlayRemoved()
145 return scrimView == null in isOverlayVisible()
149 scrimView?.revealAmount = revealAmount in updateRevealAmount()
203 scrimView = newView in prepareOverlay()
245 scrimView?.revealEffect = lightRevealEffectFactory(currentRotation) in onRotationChanged()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/bar/
DBubbleEducationViewController.kt59 private val scrimView by lazy { in <lambda>() constant
121 root.addView(scrimView) in showStackEducation()
160 root.addView(scrimView) in showManageEducation()
188 rootView?.removeView(scrimView) in cleanUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DScrimController.java1348 ScrimView scrimView = (ScrimView) scrim; in updateScrimColor() local
1350 tint = getDebugScrimTint(scrimView); in updateScrimColor()
1353 Trace.traceCounter(Trace.TRACE_TAG_APP, getScrimName(scrimView) + "_alpha", in updateScrimColor()
1356 Trace.traceCounter(Trace.TRACE_TAG_APP, getScrimName(scrimView) + "_tint", in updateScrimColor()
1358 scrimView.setTint(tint); in updateScrimColor()
1360 scrimView.setViewAlpha(alpha); in updateScrimColor()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DScrimControllerTest.java223 private void endAnimation(View scrimView) { in endAnimation() argument
224 Animator animator = getAnimator(scrimView); in endAnimation()
230 private Animator getAnimator(View scrimView) { in getAnimator() argument
231 return (Animator) scrimView.getTag(ScrimController.TAG_KEY_ANIM); in getAnimator()
2126 scrimToAlpha.forEach((scrimView, alpha) -> assertScrimAlpha(scrimView, alpha)); in assertScrimAlpha()