Home | History | Annotate | Download | only in ui

Lines Matching refs:RawContacts

67 import android.provider.ContactsContract.RawContacts;
219 mSelection = RawContacts.CONTACT_ID + "=" + contactId;
220 } else if (RawContacts.CONTENT_ITEM_TYPE.equals(mimeType)) {
223 mSelection = RawContacts.CONTACT_ID + "=" + contactId;
248 final String accountType = state.getValues().getAsString(RawContacts.ACCOUNT_TYPE);
390 * {@link RawContacts}.
413 final String accountType = values.getAsString(RawContacts.ACCOUNT_TYPE);
416 final long rawContactId = values.getAsLong(RawContacts._ID);
684 // Trim any empty fields, and RawContacts, before persisting
703 RawContacts.CONTENT_URI, rawContactId);
706 mContactLookupUri = RawContacts.getContactLookupUri(resolver,
743 RawContacts.CONTENT_URI.getEncodedPath())) {
866 RawContacts._ID,
867 RawContacts.CONTACT_ID,
868 RawContacts.NAME_VERIFIED,
871 String SELECTION = RawContacts.CONTACT_ID + "=? OR " + RawContacts.CONTACT_ID + "=?";
886 Cursor c = resolver.query(RawContacts.CONTENT_URI,
923 ContentUris.withAppendedId(RawContacts.CONTENT_URI, verifiedNameRawContactId));
924 builder.withValue(RawContacts.NAME_VERIFIED, 1);
933 intent.setData(ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactIds[0]));
970 * Create a new {@link RawContacts} which will exist as another
994 final String accountType = delta.getValues().getAsString(RawContacts.ACCOUNT_TYPE);
1196 * Build dialog that handles adding a new {@link RawContacts} after the user
1299 values.put(RawContacts.ACCOUNT_NAME, account.name);
1300 values.put(RawContacts.ACCOUNT_TYPE, account.type);
1302 values.putNull(RawContacts.ACCOUNT_NAME);
1303 values.putNull(RawContacts.ACCOUNT_TYPE);
1345 String accountType = one.getValues().getAsString(RawContacts.ACCOUNT_TYPE);
1348 accountType = two.getValues().getAsString(RawContacts.ACCOUNT_TYPE);
1381 String oneAccount = oneValues.getAsString(RawContacts.ACCOUNT_NAME);
1384 String twoAccount = twoValues.getAsString(RawContacts.ACCOUNT_NAME);
1392 Long oneId = oneValues.getAsLong(RawContacts._ID);
1393 Long twoId = twoValues.getAsLong(RawContacts._ID);