Home
last modified time | relevance | path

Searched refs:LaunchableView (Results 1 – 15 of 15) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
H A DViewDialogLaunchAnimatorController.kt41 (source as? LaunchableView)?.setShouldBlockVisibilityChanges(true)
52 if (source is LaunchableView) {
78 if (source is LaunchableView) {
103 if (source is LaunchableView) {
H A DLaunchableView.kt22 interface LaunchableView { regex
52 ) : LaunchableView {
H A DGhostedViewLaunchAnimatorController.kt106 if (ghostedView !is LaunchableView) {
223 (ghostedView as? LaunchableView)?.setShouldBlockVisibilityChanges(true)
325 if (ghostedView is LaunchableView) {
H A DDialogLaunchAnimator.kt166 if (source !is LaunchableView) {
618 if (viewGroupWithBackground !is LaunchableView) {
H A DActivityLaunchAnimator.kt389 if (view !is LaunchableView) {
/aosp14/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/view/
H A DLaunchableTextView.kt23 import com.android.systemui.animation.LaunchableView
27 open class LaunchableTextView : TextView, LaunchableView {
H A DLaunchableFrameLayout.kt22 import com.android.systemui.animation.LaunchableView
26 open class LaunchableFrameLayout : FrameLayout, LaunchableView {
H A DLaunchableImageView.kt23 import com.android.systemui.animation.LaunchableView
27 open class LaunchableImageView : ImageView, LaunchableView {
H A DLaunchableLinearLayout.kt22 import com.android.systemui.animation.LaunchableView
26 open class LaunchableLinearLayout : LinearLayout, LaunchableView {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/common/ui/view/
H A DLaunchableConstraintLayout.kt22 import com.android.systemui.animation.LaunchableView
26 open class LaunchableConstraintLayout : ConstraintLayout, LaunchableView {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DAlphaOptimizedButton.java23 import com.android.systemui.animation.LaunchableView;
31 public class AlphaOptimizedButton extends Button implements LaunchableView {
H A DAlphaOptimizedFrameLayout.java23 import com.android.systemui.animation.LaunchableView;
32 public class AlphaOptimizedFrameLayout extends FrameLayout implements LaunchableView
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/util/animation/
H A DTransitionLayout.kt30 import com.android.systemui.animation.LaunchableView
43 ) : ConstraintLayout(context, attrs, defStyleAttr), LaunchableView {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
H A DQSTileViewImpl.kt48 import com.android.systemui.animation.LaunchableView
63 ) : QSTileView(context), HeightOverrideable, LaunchableView {
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/
H A DDialogLaunchAnimatorTest.kt328 private class TouchSurfaceView(context: Context) : FrameLayout(context), LaunchableView {