Searched refs:mToast (Results 1 – 4 of 4) sorted by relevance
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/toast/ |
H A D | ToastUI.java | 72 @VisibleForTesting SystemUIToast mToast; field in ToastUI 131 mToast.getInAnimation().start(); in showToast() 140 mPresenter.show(mToast.getView(), token, windowToken, duration, mToast.getGravity(), in showToast() 141 mToast.getXOffset(), mToast.getYOffset(), mToast.getHorizontalMargin(), in showToast() 142 mToast.getVerticalMargin(), mCallback, mToast.hasCustomAnimation()); in showToast() 172 if (mToast.getOutAnimation() != null) { in hideCurrentToast() 184 mToast = null; in hideCurrentToast() 193 if (mToast != null) { in onConfigurationChanged() 198 mToast.getXOffset(), in onConfigurationChanged() 199 mToast.getYOffset(), in onConfigurationChanged() [all …]
|
/aosp14/frameworks/base/tests/SystemUIDemoModeController/src/com/example/android/demomodecontroller/ |
H A D | DemoModeController.java | 49 private Toast mToast; field in DemoModeController 83 mToast = Toast.makeText(mContext, R.string.help_text, Toast.LENGTH_LONG); in onResume() 84 mToast.show(); in onResume() 89 if (mToast != null) { in onTouch() 90 mToast.cancel(); in onTouch() 91 mToast = null; in onTouch()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/toast/ |
H A D | ToastUITest.java | 248 final SystemUIToast toast = mToastUI.mToast; in testHideToast_removesView() 264 final SystemUIToast toast = mToastUI.mToast; in testHideToast_finishesToken() 280 final SystemUIToast toast = mToastUI.mToast; in testHideToast_callsCallback() 296 final SystemUIToast toast = mToastUI.mToast; in testHideToast_whenNotCurrentToastToken_doesNotHideToast() 312 final SystemUIToast toast = mToastUI.mToast; in testHideToast_whenNotCurrentToastPackage_doesNotHideToast() 328 final SystemUIToast toast = mToastUI.mToast; in testShowToast_afterShowToast_hidesCurrentToast() 366 assertThat(((TextView) mToastUI.mToast.getView() in testShowToast_targetsPreS_unlimitedLines_noAppIcon() 385 assertThat(((TextView) mToastUI.mToast.getView() in testShowToast_targetsS_twoLineLimit_noAppIcon() 403 assertThat(mToastUI.mToast).isNull(); in testHideToast_error_noLog()
|
/aosp14/frameworks/base/core/tests/coretests/src/com/android/internal/accessibility/ |
H A D | AccessibilityShortcutControllerTest.java | 122 private @Mock Toast mToast; field in AccessibilityShortcutControllerTest 166 .thenReturn(mToast); in setUp() 196 when(mToast.getWindowParams()).thenReturn(mLayoutParams); in setUp() 366 verify(mToast).show(); in testOnAccessibilityShortcut_withDialogShowing_callsServer() 442 verify(mToast).show(); in testOnAccessibilityShortcut_afterDialogShown_shouldCallServer() 513 verifyZeroInteractions(mToast); in testOnAccessibilityShortcut_forFrameworkFeature_callsServiceWithNoToast() 528 verifyZeroInteractions(mToast); in testOnAccessibilityShortcut_sdkGreaterThanQ_reqA11yButton_callsServiceWithNoToast()
|