HomeSort by relevance Sort by last modified time
    Searched defs:makeText (Results 1 - 25 of 59) sorted by null

1 2 3

  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SysUIToast.java 26 public static Toast makeText(Context context, @StringRes int resId, @Duration int duration) {
27 return makeText(context, context.getString(resId), duration);
30 public static Toast makeText(Context context, CharSequence text, @Duration int duration) {
31 Toast toast = Toast.makeText(context, text, duration);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BluetoothTestActivity.java 41 Toast.makeText(this, "bluetooth not supported", Toast.LENGTH_SHORT);
  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
NonsenseGenerator.java 89 public String makeText(int numSentences) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowToast.java 30 public static Toast makeText(Context context, int resId, int duration) {
31 return makeText(context, context.getResources().getString(resId), duration);
35 public static Toast makeText(Context context, CharSequence text, int duration) {
  /packages/apps/Camera2/src/com/android/camera/
OnScreenHint.java 105 public static OnScreenHint makeText(Activity activity, CharSequence text) {
121 * of the makeText() methods.
127 + "created with OnScreenHint.makeText()");
132 + "created with OnScreenHint.makeText()");
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowToast.java 31 public static Toast makeText(Context context, int resId, int duration) {
32 return makeText(context, context.getResources().getString(resId), duration);
36 public static Toast makeText(Context context, CharSequence text, int duration) {
  /packages/apps/LegacyCamera/src/com/android/camera/
OnScreenHint.java 106 public static OnScreenHint makeText(Context context, CharSequence text) {
123 * of the makeText() methods.
129 + "created with OnScreenHint.makeText()");
134 + "created with OnScreenHint.makeText()");
  /prebuilts/go/darwin-x86/src/regexp/
exec_test.go 641 func makeText(n int) []byte {
671 t := makeText(size.n)
694 t := makeText(size.n)
  /prebuilts/go/linux-x86/src/regexp/
exec_test.go 641 func makeText(n int) []byte {
671 t := makeText(size.n)
694 t := makeText(size.n)
  /cts/tests/tests/widget/src/android/widget/cts/
ToastTest.java 111 () -> mToast = Toast.makeText(mContext, TEST_TOAST_TEXT, Toast.LENGTH_LONG));
320 Toast toast = Toast.makeText(mContext, "android", Toast.LENGTH_SHORT);
326 toast = Toast.makeText(mContext, "cts", Toast.LENGTH_LONG);
332 toast = Toast.makeText(mContext, null, Toast.LENGTH_LONG);
342 Toast.makeText(null, "test", Toast.LENGTH_LONG);
348 Toast toast = Toast.makeText(mContext, R.string.hello_world, Toast.LENGTH_LONG);
355 toast = Toast.makeText(mContext, R.string.hello_android, Toast.LENGTH_SHORT);
365 Toast.makeText(null, R.string.hello_android, Toast.LENGTH_SHORT);
371 Toast toast = Toast.makeText(mContext, R.string.text, Toast.LENGTH_LONG);
383 Toast toast = Toast.makeText(mContext, R.string.text, Toast.LENGTH_LONG)
    [all...]
  /development/samples/BluetoothHDP/src/com/example/bluetooth/health/
BluetoothHDPActivity.java 133 Toast.makeText(this, R.string.bluetooth_not_available, Toast.LENGTH_LONG);
BluetoothHDPService.java 156 Toast.makeText(this, R.string.bluetooth_health_profile_not_available,
  /frameworks/base/core/java/android/widget/
Toast.java 269 public static Toast makeText(Context context, CharSequence text, @Duration int duration) {
270 return makeText(context, null, text, duration);
278 public static Toast makeText(@NonNull Context context, @Nullable Looper looper,
305 public static Toast makeText(Context context, @StringRes int resId, @Duration int duration)
307 return makeText(context, context.getResources().getText(resId), duration);
311 * Update the text in a Toast that was previously created using one of the makeText() methods.
319 * Update the text in a Toast that was previously created using one of the makeText() methods.
324 throw new RuntimeException("This Toast was not created with Toast.makeText()");
328 throw new RuntimeException("This Toast was not created with Toast.makeText()");
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
TrackerService.java 111 Toast.makeText(this, "Tracking service started", Toast.LENGTH_SHORT);
234 Toast.makeText(this, "Tracking service stopped", Toast.LENGTH_SHORT);
  /prebuilts/tools/common/m2/repository/com/sun/xml/bind/external/rngom/2.2.11/
rngom-2.2.11.jar 
  /prebuilts/tools/common/m2/repository/xom/xom/1.0/
xom-1.0.jar 
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 
shadows-core-3.1-SNAPSHOT-21.jar 
shadows-core-3.1-SNAPSHOT-22.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
shadows-core-v16-3.1.1.jar 

Completed in 668 milliseconds

1 2 3