Home | History | Annotate | Download | only in provider

Lines Matching defs:RawContacts

71  * A row in the {@link RawContacts} table represents a set of data describing a
77 * RawContacts presumably describing the same person. When data in or associated with
78 * the RawContacts table is changed, the affected aggregate contacts are updated as
122 * {@link RawContacts#DIRTY} is not automatically set and the
127 * the delete operation in {@link RawContacts}.
740 * @see RawContacts
759 * @see RawContacts
803 * @see RawContacts
860 * Reference to the row in the RawContacts table holding the contact name.
1066 * Contact name and contact name metadata columns in the RawContacts table.
1069 * @see RawContacts
1205 * {@link RawContacts#CONTACT_ID} column gets the _ID of the aggregate
1207 * Contact and puts its _ID into the {@link RawContacts#CONTACT_ID} column
1635 * {@link ContactsContract.RawContacts} as well as
1657 * and RawContacts fields in the first row returned for each raw contact only and
2037 * found, the raw contact's {@link RawContacts#CONTACT_ID} column gets the _ID of
2039 * its _ID is put into the {@link RawContacts#CONTACT_ID} column of the newly
2273 * aggregation is reflected in the {@link RawContacts} table by the change of the
2296 * values.put(RawContacts.ACCOUNT_TYPE, accountType);
2297 * values.put(RawContacts.ACCOUNT_NAME, accountName);
2298 * Uri rawContactUri = getContentResolver().insert(RawContacts.CONTENT_URI, values);
2323 * ops.add(ContentProviderOperation.newInsert(RawContacts.CONTENT_URI)
2324 * .withValue(RawContacts.ACCOUNT_TYPE, accountType)
2325 * .withValue(RawContacts.ACCOUNT_NAME, accountName)
2374 * Cursor c = getContentResolver().query(RawContacts.CONTENT_URI,
2375 * new String[]{RawContacts._ID},
2376 * RawContacts.CONTACT_ID + "=?",
2386 * Uri rawContactUri = RawContacts.CONTENT_URI.buildUpon()
2387 * .appendQueryParameter(RawContacts.ACCOUNT_NAME, accountName)
2388 * .appendQueryParameter(RawContacts.ACCOUNT_TYPE, accountType)
2391 * RawContacts.STARRED + "<>0", null, null, null);
2394 * RawContacts.DELETED + "<>0", null, null, null);
2402 * Uri rawContactUri = ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId);
2405 * new String[]{RawContacts.SOURCE_ID, Entity.DATA_ID, Entity.MIMETYPE, Entity.DATA1},
2427 * <th colspan='4'>RawContacts</th>
2637 public static final class RawContacts implements BaseColumns, RawContactsColumns,
2642 private RawContacts() {
2715 * entry of the given {@link RawContacts} entry.
2718 // TODO: use a lighter query by joining rawcontacts with contacts in provider
2721 RawContacts.CONTACT_ID, Contacts.LOOKUP_KEY
2759 * {@link RawContacts.Entity#CONTENT_DIRECTORY} to the raw contact URI. See
2772 * RawContacts followed by Data. The reason is that Entity reads all
2800 * {@link RawContacts.StreamItems#CONTENT_DIRECTORY} to the raw contact URI. See
2829 * {@link RawContacts.DisplayPhoto#CONTENT_DIRECTORY} to the raw contact URI.
2846 * ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId),
2847 * RawContacts.DisplayPhoto.CONTENT_DIRECTORY);
2913 final int columnRawContactId = cursor.getColumnIndexOrThrow(RawContacts._ID);
3115 * {@link RawContacts#ACCOUNT_TYPE} and {@link RawContacts#ACCOUNT_NAME}.
3116 * {@link RawContacts#DATA_SET} isn't required.
3125 * <dt>Via the {@link RawContacts.StreamItems#CONTENT_DIRECTORY} sub-path of a raw contact:</dt>
3132 * Uri.Builder builder = RawContacts.CONTENT_URI.buildUpon();
3134 * builder.appendEncodedPath(RawContacts.StreamItems.CONTENT_DIRECTORY);
3135 * builder.appendQueryParameter(RawContacts.ACCOUNT_NAME, accountName);
3136 * builder.appendQueryParameter(RawContacts.ACCOUNT_TYPE, accountType);
3150 * builder.appendQueryParameter(RawContacts.ACCOUNT_NAME, accountName);
3151 * builder.appendQueryParameter(RawContacts.ACCOUNT_TYPE, accountType);
3222 * ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId),
3223 * RawContacts.StreamItems.CONTENT_DIRECTORY)),
3354 * A reference to the {@link RawContacts#_ID}
3370 * {@link RawContacts#ACCOUNT_TYPE}
3379 * {@link RawContacts#ACCOUNT_NAME}
3390 * {@link RawContacts#DATA_SET}
3399 * {@link RawContacts#SOURCE_ID}
3489 * {@link RawContacts#ACCOUNT_TYPE} and {@link RawContacts#ACCOUNT_NAME}.
3490 * {@link RawContacts#DATA_SET} isn't required.
3511 * builder.appendQueryParameter(RawContacts.ACCOUNT_NAME, accountName);
3512 * builder.appendQueryParameter(RawContacts.ACCOUNT_TYPE, accountType);
3525 * builder.appendQueryParameter(RawContacts.ACCOUNT_NAME, accountName);
3526 * builder.appendQueryParameter(RawContacts.ACCOUNT_TYPE, accountType);
3551 * builder.appendQueryParameter(RawContacts.ACCOUNT_NAME, accountName);
3552 * builder.appendQueryParameter(RawContacts.ACCOUNT_TYPE, accountType);
3563 * builder.appendQueryParameter(RawContacts.ACCOUNT_NAME, accountName);
3564 * builder.appendQueryParameter(RawContacts.ACCOUNT_TYPE, accountType);
3585 * builder.appendQueryParameter(RawContacts.ACCOUNT_NAME, accountName);
3586 * builder.appendQueryParameter(RawContacts.ACCOUNT_TYPE, accountType);
3596 * builder.appendQueryParameter(RawContacts.ACCOUNT_NAME, accountName);
3597 * builder.appendQueryParameter(RawContacts.ACCOUNT_TYPE, accountType);
3774 * A reference to the {@link RawContacts#_ID}
4056 * {@link RawContactsEntity}. See also {@link RawContacts}.
4109 * <td>The id of the row in the {@link RawContacts} table that this data belongs to.</td>
4248 * <th colspan='4'>Join with {@link ContactsContract.RawContacts}</th>
4261 * <td>See {@link RawContacts}.</td>
4267 * <td>See {@link RawContacts}.</td>
4274 * via the implicit join to the {@link RawContacts} table, see above.
4422 RawContacts.CONTACT_ID, Contacts.LOOKUP_KEY
4479 * <th colspan='4'>RawContacts</th>
4485 * <td>Raw contact row ID. See {@link RawContacts}.</td>
4491 * <td>See {@link RawContacts}.</td>
4497 * <td>See {@link RawContacts}.</td>
4503 * <td>See {@link RawContacts}.</td>
7300 * <td>A reference to the {@link RawContacts#_ID} of the raw contact that
7307 * <td>A reference to the other {@link RawContacts#_ID} of the raw contact
7362 * A reference to the {@link RawContacts#_ID} of the raw contact that the rule applies to.
7367 * A reference to the other {@link RawContacts#_ID} of the raw contact that the rule