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

1 2

  /packages/apps/Browser/tests/src/com/android/browser/
IntentHandlerTests.java 40 sendIntent(intent);
47 sendIntent(intent);
53 sendIntent(intent);
60 sendIntent(intent);
65 sendIntent(intent);
69 sendIntent(intent);
87 sendIntent(intent);
94 sendIntent(intent);
133 private void sendIntent(final Intent intent) throws Throwable {
134 sendIntent(intent, true)
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
VoicemailCleanupServiceTest.java 51 sendIntent(TEST_PACKAGE_1, Intent.ACTION_PACKAGE_CHANGED, null);
55 sendIntent(TEST_PACKAGE_1, Intent.ACTION_PACKAGE_REPLACED, null);
59 sendIntent(TEST_PACKAGE_1, Intent.ACTION_PACKAGE_REMOVED, true);
63 sendIntent(TEST_PACKAGE_1, Intent.ACTION_PACKAGE_REMOVED, null);
68 sendIntent(TEST_PACKAGE_2, Intent.ACTION_PACKAGE_REMOVED, false);
73 private void sendIntent(String sourcePackage, String action, Boolean replacingExtra) {
  /packages/apps/Nfc/src/com/android/nfc/handover/
BluetoothOppHandover.java 106 sendIntent();
110 sendIntent();
118 void sendIntent() {
142 sendIntent();
  /frameworks/base/docs/html/training/sharing/
send.jd 68 Intent sendIntent = new Intent();
69 sendIntent.setAction(Intent.ACTION_SEND);
70 sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
71 sendIntent.setType("text/plain");
72 startActivity(sendIntent);
94 Intent sendIntent = new Intent();
95 sendIntent.setAction(Intent.ACTION_SEND);
96 sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
97 sendIntent.setType("text/plain");
98 startActivity(<strong>Intent.createChooser(sendIntent, getResources().getText(R.string.send_to))</strong>)
    [all...]
  /external/droiddriver/samples/testapp/src/com/google/android/apps/common/testing/ui/testapp/
SendActivity.java 83 Intent sendIntent = new Intent();
85 sendIntent.setAction(Intent.ACTION_SEND);
86 sendIntent.putExtra(Intent.EXTRA_TEXT, editText.getText().toString());
87 sendIntent.setType("text/plain");
88 startActivity(sendIntent);
  /frameworks/base/packages/Shell/src/com/android/shell/
BugreportReceiver.java 76 Intent sendIntent = buildSendIntent(context, bugreportUri, screenshotUri);
81 notifIntent = buildWarningIntent(context, sendIntent);
83 notifIntent = sendIntent;
110 private static Intent buildWarningIntent(Context context, Intent sendIntent) {
112 intent.putExtra(Intent.EXTRA_INTENT, sendIntent);
  /packages/apps/Mms/apptests/
AndroidManifest.xml 22 that the new SendIntent works because the app will crash because no service
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
BondStateMachine.java 121 sendIntent(dev, newState, 0);
174 sendIntent(dev, newState, reason);
242 sendIntent(dev, BluetoothDevice.BOND_NONE,
253 private void sendIntent(BluetoothDevice device, int newState, int reason) {
280 // in sendIntent above
  /frameworks/base/docs/html/sdk/api_diff/14/changes/
android.content.IntentSender.html 87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/content/IntentSender.html#sendIntent(android.content.Context, int, android.content.Intent, android.content.IntentSender.OnFinished, android.os.Handler, java.lang.String)" target="_top"><code>sendIntent</code></A>(<code>Context,</nobr> int<nobr>,</nobr> Intent<nobr>,</nobr> OnFinished<nobr>,</nobr> Handler<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
methods_index_additions.html     [all...]
alldiffs_index_additions.html     [all...]
methods_index_all.html     [all...]
alldiffs_index_all.html     [all...]
  /frameworks/base/services/java/com/android/server/location/
GeofenceManager.java 354 sendIntent(pendingIntent, intent);
364 sendIntent(pendingIntent, intent);
367 private void sendIntent(PendingIntent pendingIntent, Intent intent) {
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsSingleRecipientSender.java 111 Log.v(TAG, "sendMessage sendIntent: " + intent);
  /frameworks/base/services/tests/servicestests/src/com/android/server/updates/
CertPinInstallReceiverTest.java 183 private void sendIntent(String contentPath, String version, String required, String sig) {
198 sendIntent(contentPath, version, required, sig);
  /packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
HealthService.java 647 boolean sendIntent = false;
652 sendIntent = true;
659 sendIntent = true;
666 sendIntent = true;
678 sendIntent = true;
694 if (sendIntent)
    [all...]
  /frameworks/base/core/java/android/content/
IntentSender.java 156 public void sendIntent(Context context, int code, Intent intent,
158 sendIntent(context, code, intent, onFinished, handler, null);
187 public void sendIntent(Context context, int code, Intent intent,
Context.java     [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapContentObserver.java 729 Intent sendIntent = new Intent("android.intent.action.MMS_SEND_OUTBOX_MSG");
730 Log.d(TAG, "broadcasting intent: "+sendIntent.toString());
731 mContext.sendBroadcast(sendIntent);
    [all...]
  /frameworks/base/services/java/com/android/server/
BatteryService.java 452 // This needs to be done after sendIntent() so that we get the lastest battery stats.
    [all...]
  /frameworks/base/core/java/android/app/
Activity.java     [all...]
  /prebuilts/sdk/14/
android.jar 
  /development/sdk/
api-versions.xml     [all...]
  /prebuilts/sdk/6/
android.jar 

Completed in 2450 milliseconds

1 2