Home
last modified time | relevance | path

Searched refs:RawContactIdQuery (Results 1 – 3 of 3) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator.java483 Cursor cursor = db.query(RawContactIdQuery.TABLE, RawContactIdQuery.COLUMNS, in updateAggregationAfterVisibilityChange()
484 RawContactIdQuery.SELECTION, mSelectionArgs1, null, null, null); in updateAggregationAfterVisibilityChange()
487 long rawContactId = cursor.getLong(RawContactIdQuery.RAW_CONTACT_ID); in updateAggregationAfterVisibilityChange()
904 final Cursor c = db.query(RawContactIdQuery.TABLE, RawContactIdQuery.COLUMNS, in findMatchingContacts()
908 long rawContactId = c.getLong(RawContactIdQuery.RAW_CONTACT_ID); in findMatchingContacts()
DContactAggregator2.java468 Cursor cursor = db.query(RawContactIdQuery.TABLE, RawContactIdQuery.COLUMNS, in updateAggregationAfterVisibilityChange()
469 RawContactIdQuery.SELECTION, mSelectionArgs1, null, null, null); in updateAggregationAfterVisibilityChange()
472 long rawContactId = cursor.getLong(RawContactIdQuery.RAW_CONTACT_ID); in updateAggregationAfterVisibilityChange()
814 final Cursor c = db.query(RawContactIdQuery.TABLE, RawContactIdQuery.COLUMNS, in findMatchingContacts()
818 long rawContactId = c.getLong(RawContactIdQuery.RAW_CONTACT_ID); in findMatchingContacts()
819 long accountId = c.getLong(RawContactIdQuery.ACCOUNT_ID); in findMatchingContacts()
DAbstractContactAggregator.java888 protected static class RawContactIdQuery { class in AbstractContactAggregator