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.kt22 private var sToast: Toast? = null variable
26 sToast?.cancel() in setToast()
27 sToast = toast in setToast()
32 sToast?.cancel() in cancelToast()
33 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()