Home
last modified time | relevance | path

Searched refs:ToastUI (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/tv/
H A DTVSystemUICoreStartableModule.kt36 import com.android.systemui.toast.ToastUI
121 @ClassKey(ToastUI::class)
122 abstract fun bindToastUI(service: ToastUI): CoreStartable
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/toast/
H A DToastUI.java54 public class ToastUI implements CoreStartable, CommandQueue.Callbacks { class
76 public ToastUI( in ToastUI() method in ToastUI
91 ToastUI(Context context, CommandQueue commandQueue, INotificationManager notificationManager, in ToastUI() method in ToastUI
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/dagger/
H A DSystemUICoreStartableModule.kt61 import com.android.systemui.toast.ToastUI
231 @ClassKey(ToastUI::class)
232 abstract fun bindToastUI(service: ToastUI): CoreStartable
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/toast/
H A DToastUITest.java104 private ToastUI mToastUI;
131 mToastUI = new ToastUI( in setUp()