Home
last modified time | relevance | path

Searched refs:BluetoothMapConvoContactElement (Results 1 – 8 of 8) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/map/
DBluetoothMapConvoContactElementTest.java63 BluetoothMapConvoContactElement contactElement = in constructorWithArguments()
64 new BluetoothMapConvoContactElement( in constructorWithArguments()
93 BluetoothMapConvoContactElement contactElement = in createFromMapContact()
94 BluetoothMapConvoContactElement.createFromMapContact(mMapContact, TEST_UCI); in createFromMapContact()
102 BluetoothMapConvoContactElement contactElement = new BluetoothMapConvoContactElement(); in settersAndGetters()
127 BluetoothMapConvoContactElement contactElement = in encodeToXml_thenDecodeToInstance_returnsCorrectly()
128 new BluetoothMapConvoContactElement( in encodeToXml_thenDecodeToInstance_returnsCorrectly()
155 BluetoothMapConvoContactElement contactElementFromXml = in encodeToXml_thenDecodeToInstance_returnsCorrectly()
156 BluetoothMapConvoContactElement.createFromXml(parser); in encodeToXml_thenDecodeToInstance_returnsCorrectly()
173 BluetoothMapConvoContactElement contactElement = in equalsWithSameValues_returnsTrue()
[all …]
DBluetoothMapConvoListingElementTest.java54 private final BluetoothMapConvoContactElement TEST_CONTACT_ELEMENT_ONE =
55 new BluetoothMapConvoContactElement(
66 private final BluetoothMapConvoContactElement TEST_CONTACT_ELEMENT_TWO =
67 new BluetoothMapConvoContactElement(
78 private final List<BluetoothMapConvoContactElement> TEST_CONTACTS =
DBluetoothMapContentObserverTest.java307 Map<String, BluetoothMapConvoContactElement> map = Map.of(); in testSetContactList()
1059 Map<String, BluetoothMapConvoContactElement> map = new HashMap<>(); in initContactsList()
1062 BluetoothMapConvoContactElement contactElement = mObserver.getContactList().get(TEST_UCI); in initContactsList()
2399 Map<String, BluetoothMapConvoContactElement> map = new HashMap<>(); in handleContactListChanges_withNullContactForUci()
2406 BluetoothMapConvoContactElement contactElement = mObserver.getContactList().get(TEST_UCI); in handleContactListChanges_withNullContactForUci()
2457 Map<String, BluetoothMapConvoContactElement> map = new HashMap<>(); in handleContactListChanges_withNonNullContactForUci()
2459 BluetoothMapConvoContactElement contact = in handleContactListChanges_withNonNullContactForUci()
2460 new BluetoothMapConvoContactElement( in handleContactListChanges_withNonNullContactForUci()
2477 BluetoothMapConvoContactElement contactElement = mObserver.getContactList().get(TEST_UCI); in handleContactListChanges_withNonNullContactForUci()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapConvoContactElement.java36 public class BluetoothMapConvoContactElement class
37 implements Comparable<BluetoothMapConvoContactElement> {
65 public static BluetoothMapConvoContactElement createFromMapContact( in createFromMapContact()
67 BluetoothMapConvoContactElement newElement = new BluetoothMapConvoContactElement(); in createFromMapContact()
75 public BluetoothMapConvoContactElement( in BluetoothMapConvoContactElement() method in BluetoothMapConvoContactElement
108 public BluetoothMapConvoContactElement() { in BluetoothMapConvoContactElement() method in BluetoothMapConvoContactElement
197 public int compareTo(BluetoothMapConvoContactElement e) { in compareTo()
253 public static BluetoothMapConvoContactElement createFromXml(XmlPullParser parser) in createFromXml()
256 BluetoothMapConvoContactElement newElement; in createFromXml()
261 newElement = new BluetoothMapConvoContactElement(); in createFromXml()
[all …]
DBluetoothMapConvoListingElement.java57 private List<BluetoothMapConvoContactElement> mContacts;
120 public List<BluetoothMapConvoContactElement> getContacts() { in getContacts()
124 public void setContacts(List<BluetoothMapConvoContactElement> contacts) { in setContacts()
128 public void addContact(BluetoothMapConvoContactElement contact) { in addContact()
130 mContacts = new ArrayList<BluetoothMapConvoContactElement>(); in addContact()
135 public void removeContact(BluetoothMapConvoContactElement contact) { in removeContact()
284 for (BluetoothMapConvoContactElement contact : mContacts) { in encode()
329 if (name.equalsIgnoreCase(BluetoothMapConvoContactElement.XML_TAG_CONVOCONTACT)) { in createFromXml()
330 newElement.addContact(BluetoothMapConvoContactElement.createFromXml(parser)); in createFromXml()
DBluetoothMapMasInstance.java103 private Map<String, BluetoothMapConvoContactElement> mContactList;
220 /* package */ Map<String, BluetoothMapConvoContactElement> getContactList() { in getContactList()
224 /* package */ void setContactList(Map<String, BluetoothMapConvoContactElement> contactList) { in setContactList()
DBluetoothMapContentObserver.java289 setContactList(new HashMap<String, BluetoothMapConvoContactElement>(), false); in BluetoothMapContentObserver()
409 Map<String, BluetoothMapConvoContactElement> getContactList() { in getContactList()
420 Map<String, BluetoothMapConvoContactElement> contactList, boolean changesDetected) { in setContactList()
982 private Map<String, BluetoothMapConvoContactElement> mContactList = null;
1458 Map<String, BluetoothMapConvoContactElement> contactList = in initContactsList()
1459 new HashMap<String, BluetoothMapConvoContactElement>(); in initContactsList()
1479 BluetoothMapConvoContactElement contact = in initContactsList()
1480 new BluetoothMapConvoContactElement( in initContactsList()
2331 HashMap<String, BluetoothMapConvoContactElement> contactList = in handleContactListChanges()
2332 new HashMap<String, BluetoothMapConvoContactElement>( in handleContactListChanges()
[all …]
DBluetoothMapContent.java3346 BluetoothMapConvoContactElement c = new BluetoothMapConvoContactElement(); in populateImEmailConvoElement()
3441 BluetoothMapConvoContactElement contactElement; in addSmsMmsContacts()
3507 contactElement = new BluetoothMapConvoContactElement(); in addSmsMmsContacts()
3516 BluetoothMapConvoContactElement.createFromMapContact(contact, addr); in addSmsMmsContacts()