Home
last modified time | relevance | path

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

/packages/modules/AppSearch/testing/contactsindexertests/src/com/android/server/appsearch/contactsindexer/
DContactDataHandlerTest.java131 ContactPoint[] contactPoints = personTested.getContactPoints(); in testConvertCurrentRowToPerson_labelCustom_typeCustom() local
132 assertThat(contactPoints.length).isEqualTo(1); in testConvertCurrentRowToPerson_labelCustom_typeCustom()
133 assertThat(contactPoints[0].getLabel()).isEqualTo(label); in testConvertCurrentRowToPerson_labelCustom_typeCustom()
134 assertThat(contactPoints[0].getEmails()).asList().containsExactly(address); in testConvertCurrentRowToPerson_labelCustom_typeCustom()
166 ContactPoint[] contactPoints = personTested.getContactPoints(); in testConvertCurrentRowToPerson_labelIsNull_typeCustom() local
167 assertThat(contactPoints.length).isEqualTo(1); in testConvertCurrentRowToPerson_labelIsNull_typeCustom()
168 assertThat(contactPoints[0].getLabel()).isEqualTo(expectedLabel); in testConvertCurrentRowToPerson_labelIsNull_typeCustom()
169 assertThat(contactPoints[0].getEmails()).asList().containsExactly(address); in testConvertCurrentRowToPerson_labelIsNull_typeCustom()
199 ContactPoint[] contactPoints = personTested.getContactPoints(); in testConvertCurrentRowToPerson_labelIsNull_typeHome() local
200 assertThat(contactPoints.length).isEqualTo(1); in testConvertCurrentRowToPerson_labelIsNull_typeHome()
[all …]
/packages/modules/AppSearch/service/java/com/android/server/appsearch/contactsindexer/appsearchtypes/
DPerson.java341 ContactPoint[] contactPoints = new ContactPoint[docs.length]; in getContactPoints() local
342 for (int i = 0; i < contactPoints.length; ++i) { in getContactPoints()
343 contactPoints[i] = new ContactPoint(docs[i]); in getContactPoints()
345 return contactPoints; in getContactPoints()