Searched defs:mDisclosure (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DKeyguardIndicationControllerTest.java59 private KeyguardIndicationTextView mDisclosure = mock(KeyguardIndicationTextView.class); field in class:KeyguardIndicationControllerTest
76 .thenReturn(mDisclosure);
93 verify(mDisclosure).setVisibility(View.GONE);
94 verifyNoMoreInteractions(mDisclosure);
103 verify(mDisclosure).setVisibility(View.VISIBLE);
104 verify(mDisclosure).switchIndication(R.string.do_disclosure_generic);
105 verifyNoMoreInteractions(mDisclosure);
114 verify(mDisclosure).setVisibility(View.VISIBLE);
115 verify(mDisclosure).switchIndication(mDisclosureWithOrganization);
116 verifyNoMoreInteractions(mDisclosure);
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DKeyguardIndicationController.java70 private KeyguardIndicationTextView mDisclosure; field in class:KeyguardIndicationController
119 mDisclosure = (KeyguardIndicationTextView) indicationArea.findViewById(
172 mDisclosure.switchIndication(mContext.getResources().getString(
175 mDisclosure.switchIndication(R.string.do_disclosure_generic);
177 mDisclosure.setVisibility(View.VISIBLE);
179 mDisclosure.setVisibility(View.GONE);

Completed in 72 milliseconds