Home
last modified time | relevance | path

Searched refs:showToast (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/core/tests/coretests/src/com/android/internal/app/
DIntentForwarderActivityTest.java294 verify(sInjector).showToast(anyInt(), anyInt()); in shouldSkipDisclosure_notWhitelisted()
309 verify(sInjector, never()).showToast(anyInt(), anyInt()); in shouldSkipDisclosure_withResolverActivity()
321 verify(sInjector, never()).showToast(anyInt(), anyInt()); in shouldSkipDisclosure_callIntent_call()
333 verify(sInjector, never()).showToast(anyInt(), anyInt()); in shouldSkipDisclosure_callIntent_callPrivileged()
345 verify(sInjector, never()).showToast(anyInt(), anyInt()); in shouldSkipDisclosure_callIntent_callEmergency()
357 verify(sInjector, never()).showToast(anyInt(), anyInt()); in shouldSkipDisclosure_callIntent_dial()
369 verify(sInjector).showToast(anyInt(), anyInt()); in shouldSkipDisclosure_callIntent_notCallOrDial()
383 verify(sInjector, never()).showToast(anyInt(), anyInt()); in shouldSkipDisclosure_callIntent_actionViewTel()
396 verify(sInjector, never()).showToast(anyInt(), anyInt()); in shouldSkipDisclosure_textMessageIntent_sms()
409 verify(sInjector, never()).showToast(anyInt(), anyInt()); in shouldSkipDisclosure_textMessageIntent_smsto()
[all …]
/frameworks/base/core/java/com/android/internal/app/
DIntentForwarderActivity.java144 mInjector.showToast(userMessageId, Toast.LENGTH_LONG); in onCreate()
311 public void showToast(int messageId, int duration) { in showToast() method in IntentForwarderActivity.InjectorImpl
325 void showToast(@StringRes int messageId, int duration); in showToast() method
/frameworks/base/tests/SoundTriggerTestApp/src/com/android/test/soundtrigger/
DSoundTriggerTestActivity.java170 public void showMessage(String msg, boolean showToast) { in showMessage() argument
181 if (showToast) { in showMessage()
DSoundTriggerTestService.java63 void showMessage(String msg, boolean showToast); in showMessage() argument
728 private synchronized void showMessage(String msg, int logLevel, boolean showToast) { in showMessage() argument
731 mUserActivity.showMessage(msg, showToast); in showMessage()
/frameworks/base/tests/net/java/com/android/server/connectivity/
DLingerMonitorTest.java328 verify(mNotifier, never()).showToast(any(), any()); in verifyNoToast()
343 verify(mNotifier, times(1)).showToast(from, to); in verifyToast()
/frameworks/base/services/core/java/com/android/server/connectivity/
DLingerMonitor.java193 mNotifier.showToast(fromNai, toNai); in notify()
DNetworkNotificationManager.java331 public void showToast(NetworkAgentInfo fromNai, NetworkAgentInfo toNai) { in showToast() method in NetworkNotificationManager