Searched refs:secondaryIntent (Results 1 – 3 of 3) sorted by relevance
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/ |
D | ContactsUtilsTests.java | 137 final Intent secondaryIntent = intents.second; in testImIntentWithAudio() local 138 assertEquals(Intent.ACTION_SENDTO, secondaryIntent.getAction()); in testImIntentWithAudio() 139 assertEquals("xmpp:" + TEST_ADDRESS + "?call", secondaryIntent.getData().toString()); in testImIntentWithAudio() 159 final Intent secondaryIntent = intents.second; in testImIntentWithVideo() local 160 assertEquals(Intent.ACTION_SENDTO, secondaryIntent.getAction()); in testImIntentWithVideo() 161 assertEquals("xmpp:" + TEST_ADDRESS + "?call", secondaryIntent.getData().toString()); in testImIntentWithVideo() 184 final Intent secondaryIntent = intents.second; in testImEmailIntent() local 185 assertEquals(Intent.ACTION_SENDTO, secondaryIntent.getAction()); in testImEmailIntent() 186 assertEquals("xmpp:" + TEST_ADDRESS + "?call", secondaryIntent.getData().toString()); in testImEmailIntent()
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/ |
D | ContactsUtils.java | 201 Intent secondaryIntent = null; in buildImIntent() local 220 secondaryIntent = new Intent(Intent.ACTION_SENDTO, in buildImIntent() 226 secondaryIntent = in buildImIntent() 236 return new Pair<>(intent, secondaryIntent); in buildImIntent()
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/ |
D | ContactFragment.java | 257 Intent intent = entry.secondaryIntent; in onSecondaryAction() 384 entry.secondaryIntent = new Intent(Intent.ACTION_SENDTO, in buildEntries() 535 public Intent secondaryIntent = null; field in ContactFragment.ViewEntry 634 || !ContactsUtils.areIntentActionEqual(secondaryIntent, entry.secondaryIntent) in shouldCollapseWith() 775 if (entry.secondaryIntent != null && secondaryActionIcon != null) { in bindView()
|