HomeSort by relevance Sort by last modified time
    Searched refs:entityUri (Results 1 - 4 of 4) 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/model/
EntityDeltaList.java 67 public static EntityDeltaList fromQuery(Uri entityUri, ContentResolver resolver,
70 entityUri, null, selection, selectionArgs,
  /packages/apps/Contacts/src/com/android/contacts/
ContactLoader.java 712 Uri entityUri = Uri.withAppendedPath(contactUri, Contacts.Entity.CONTENT_DIRECTORY);
713 Cursor cursor = resolver.query(entityUri, ContactQuery.COLUMNS, null, null,
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactsProvider2Test.java 706 Uri entityUri = Uri.withAppendedPath(contactUri, Contacts.Entity.CONTENT_DIRECTORY);
708 assertEntityRows(entityUri, contactId, rawContactId1, rawContactId2);
730 Uri entityUri = Uri.withAppendedPath(contactLookupUri, Contacts.Entity.CONTENT_DIRECTORY);
731 assertEntityRows(entityUri, contactId, rawContactId1, rawContactId2);
735 entityUri = Uri.withAppendedPath(contactLookupUri, Contacts.Entity.CONTENT_DIRECTORY);
736 assertEntityRows(entityUri, contactId, rawContactId1, rawContactId2);
740 entityUri = Uri.withAppendedPath(contactLookupUri, Contacts.Entity.CONTENT_DIRECTORY);
741 assertEntityRows(entityUri, contactId, rawContactId1, rawContactId2);
744 private void assertEntityRows(Uri entityUri, long contactId, long rawContactId1,
748 Cursor cursor = mResolver.query(entityUri, null, null, null
    [all...]

Completed in 1383 milliseconds