Home | History | Annotate | Download | only in group

Lines Matching refs:RawContacts

30 import android.provider.ContactsContract.RawContacts;
54 RawContacts._ID, // 0
55 RawContacts.CONTACT_ID, // 1
56 RawContacts.DISPLAY_NAME_PRIMARY // 2
64 RawContacts._ID, // 0
65 RawContacts.CONTACT_ID, // 1
186 String accountClause = RawContacts.ACCOUNT_NAME + "=? AND " +
187 RawContacts.ACCOUNT_TYPE + "=?";
190 accountClause += " AND " + RawContacts.DATA_SET + " IS NULL";
193 accountClause += " AND " + RawContacts.DATA_SET + "=?";
200 RawContacts.CONTENT_URI, PROJECTION_FILTERED_MEMBERS,
202 RawContacts.DISPLAY_NAME_PRIMARY + " LIKE ? OR " +
203 RawContacts.DISPLAY_NAME_ALTERNATIVE + " LIKE ? )",
204 args, RawContacts.DISPLAY_NAME_PRIMARY + " COLLATE LOCALIZED ASC");
244 rawContactIdSelectionBuilder.append(RawContacts._ID + " IN (")