Home
last modified time | relevance | path

Searched refs:VCard (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/map/
DBluetoothMapbMessageVCardTest.java26 import com.android.bluetooth.map.BluetoothMapbMessage.VCard;
53 VCard vcard = new VCard(TEST_NAME, TEST_PHONE_NUMBERS, TEST_EMAIL_ADDRESSES); in constructor_forVersionTwoPointOne()
62 VCard vcard = in constructor_forVersionTwoPointOne_withEnvLevel()
63 new VCard(TEST_NAME, TEST_PHONE_NUMBERS, TEST_EMAIL_ADDRESSES, TEST_ENV_LEVEL); in constructor_forVersionTwoPointOne_withEnvLevel()
73 VCard vcard = in constructor_forVersionThree()
74 new VCard( in constructor_forVersionThree()
89 VCard vcard = in constructor_forVersionThree_withUcis()
90 new VCard( in constructor_forVersionThree_withUcis()
106 VCard vcard = new VCard(null, null, null); in getters_withInitWithNulls_returnsCorrectly()
116 VCard vcardOriginal = in encodeToStringBuilder_thenParseBackToVCard_returnsCorrectly()
[all …]
DBluetoothMapbMessageTest.java26 import com.android.bluetooth.map.BluetoothMapbMessage.VCard;
56 private static final VCard TEST_VCARD =
57 new VCard(TEST_NAME, TEST_PHONE_NUMBERS, TEST_EMAIL_ADDRESSES);
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapbMessage.java56 private ArrayList<VCard> mOriginator = null;
57 private ArrayList<VCard> mRecipient = null;
59 public static class VCard { class in BluetoothMapbMessage
79 public VCard( in VCard() method in BluetoothMapbMessage.VCard
103 public VCard(String name, String[] phoneNumbers, String[] emailAddresses, int envLevel) { in VCard() method in BluetoothMapbMessage.VCard
123 public VCard( in VCard() method in BluetoothMapbMessage.VCard
149 public VCard(String name, String[] phoneNumbers, String[] emailAddresses) { in VCard() method in BluetoothMapbMessage.VCard
250 static VCard parseVcard(BMsgReader reader, int envLevel) { in parseVcard()
322 return new VCard( in parseVcard()
603 newBMsg.addOriginator(VCard.parseVcard(reader, 0)); in parse()
[all …]
DBluetoothMapContentObserver.java3076 ArrayList<BluetoothMapbMessage.VCard> recipientList = msg.getRecipients(); in pushMessage()
3087 BluetoothMapbMessage.VCard empty = in pushMessage()
3088 new BluetoothMapbMessage.VCard("", "", null, null, 0); in pushMessage()
3089 recipientList = new ArrayList<BluetoothMapbMessage.VCard>(); in pushMessage()
3208 for (BluetoothMapbMessage.VCard recipient : recipientList) { in pushMessage()
3224 for (BluetoothMapbMessage.VCard recipient : recipientList) { in pushMessage()