Home
last modified time | relevance | path

Searched refs:DataUtil (Results 1 – 9 of 9) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
DContactAggregatorTest.java46 import com.android.providers.contacts.testutil.DataUtil;
153 Uri resultUri = DataUtil.insertStructuredName(mResolver, rawContactId, "Johna", "Smitha"); in testAggregationCreatesNewAggregate()
167 DataUtil.insertStructuredName(mResolver, rawContactId1, "Johnb", "Smithb"); in testAggregationOfExactFullNameMatch()
170 DataUtil.insertStructuredName(mResolver, rawContactId2, "Johnb", "Smithb"); in testAggregationOfExactFullNameMatch()
180 DataUtil.insertStructuredName(mResolver, rawContactId1, "Flynn", "Ryder"); in testAggregationIgnoresInvisibleContact()
186 DataUtil.insertStructuredName(mResolver, rawContactId2, "Flynn", "Ryder"); in testAggregationIgnoresInvisibleContact()
189 DataUtil.insertStructuredName(mResolver, rawContactId3, "Flynn", "Ryder"); in testAggregationIgnoresInvisibleContact()
198 DataUtil.insertStructuredName(mResolver, rawContactId1, "Johnc", "Smithc"); in testAggregationOfCaseInsensitiveFullNameMatch()
201 DataUtil.insertStructuredName(mResolver, rawContactId2, "Johnc", "smithc"); in testAggregationOfCaseInsensitiveFullNameMatch()
208 DataUtil.insertStructuredName(mResolver, rawContactId1, null, "Johnd"); in testAggregationOfLastNameMatch()
[all …]
DContactAggregator2Test.java46 import com.android.providers.contacts.testutil.DataUtil;
153 Uri resultUri = DataUtil.insertStructuredName(mResolver, rawContactId, "Johna", "Smitha"); in testAggregationCreatesNewAggregate()
167 DataUtil.insertStructuredName(mResolver, rawContactId1, "Johnb", "Smithb"); in testAggregationOfExactFullNameMatch()
170 DataUtil.insertStructuredName(mResolver, rawContactId2, "Johnb", "Smithb"); in testAggregationOfExactFullNameMatch()
180 DataUtil.insertStructuredName(mResolver, rawContactId1, "Flynn", "Ryder"); in testAggregationIgnoresInvisibleContact()
186 DataUtil.insertStructuredName(mResolver, rawContactId2, "Flynn", "Ryder"); in testAggregationIgnoresInvisibleContact()
189 DataUtil.insertStructuredName(mResolver, rawContactId3, "Flynn", "Ryder"); in testAggregationIgnoresInvisibleContact()
198 DataUtil.insertStructuredName(mResolver, rawContactId1, "Johnc", "Smithc"); in testAggregationOfCaseInsensitiveFullNameMatch()
201 DataUtil.insertStructuredName(mResolver, rawContactId2, "Johnc", "smithc"); in testAggregationOfCaseInsensitiveFullNameMatch()
208 DataUtil.insertStructuredName(mResolver, rawContactId1, null, "Johnd"); in testAggregationOfLastNameMatch()
[all …]
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DSearchIndexManagerTest.java32 import com.android.providers.contacts.testutil.DataUtil;
54 DataUtil.insertStructuredName(mResolver, rawContactId, "John", "Doe"); in testSearchIndexForStructuredName()
57 DataUtil.insertStructuredName(mResolver, rawContactId, values); in testSearchIndexForStructuredName()
66 DataUtil.insertStructuredName(mResolver, rawContactId, values); in testSearchIndexForStructuredName()
75 DataUtil.insertStructuredName(mResolver, rawContactId, "John", "Doe"); in testSearchIndexForStructuredName_phoneticOnly()
78 DataUtil.insertStructuredName(mResolver, rawContactId, values); in testSearchIndexForStructuredName_phoneticOnly()
87 DataUtil.insertStructuredName(mResolver, rawContactId, values); in testSearchIndexForStructuredName_phoneticOnly()
102 DataUtil.insertStructuredName(mResolver, rawContactId, values); in testSearchIndexForChineseName()
118 DataUtil.insertStructuredName(mResolver, rawContactId, values); in testSearchByChineseName()
138 DataUtil.insertStructuredName(mResolver, rawContactId, values); in testSearchIndexForKoreanName()
[all …]
DCallerInfoIntegrationTest.java26 import com.android.providers.contacts.testutil.DataUtil;
48 DataUtil.insertStructuredName(mResolver, rawContactId, "Hot", "Tamale"); in testCallerInfo()
DContactsProvider2Test.java96 import com.android.providers.contacts.testutil.DataUtil;
1327 Uri dataUri1 = DataUtil.insertStructuredName(mResolver, rawContactId1, "John", "Doe"); in testRawContactDataQuery()
1329 Uri dataUri2 = DataUtil.insertStructuredName(mResolver, rawContactId2, "Jane", "Doe"); in testRawContactDataQuery()
1349 DataUtil.insertStructuredName(mResolver, rawContactId, "Meghan", "Knox"); in testPhonesQuery()
1666 DataUtil.insertStructuredName(mResolver, rawContactId, "Hot", "Tamale"); in testPhoneLookup()
1703 DataUtil.insertStructuredName(mResolver, rawContactId, "Hot", "Tamale"); in testSipPhoneLookup()
1732 DataUtil.insertStructuredName(mResolver, rawContactId, "Emergency", /* familyName =*/ null); in testPhoneLookupStarUseCases()
1737 DataUtil.insertStructuredName(mResolver, rawContactId, "Voicemail", /* familyName =*/ null); in testPhoneLookupStarUseCases()
1764 DataUtil.insertStructuredName(mResolver, rawContactId1, "Emergency", in testPhoneLookupReturnsNothingRatherThanStar()
1778 DataUtil.insertStructuredName(mResolver, rawContactId1, "Voice mail", in testPhoneLookupReturnsNothingRatherThanMissStar()
[all …]
DGlobalSearchSupportTest.java31 import com.android.providers.contacts.testutil.DataUtil;
54 DataUtil.insertStructuredName(mResolver, rawContactId, "Deer", "Dough"); in testSearchSuggestionsNotInDefaultDirectory()
DBaseContactsProvider2Test.java65 import com.android.providers.contacts.testutil.DataUtil;
1626 DataUtil.insertStructuredName(mResolver, rawContactId, givenName, familyName); in build()
/packages/providers/ContactsProvider/test_common/src/com/android/providers/contacts/testutil/
DDataUtil.java30 public class DataUtil { class
DRawContactUtil.java112 DataUtil.insertStructuredName(resolver, rawContactId, firstName, lastName); in createRawContactWithName()