Searched refs:sToast (Results 1 - 2 of 2) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/widget/toast/
H A DToastManager.java23 private static Toast sToast = null; field in class:ToastManager
30 if (sToast != null)
31 sToast.cancel();
32 sToast = toast;
36 if (sToast != null)
37 sToast.cancel();
38 sToast = null;
/packages/apps/TV/src/com/android/tv/util/
H A DToastUtils.java29 private static WeakReference<Toast> sToast; field in class:ToastUtils
36 if (sToast != null && sToast.get() != null) {
37 sToast.get().cancel();
41 sToast = new WeakReference<>(toast);

Completed in 100 milliseconds