Home
last modified time | relevance | path

Searched refs:switchIndication (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/
H A DKeyguardIndicationRotateTextViewControllerTest.java161 verify(mView).switchIndication(indication); in testShowOneIndication()
180 verify(mView, never()).switchIndication(indication2); in testShowTwoRotatingMessages()
199 verify(mView).switchIndication(indication2); in testUpdateCurrentMessage()
245 verify(mView).switchIndication(indication4); in testUpdateImmediately()
258 verify(mView).switchIndication(indication5); in testUpdateImmediately()
306 verify(mView).switchIndication(indication); in testHideIndicationOneMessage()
313 verify(mView).switchIndication(null); in testHideIndicationOneMessage()
331 verify(mView).switchIndication(indication2); in testHideIndicationTwoMessages()
345 verify(mView).switchIndication(null); in testStartDozing()
362 verify(mView).switchIndication(indication); in testStoppedDozing()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardIndicationTextView.java87 public void switchIndication(int textResId) { in switchIndication() method in KeyguardIndicationTextView
88 switchIndication(getResources().getText(textResId), null); in switchIndication()
96 public void switchIndication(KeyguardIndication indication) { in switchIndication() method in KeyguardIndicationTextView
97 switchIndication(indication == null ? null : indication.getMessage(), indication); in switchIndication()
103 public void switchIndication(CharSequence text, KeyguardIndication indication) { in switchIndication() method in KeyguardIndicationTextView
104 switchIndication(text, indication, true, null); in switchIndication()
128 public void switchIndication(CharSequence text, KeyguardIndication indication, in switchIndication() method in KeyguardIndicationTextView
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DKeyguardIndicationTextViewTest.java57 mKeyguardIndicationTextView.switchIndication(null /* text */, null); in switchIndication_null_hideIndication()
80 mKeyguardIndicationTextView.switchIndication("" /* text */, null); in switchIndication_emptyText_hideIndication()
87 mKeyguardIndicationTextView.switchIndication("test_indication" /* text */, null); in switchIndication_newText_updateProperly()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardIndicationRotateTextViewController.java284 mView.switchIndication(mIndicationMessages.get(type)); in showIndication()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DKeyguardIndicationController.java937 mTopIndicationView.switchIndication(newIndication, in updateDeviceEntryIndication()