Home
last modified time | relevance | path

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

/aosp12/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DContactAggregator2.java901 final Cursor c = db.query(NullNameRawContactsIdsQuery.TABLE, in rawContactWithoutName()
902 NullNameRawContactsIdsQuery.COLUMNS, selection, null, null, null, null); in rawContactWithoutName()
906 return TextUtils.isEmpty(c.getString(NullNameRawContactsIdsQuery.NAME)); in rawContactWithoutName()
930 final Cursor c = db.query(NullNameRawContactsIdsQuery.TABLE, in updateScoreForCandidatesWithoutName()
931 NullNameRawContactsIdsQuery.COLUMNS, mSb.toString(), null, null, null, null); in updateScoreForCandidatesWithoutName()
935 Long rId = c.getLong(NullNameRawContactsIdsQuery.RAW_CONTACT_ID); in updateScoreForCandidatesWithoutName()
936 Long contactId = c.getLong(NullNameRawContactsIdsQuery.CONTACT_ID); in updateScoreForCandidatesWithoutName()
937 Long accountId = c.getLong(NullNameRawContactsIdsQuery.ACCOUNT_ID); in updateScoreForCandidatesWithoutName()
938 String name = c.getString(NullNameRawContactsIdsQuery.NAME); in updateScoreForCandidatesWithoutName()
1062 protected interface NullNameRawContactsIdsQuery { interface in ContactAggregator2