HomeSort by relevance Sort by last modified time
    Searched refs:secondaryIntent (Results 1 - 7 of 7) sorted by null

  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
ContactsUtilsTests.java 137 final Intent secondaryIntent = intents.second;
138 assertEquals(Intent.ACTION_SENDTO, secondaryIntent.getAction());
139 assertEquals("xmpp:" + TEST_ADDRESS + "?call", secondaryIntent.getData().toString());
159 final Intent secondaryIntent = intents.second;
160 assertEquals(Intent.ACTION_SENDTO, secondaryIntent.getAction());
161 assertEquals("xmpp:" + TEST_ADDRESS + "?call", secondaryIntent.getData().toString());
184 final Intent secondaryIntent = intents.second;
185 assertEquals(Intent.ACTION_SENDTO, secondaryIntent.getAction());
186 assertEquals("xmpp:" + TEST_ADDRESS + "?call", secondaryIntent.getData().toString());
  /cts/tests/tests/os/src/android/os/cts/
ProcessTest.java 73 Intent secondaryIntent = new Intent(ISecondary.class.getName());
74 secondaryIntent.setPackage(getContext().getPackageName());
75 getContext().bindService(secondaryIntent, mSecondaryConnection,
RemoteCallbackListTest.java 64 Intent secondaryIntent = new Intent(ISecondary.class.getName());
65 secondaryIntent.setPackage(mContext.getPackageName());
66 assertTrue(mContext.bindService(secondaryIntent, mSecondaryConnection,
TokenWatcherTest.java 87 Intent secondaryIntent = new Intent(IEmptyService.class.getName());
88 secondaryIntent.setPackage(getContext().getPackageName());
89 getContext().bindService(secondaryIntent, mServiceConnection, Context.BIND_AUTO_CREATE);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactsUtils.java 178 Intent secondaryIntent = null;
197 secondaryIntent = new Intent(Intent.ACTION_SENDTO,
203 secondaryIntent =
213 return new Pair<>(intent, secondaryIntent);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactFragment.java 257 Intent intent = entry.secondaryIntent;
384 entry.secondaryIntent = new Intent(Intent.ACTION_SENDTO,
535 public Intent secondaryIntent = null;
634 || !ContactsUtils.areIntentActionEqual(secondaryIntent, entry.secondaryIntent)
775 if (entry.secondaryIntent != null && secondaryActionIcon != null) {
  /packages/apps/Dialer/src/com/android/dialer/
CallDetailActivity.java 622 public Intent secondaryIntent = null;
634 secondaryIntent = intent;
    [all...]

Completed in 1103 milliseconds