Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/ui/controller/
DMediaViewController.kt716 val loadingEffectView = mediaViewHolder.loadingEffectView in <lambda>() constant
720 loadingEffectView.draw(paint) in <lambda>()
730 loadingEffectView.visibility = View.INVISIBLE in <lambda>()
732 loadingEffectView.visibility = View.VISIBLE in <lambda>()
810 it.loadingEffectView, in <lambda>()
1191 loadingEffectView: LoadingEffectView, in <lambda>()
1197 loadingEffectView in <lambda>()
DMediaControlPanel.java254 LoadingEffectView loadingEffectView =
257 loadingEffectView.setVisibility(View.INVISIBLE);
259 loadingEffectView.setVisibility(View.VISIBLE);
467 LoadingEffectView loadingEffectView = vh.getLoadingEffectView(); in attachPlayer() local
468 loadingEffectView.setBlendMode(BlendMode.SCREEN); in attachPlayer()
469 loadingEffectView.setVisibility(View.INVISIBLE); in attachPlayer()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/controls/ui/controller/
DMediaViewControllerTest.kt87 private lateinit var loadingEffectView: LoadingEffectView in <lambda>() variable in com.android.systemui.media.controls.ui.controller.MediaViewControllerTest
506 loadingEffectView = LoadingEffectView(context, null) in <lambda>()
535 whenever(viewHolder.loadingEffectView).thenReturn(loadingEffectView) in <lambda>()
DMediaControlPanelTest.kt191 private lateinit var loadingEffectView: LoadingEffectView variable in com.android.systemui.media.controls.ui.controller.MediaControlPanelTest
370 loadingEffectView = LoadingEffectView(context, null) in initMediaViewHolderMocks()
416 whenever(viewHolder.loadingEffectView).thenReturn(loadingEffectView) in initMediaViewHolderMocks()
1669 assertThat(loadingEffectView.visibility).isEqualTo(View.INVISIBLE) in playTurbulenceNoise_finishesAfterDuration()
1677 assertThat(loadingEffectView.visibility).isEqualTo(View.INVISIBLE) in playTurbulenceNoise_finishesAfterDuration()
1701 assertThat(loadingEffectView.visibility).isEqualTo(View.VISIBLE) in playTurbulenceNoise_newLoadingEffect_finishesAfterDuration()
1709 assertThat(loadingEffectView.visibility).isEqualTo(View.INVISIBLE) in playTurbulenceNoise_newLoadingEffect_finishesAfterDuration()
1733 assertThat(loadingEffectView.visibility).isEqualTo(View.INVISIBLE) in playTurbulenceNoise_whenPlaybackStateIsNotPlaying_doesNotPlayTurbulence()
1755 assertThat(loadingEffectView.visibility).isEqualTo(View.INVISIBLE) in playTurbulenceNoise_newLoadingEffect_whenPlaybackStateIsNotPlaying_doesNotPlayTurbulence()
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/ui/view/
DMediaViewHolder.kt50 val loadingEffectView = itemView.requireViewById<LoadingEffectView>(R.id.loading_effect_view) constant
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/ui/binder/
DMediaControlViewBinder.kt126 loadingEffectView.setBlendMode(BlendMode.SCREEN) in <lambda>()
127 loadingEffectView.visibility = View.INVISIBLE in <lambda>()