Home
last modified time | relevance | path

Searched refs:secondaryIntent (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Contacts/tests/src/com/android/contacts/
DContactsUtilsTests.java136 final Intent secondaryIntent = intents.second; in testImIntentWithAudio() local
137 assertEquals(Intent.ACTION_SENDTO, secondaryIntent.getAction()); in testImIntentWithAudio()
138 assertEquals("xmpp:" + TEST_ADDRESS + "?call", secondaryIntent.getData().toString()); in testImIntentWithAudio()
158 final Intent secondaryIntent = intents.second; in testImIntentWithVideo() local
159 assertEquals(Intent.ACTION_SENDTO, secondaryIntent.getAction()); in testImIntentWithVideo()
160 assertEquals("xmpp:" + TEST_ADDRESS + "?call", secondaryIntent.getData().toString()); in testImIntentWithVideo()
183 final Intent secondaryIntent = intents.second; in testImEmailIntent() local
184 assertEquals(Intent.ACTION_SENDTO, secondaryIntent.getAction()); in testImEmailIntent()
185 assertEquals("xmpp:" + TEST_ADDRESS + "?call", secondaryIntent.getData().toString()); in testImEmailIntent()
/packages/apps/Contacts/src/com/android/contacts/
DContactsUtils.java188 Intent secondaryIntent = null; in buildImIntent() local
207 secondaryIntent = new Intent(Intent.ACTION_SENDTO, in buildImIntent()
213 secondaryIntent = in buildImIntent()
223 return new Pair<>(intent, secondaryIntent); in buildImIntent()