HomeSort by relevance Sort by last modified time
    Searched defs:entityUri (Results 1 - 3 of 3) sorted by null

  /packages/apps/Contacts/tests/src/com/android/contacts/
ContactLoaderTest.java 105 final Uri entityUri = Uri.withAppendedPath(baseUri, Contacts.Entity.CONTENT_DIRECTORY);
112 queries.fetchAllData(entityUri, contactId, rawContactId, dataId, lookupKey);
140 final Uri entityUri = Uri.withAppendedPath(lookupUri, Contacts.Entity.CONTENT_DIRECTORY);
144 queries.fetchAllData(entityUri, contactId, rawContactId, dataId, lookupKey);
170 final Uri entityUri = Uri.withAppendedPath(lookupUri, Contacts.Entity.CONTENT_DIRECTORY);
175 queries.fetchAllData(entityUri, contactId, rawContactId, dataId, lookupKey);
200 final Uri entityUri = Uri.withAppendedPath(lookupNoIdUri, Contacts.Entity.CONTENT_DIRECTORY);
204 queries.fetchAllData(entityUri, contactId, rawContactId, dataId, lookupKey);
229 final Uri entityUri = Uri.withAppendedPath(lookupUri, Contacts.Entity.CONTENT_DIRECTORY);
233 queries.fetchAllData(entityUri, contactId, rawContactId, dataId, lookupKey)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactLoader.java 751 Uri entityUri = Uri.withAppendedPath(contactUri, Contacts.Entity.CONTENT_DIRECTORY);
752 Cursor cursor = resolver.query(entityUri, ContactQuery.COLUMNS, null, null,
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsProvider2Test.java 717 Uri entityUri = Uri.withAppendedPath(contactUri, Contacts.Entity.CONTENT_DIRECTORY);
719 assertEntityRows(entityUri, contactId, rawContactId1, rawContactId2);
741 Uri entityUri = Uri.withAppendedPath(contactLookupUri, Contacts.Entity.CONTENT_DIRECTORY);
742 assertEntityRows(entityUri, contactId, rawContactId1, rawContactId2);
746 entityUri = Uri.withAppendedPath(contactLookupUri, Contacts.Entity.CONTENT_DIRECTORY);
747 assertEntityRows(entityUri, contactId, rawContactId1, rawContactId2);
751 entityUri = Uri.withAppendedPath(contactLookupUri, Contacts.Entity.CONTENT_DIRECTORY);
752 assertEntityRows(entityUri, contactId, rawContactId1, rawContactId2);
755 private void assertEntityRows(Uri entityUri, long contactId, long rawContactId1,
759 Cursor cursor = mResolver.query(entityUri, null, null, null
    [all...]

Completed in 268 milliseconds