Home
last modified time | relevance | path

Searched refs:mLargeClockView (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardClockSwitch.java63 private AnimatableClockView mLargeClockView; field in KeyguardClockSwitch
100 mLargeClockView.setTextSize(TypedValue.COMPLEX_UNIT_PX, mContext.getResources() in onDensityOrFontScaleChanged()
126 mLargeClockView = findViewById(R.id.animatable_clock_view_large); in onFinishInflate()
148 mLargeClockView.setVisibility(View.VISIBLE); in setClockPlugin()
162 mLargeClockView.setVisibility(View.GONE); in setClockPlugin()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
H A DKeyguardClockSwitchTest.java65 private AnimatableClockView mLargeClockView; field in KeyguardClockSwitchTest
98 mLargeClockView = mKeyguardClockSwitch.findViewById(R.id.animatable_clock_view_large); in setUp()
125 assertThat(mLargeClockView.getVisibility()).isEqualTo(View.GONE); in onPluginConnected_showPluginBigClock()
188 assertThat(mLargeClockView.getVisibility()).isEqualTo(VISIBLE); in onPluginDisconnected_hidePluginBigClock()
H A DKeyguardClockSwitchControllerTest.java112 private AnimatableClockView mLargeClockView; field in KeyguardClockSwitchControllerTest
136 when(mView.findViewById(R.id.animatable_clock_view_large)).thenReturn(mLargeClockView); in setup()
139 when(mLargeClockView.getContext()).thenReturn(getContext()); in setup()