Home
last modified time | relevance | path

Searched refs:clockView (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DClockTest.kt37 private lateinit var clockView: Clock variable in com.android.systemui.statusbar.policy.ClockTest
46 clockView = Clock(context, null) in setUp()
47 container.addView(clockView) in setUp()
55 clockView.text = ONE_3 in testWidthDoesNotDecrease_sameCharLength()
57 val width1 = clockView.measuredWidth in testWidthDoesNotDecrease_sameCharLength()
60 clockView.text = ZERO_3 in testWidthDoesNotDecrease_sameCharLength()
62 val width2 = clockView.measuredWidth in testWidthDoesNotDecrease_sameCharLength()
71 clockView.text = ZERO_3 in testWidthDoesNotDecrease_narrowerFont_sameNumberOfChars()
73 val width1 = clockView.measuredWidth in testWidthDoesNotDecrease_narrowerFont_sameNumberOfChars()
76 clockView.text = ONE_3 in testWidthDoesNotDecrease_narrowerFont_sameNumberOfChars()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shared/clocks/
DAnimatableClockViewTest.kt43 private lateinit var clockView: AnimatableClockView in <lambda>() variable in com.android.systemui.shared.clocks.AnimatableClockViewTest
48 clockView = in <lambda>()
50 clockView.textAnimatorFactory = { _, _ -> mockTextAnimator } in <lambda>()
55 clockView.setColors(100, 200) in <lambda>()
56 clockView.animateAppearOnLockscreen() in <lambda>()
57 clockView.measure(50, 50) in <lambda>()
77 clockView.setColors(100, 200) in <lambda>()
78 clockView.measure(50, 50) in <lambda>()
79 clockView.animateAppearOnLockscreen() in <lambda>()
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
DStatusBar.java81 TextView clockView = null; in StatusBar() local
88 clockView = (TextView) child; in StatusBar()
92 if (icons.size() != 2 || clockView == null) { in StatusBar()
104 clockView.setText(Config.getTime(simulatedPlatformVersion)); in StatusBar()
105 clockView.setTextColor(Config.getTimeColor(simulatedPlatformVersion)); in StatusBar()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarDemoMode.java62 Clock clockView, in StatusBarDemoMode() argument
68 super(clockView); in StatusBarDemoMode()
69 mClockView = clockView; in StatusBarDemoMode()
DHeadsUpAppearanceController.java124 Clock clockView, in HeadsUpAppearanceController() argument
143 mClockView = clockView; in HeadsUpAppearanceController()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/preview/
DKeyguardPreviewRenderer.kt81 private var clockView: View? = null variable
212 clockView?.let { parentView.removeView(it) } in onClockChanged()
213 clockView = in onClockChanged()
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DNotificationPanelViewController.java1610 View clockView = clockContainerView.getChildAt(0); in updateKeyguardStatusViewAlignment() local
1612 transition.excludeTarget(clockView, /* exclude= */ true); in updateKeyguardStatusViewAlignment()
1623 adapter.addTarget(clockView); in updateKeyguardStatusViewAlignment()