Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/toast/
DToastUI.java47 public class ToastUI extends SystemUI implements CommandQueue.Callbacks { class
59 public ToastUI(Context context, CommandQueue commandQueue) { in ToastUI() method in ToastUI
68 ToastUI(Context context, CommandQueue commandQueue, INotificationManager notificationManager, in ToastUI() method in ToastUI
/frameworks/base/packages/SystemUI/src/com/android/systemui/dagger/
DSystemUIBinder.java42 import com.android.systemui.toast.ToastUI;
163 @ClassKey(ToastUI.class)
164 public abstract SystemUI bindToastUI(ToastUI service); in bindToastUI()
/frameworks/base/packages/CarSystemUI/src/com/android/systemui/
DCarSystemUIBinder.java44 import com.android.systemui.toast.ToastUI;
181 @ClassKey(ToastUI.class)
182 public abstract SystemUI bindToastUI(ToastUI service); in bindToastUI()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/toast/
DToastUITest.java88 private ToastUI mToastUI;
112 mToastUI = new ToastUI(mContextSpy, mCommandQueue, mNotificationManager, in setUp()