/system/tools/aidl/ |
aidl_language_l.ll | 26 std::string extra_text; 31 \%\%\{ { extra_text += "/**"; BEGIN(COPYING); } 32 <COPYING>\}\%\% { extra_text += "**/"; yylloc->step(); BEGIN(INITIAL); } 33 <COPYING>.* { extra_text += yytext; } 34 <COPYING>\n+ { extra_text += yytext; yylloc->lines(yyleng); } 36 \/\* { extra_text += yytext; BEGIN(LONG_COMMENT); } 37 <LONG_COMMENT>\*+\/ { extra_text += yytext; yylloc->step(); BEGIN(INITIAL); } 38 <LONG_COMMENT>\*+ { extra_text += yytext; } 39 <LONG_COMMENT>\n+ { extra_text += yytext; yylloc->lines(yyleng); } 40 <LONG_COMMENT>[^*\n]+ { extra_text += yytext; [all...] |
/development/samples/AppNavigation/src/com/example/android/appnavigation/app/ |
ContentViewActivity.java | 27 public static final String EXTRA_TEXT = "com.example.android.appnavigation.EXTRA_TEXT"; 38 } else if (intent.hasExtra(EXTRA_TEXT)) { 40 tv.setText(intent.getStringExtra(EXTRA_TEXT));
|
InterstitialMessageActivity.java | 38 .putExtra(ContentViewActivity.EXTRA_TEXT, "From Interstitial Notification"))
|
NotificationsActivity.java | 47 .putExtra(ContentViewActivity.EXTRA_TEXT, "From Notification"))
|
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/ |
ConfirmationActivity.java | 9 public static final String EXTRA_TEXT = "text"; 16 ((TextView)findViewById(R.id.text)).setText(getTextExtra(EXTRA_TEXT, "text"));
|
/frameworks/support/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/ |
ContentViewActivity.java | 32 public static final String EXTRA_TEXT = "com.example.android.appnavigation.EXTRA_TEXT"; 45 } else if (intent.hasExtra(EXTRA_TEXT)) { 47 tv.setText(intent.getStringExtra(EXTRA_TEXT));
|
InterstitialMessageActivity.java | 38 .putExtra(ContentViewActivity.EXTRA_TEXT, "From Interstitial Notification"))
|
NotificationsActivity.java | 60 .putExtra(ContentViewActivity.EXTRA_TEXT, "From Notification"))
|
/packages/services/Telephony/tests/src/com/android/phone/tests/ |
SendInstantTextTestService.java | 49 String message = intent.getStringExtra(Intent.EXTRA_TEXT); 59 String message = intent.getStringExtra(Intent.EXTRA_TEXT);
|
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/app/ |
ActionBarShareActionProvider.java | 46 shareIntent.putExtra(Intent.EXTRA_TEXT, "Hello!");
|
/packages/apps/Settings/src/com/android/settings/ |
HelpTrampoline.java | 36 final String name = getIntent().getStringExtra(Intent.EXTRA_TEXT);
|
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/action/ |
ShareCodeAction.java | 31 sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareBody);
|
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/ |
NfcTest.java | 43 intent.putExtra(Intent.EXTRA_TEXT, SAMPLE_TEXT);
|
/developers/build/prebuilts/gradle/DirectShare/Application/src/main/java/com/example/android/directshare/ |
MainActivity.java | 60 sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, mEditBody.getText().toString());
|
/developers/samples/android/content/DirectShare/Application/src/main/java/com/example/android/directshare/ |
MainActivity.java | 60 sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, mEditBody.getText().toString());
|
/development/samples/browseable/DirectShare/src/com.example.android.directshare/ |
MainActivity.java | 60 sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, mEditBody.getText().toString());
|
/packages/apps/Nfc/src/com/android/nfc/ |
BeamShareActivity.java | 175 final CharSequence text = intent.getCharSequenceExtra(Intent.EXTRA_TEXT); 180 if (DBG) Log.d(TAG, "Found EXTRA_TEXT in ACTION_SEND intent."); 188 Intent.EXTRA_TEXT); 196 // Try EXTRA_TEXT, but just for the first record
|
/packages/screensavers/WebView/src/com/android/dreams/web/ |
SetURL.java | 37 String url = intent.getStringExtra(Intent.EXTRA_TEXT);
|
SetURLInteractive.java | 37 String url = intent.getStringExtra(Intent.EXTRA_TEXT);
|
/external/autotest/frontend/tko/ |
graphing_utils.py | 531 def _create_metrics_plot_helper(plot_info, extra_text=None): 535 extra_text: text to show at the uppper-left of the graph 628 if extra_text: 630 figure.text(.1, text_y, extra_text, size='xx-small') 636 drilldown_callback, extra_text=None): 639 figure, area_data = _create_metrics_plot_helper(plot_info, extra_text) 655 def _create_qual_histogram_helper(plot_info, extra_text=None): 660 extra_text: text to show at the upper-left of the graph 773 if extra_text: 774 figure.text(.1, .95, extra_text, size='xx-small' [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppLauncherActivity.java | 101 CharSequence extra_text = intent.getCharSequenceExtra(Intent.EXTRA_TEXT); local 105 // EXTRA_TEXT, we will try send this TEXT out; Currently in 123 } else if (extra_text != null && type != null) { 124 if (V) Log.v(TAG, "Get ACTION_SEND intent with Extra_text = " 125 + extra_text.toString() + "; mimetype = " + type); 126 final Uri fileUri = creatFileForSharedContent(this.createCredentialProtectedStorageContext(), extra_text);
|
/frameworks/support/compat/java/android/support/v4/app/ |
ShareCompat.java | 435 * @see Intent#EXTRA_TEXT 438 mIntent.putExtra(Intent.EXTRA_TEXT, text); 444 * If {@link Intent#EXTRA_TEXT EXTRA_TEXT} has not already been supplied, 445 * a styled version of the supplied HTML text will be added as EXTRA_TEXT as 449 * provided by EXTRA_TEXT. 455 if (!mIntent.hasExtra(Intent.EXTRA_TEXT)) { 456 // Supply a default if EXTRA_TEXT isn't set 739 * @see Intent#EXTRA_TEXT 742 return mIntent.getCharSequenceExtra(Intent.EXTRA_TEXT); [all...] |
/cts/hostsidetests/devicepolicy/app/IntentSender/src/com/android/cts/intent/sender/ |
CopyPasteTest.java | 93 intent.putExtra("extra_text", text);
|
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/details/ |
DetailsDescriptionPresenter.java | 50 TextView extraText = mResourceCache.getViewById(viewHolder.view, R.id.extra_text);
|
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/cards/ |
TextCardView.java | 38 TextView extraText = (TextView) findViewById(R.id.extra_text);
|