HomeSort by relevance Sort by last modified time
    Searched full:maketext (Results 1 - 25 of 287) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/tools/maketext/etc/
manifest.txt 1 Main-Class: com.android.inputmethod.latin.maketext.LabelText
Android.mk 20 LOCAL_PREBUILT_EXECUTABLES := maketext
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/src/test/pkg/
ToastTest.java.txt 11 return Toast.makeText(context, "foo", Toast.LENGTH_LONG);
16 Toast toast = Toast.makeText(context, "foo", Toast.LENGTH_LONG);
25 Toast.makeText(context, "foo", Toast.LENGTH_LONG).show();
26 Toast.makeText(context, R.string.app_name, duration).show();
31 Toast.makeText(context, "foo", Toast.LENGTH_LONG);
32 Toast toast = Toast.makeText(context, R.string.app_name, 5000);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
NotifyWithText.java 31 * @see Toast#makeText(android.content.Context,int,int)
32 * @see Toast#makeText(android.content.Context,java.lang.CharSequence,int)
54 // Note also that we use the version of makeText that takes a
58 Toast.makeText(NotifyWithText.this, R.string.short_notification_text,
70 Toast.makeText(NotifyWithText.this, R.string.long_notification_text,
AlarmService.java 72 Toast.makeText(AlarmService.this, R.string.repeating_scheduled,
84 Toast.makeText(AlarmService.this, R.string.repeating_unscheduled,
  /development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/
MainActivity.java 60 Toast.makeText(this, "Tapped home", Toast.LENGTH_SHORT).show();
64 Toast.makeText(this, "Fake refreshing...", Toast.LENGTH_SHORT).show();
76 Toast.makeText(this, "Tapped search", Toast.LENGTH_SHORT).show();
80 Toast.makeText(this, "Tapped share", Toast.LENGTH_SHORT).show();
  /cts/tests/tests/widget/src/android/widget/cts/
ToastTest.java 95 mToast = Toast.makeText(mActivity, TEST_TOAST_TEXT, Toast.LENGTH_LONG);
133 mToast = Toast.makeText(mActivity, TEST_TOAST_TEXT, Toast.LENGTH_LONG);
156 mToast = Toast.makeText(mActivity, TEST_TOAST_TEXT, Toast.LENGTH_LONG);
181 mToast = Toast.makeText(mActivity, TEST_TOAST_TEXT, Toast.LENGTH_LONG);
212 mToast = Toast.makeText(mActivity, TEST_TOAST_TEXT, Toast.LENGTH_SHORT);
267 mToast = Toast.makeText(mActivity, TEST_TOAST_TEXT, Toast.LENGTH_SHORT);
327 mToast = Toast.makeText(mActivity, "android", Toast.LENGTH_SHORT);
333 mToast = Toast.makeText(mActivity, "cts", Toast.LENGTH_LONG);
339 mToast = Toast.makeText(mActivity, null, Toast.LENGTH_LONG);
346 mToast = Toast.makeText(null, "test", Toast.LENGTH_LONG)
    [all...]
  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
ToastTest.java 89 mToast1 = Toast.makeText(ToastTest.this, text, Toast.LENGTH_SHORT);
97 mToast1 = Toast.makeText(ToastTest.this, "hi 1", Toast.LENGTH_SHORT);
121 mToast2 = Toast.makeText(ToastTest.this, "hi 2", Toast.LENGTH_SHORT);
135 Toast toast = Toast.makeText(ToastTest.this, "LEFT", Toast.LENGTH_SHORT);
144 Toast toast = Toast.makeText(ToastTest.this, "FILL_HORIZONTAL",
  /packages/inputmethods/LatinIME/tools/maketext/res/com/android/inputmethod/keyboard/internal/
KeyboardTextsSet.tmpl 29 * This file is generated by tools/maketext. The base template file is
30 * tools/maketext/res/com/android/inputmethod/keyboard/internal/KeyboardTextsSet.tmpl
35 * tools/maketext/res/values-<locale>/donottranslate-more-keys.xml
39 * $ mmm packages/inputmethods/LatinIME/tools/maketext
40 * $ maketext -java packages/inputmethods/LatinIME/java/src
  /hardware/ti/wpan/tools/BluetoothSCOApp/src/com/ti/bluetoothSCOapp/
connect.java 79 Toast.makeText(this, "Bluetooth is not available", Toast.LENGTH_LONG).show();
90 Toast.makeText(this, "Bluetooth is not enabled", Toast.LENGTH_LONG).show();
105 Toast.makeText(this, "Platform does not support use of SCO for off call", Toast.LENGTH_LONG).show();
122 Toast.makeText(this, "No Paired Headset, Pair and connect to phone audio", Toast.LENGTH_LONG).show();
130 Toast.makeText(this, "Disconnect A2DP (media audio) to headset from Bluetooth Settings", Toast.LENGTH_LONG).show();
137 Toast.makeText(this, "Make sure:Device is connected to Headset & Connected to Phone Audio only!", Toast.LENGTH_LONG).show();
168 Toast.makeText(getBaseContext(), msg,
  /packages/apps/VideoEditor/src/com/android/videoeditor/
VideoEditorBaseActivity.java 103 Toast.makeText(VideoEditorBaseActivity.this, R.string.editor_create_error,
152 Toast.makeText(VideoEditorBaseActivity.this, R.string.editor_aspect_ratio_error,
173 Toast.makeText(VideoEditorBaseActivity.this, R.string.editor_apply_theme_error,
256 Toast.makeText(VideoEditorBaseActivity.this, R.string.editor_export_error,
269 Toast.makeText(VideoEditorBaseActivity.this, R.string.editor_saved_error,
277 Toast.makeText(VideoEditorBaseActivity.this, R.string.editor_release_error,
285 Toast.makeText(VideoEditorBaseActivity.this, R.string.editor_delete_error,
302 Toast.makeText(VideoEditorBaseActivity.this,
305 Toast.makeText(VideoEditorBaseActivity.this, R.string.editor_add_image_error,
333 Toast.makeText(VideoEditorBaseActivity.this, R.string.editor_media_load_error
    [all...]
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
ToastDetector.java 41 /** Detector looking for Toast.makeText() without a corresponding show() call */
48 "Toast.makeText() creates a Toast but does *not* show it. You must call " +
76 return Collections.singletonList("makeText"); //$NON-NLS-1$
96 assert node.astName().astValue().equals("makeText");
133 /** The target makeText call */
135 /** Whether we've seen the target makeText node yet */
159 // If you just do "return Toast.makeText(...) don't warn
  /packages/inputmethods/LatinIME/tools/maketext/
Android.mk 23 LOCAL_MODULE := maketext
  /packages/inputmethods/LatinIME/tools/maketext/src/com/android/inputmethod/latin/maketext/
StringResource.java 17 package com.android.inputmethod.latin.maketext;
  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
WiFiDirectActivity.java 142 Toast.makeText(WiFiDirectActivity.this, R.string.p2p_off_warning,
153 Toast.makeText(WiFiDirectActivity.this, "Discovery Initiated",
159 Toast.makeText(WiFiDirectActivity.this, "Discovery Failed : " + reasonCode,
188 Toast.makeText(WiFiDirectActivity.this, "Connect failed. Retry.",
219 Toast.makeText(this, "Channel lost. Trying again", Toast.LENGTH_LONG).show();
224 Toast.makeText(this,
251 Toast.makeText(WiFiDirectActivity.this, "Aborting connection",
257 Toast.makeText(WiFiDirectActivity.this,
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceDialerReceiver.java 55 Toast.makeText(context, R.string.logging_enabled, Toast.LENGTH_LONG).show();
61 Toast.makeText(context, R.string.logging_disabled, Toast.LENGTH_LONG).show();
  /development/samples/ApiDemos/src/com/example/android/apis/content/
InstallApk.java 78 Toast.makeText(this, "Install succeeded!", Toast.LENGTH_SHORT).show();
80 Toast.makeText(this, "Install canceled!", Toast.LENGTH_SHORT).show();
82 Toast.makeText(this, "Install Failed!", Toast.LENGTH_SHORT).show();
86 Toast.makeText(this, "Uninstall succeeded!", Toast.LENGTH_SHORT).show();
88 Toast.makeText(this, "Uninstall canceled!", Toast.LENGTH_SHORT).show();
90 Toast.makeText(this, "Uninstall Failed!", Toast.LENGTH_SHORT).show();
  /frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
ObjectViewer.java 83 Toast.makeText(mContext, R.string.start_activity_failed_message,
177 Toast.makeText(this, R.string.object_saved_message, Toast.LENGTH_SHORT).show();
182 Toast.makeText(this, R.string.save_failed_message, Toast.LENGTH_SHORT).show();
188 Toast.makeText(this, R.string.object_deleted_message, Toast.LENGTH_SHORT).show();
191 Toast.makeText(this, R.string.delete_failed_message, Toast.LENGTH_SHORT).show();
  /packages/apps/Mms/apptests/src/com/android/mms/tests/
SmsSendIntentTestActivity.java 109 Toast.makeText(SmsSendIntentTestActivity.this, "Please enter a message recipient.",
115 Toast.makeText(SmsSendIntentTestActivity.this, "Please enter a message body.",
120 Toast.makeText(SmsSendIntentTestActivity.this, "You have five seconds to lock the screen.",
139 Toast.makeText(SmsSendIntentTestActivity.this, "Please enter a message recipient.",
145 Toast.makeText(SmsSendIntentTestActivity.this, "Please enter a message body.",
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
ConnectionAccessClientActivity.java 143 Toast.makeText(this, R.string.bt_connecting, Toast.LENGTH_SHORT).show();
148 Toast.makeText(this, R.string.bt_connected, Toast.LENGTH_SHORT).show();
163 Toast.makeText(this, toast, Toast.LENGTH_SHORT).show();
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CertFileList.java 65 Toast.makeText(this, R.string.sdcard_not_present,
104 Toast.makeText(this, R.string.sdcard_not_present,
116 Toast.makeText(this, R.string.no_cert_file_found,
  /packages/apps/Settings/src/com/android/settings/
SetFullBackupPassword.java 49 Toast.makeText(SetFullBackupPassword.this,
60 Toast.makeText(SetFullBackupPassword.this,
67 Toast.makeText(SetFullBackupPassword.this,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestListActivity.java 71 Toast.makeText(this, R.string.test_results_cleared, Toast.LENGTH_SHORT).show();
81 Toast.makeText(this, R.string.test_results_error, Toast.LENGTH_SHORT).show();
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List15.java 67 Toast.makeText(List15.this, "Shared " + getListView().getCheckedItemCount() +
72 Toast.makeText(List15.this, "Clicked " + item.getTitle(),
List16.java 68 Toast.makeText(List16.this, "Shared " + getListView().getCheckedItemCount() +
73 Toast.makeText(List16.this, "Clicked " + item.getTitle(),

Completed in 642 milliseconds

1 2 3 4 5 6 7 8 91011>>