Home
last modified time | relevance | path

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

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