HomeSort by relevance Sort by last modified time
    Searched refs:sToast (Results 1 - 2 of 2) sorted by null

  /packages/apps/DeskClock/src/com/android/deskclock/widget/toast/
ToastManager.java 23 private static Toast sToast = null;
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/
ToastUtils.java 29 private static WeakReference<Toast> sToast;
36 if (sToast != null && sToast.get() != null) {
37 sToast.get().cancel();
41 sToast = new WeakReference<>(toast);

Completed in 94 milliseconds