Lines Matching refs:CONTENT_URI

192      * A boolean parameter for {@link CommonDataKinds.Phone#CONTENT_URI},
193 * {@link CommonDataKinds.Email#CONTENT_URI}, and
194 * {@link CommonDataKinds.StructuredPostal#CONTENT_URI}.
396 * Then Contacts Provider sends a {@link Directory#CONTENT_URI Directory.CONTENT_URI}
444 public static final Uri CONTENT_URI =
448 * The MIME-type of {@link #CONTENT_URI} providing a directory of
455 * The MIME type of a {@link #CONTENT_URI} item.
619 resolver.update(Directory.CONTENT_URI, contentValues, null, null);
648 public static final Uri CONTENT_URI =
656 return SyncStateContract.Helpers.get(provider, CONTENT_URI, account);
664 return SyncStateContract.Helpers.getWithUri(provider, CONTENT_URI, account);
672 SyncStateContract.Helpers.set(provider, CONTENT_URI, account, data);
679 return SyncStateContract.Helpers.newSetOperation(CONTENT_URI, account, data);
702 public static final Uri CONTENT_URI =
703 Uri.withAppendedPath(Profile.CONTENT_URI, CONTENT_DIRECTORY);
710 return SyncStateContract.Helpers.get(provider, CONTENT_URI, account);
718 return SyncStateContract.Helpers.getWithUri(provider, CONTENT_URI, account);
726 SyncStateContract.Helpers.set(provider, CONTENT_URI, account, data);
733 return SyncStateContract.Helpers.newSetOperation(CONTENT_URI, account, data);
883 * {@link ContactsContract.DisplayPhoto#CONTENT_URI} to create a URI to the photo.
893 * {@link ContactsContract.DisplayPhoto#CONTENT_URI}. Otherwise, this will
1217 * {@link #CONTENT_LOOKUP_URI} instead of {@link #CONTENT_URI}.</li>
1411 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "contacts");
1421 * equivalent to {@link #CONTENT_URI}. If the contact's row ID changes
1429 public static final Uri CONTENT_LOOKUP_URI = Uri.withAppendedPath(CONTENT_URI,
1440 public static final Uri CONTENT_VCARD_URI = Uri.withAppendedPath(CONTENT_URI,
1468 public static final Uri CONTENT_MULTI_VCARD_URI = Uri.withAppendedPath(CONTENT_URI,
1475 * @param contactUri A {@link #CONTENT_URI} row, or an existing
1508 * Computes a content URI (see {@link #CONTENT_URI}) given a lookup URI.
1525 return ContentUris.withAppendedId(Contacts.CONTENT_URI, contactId);
1547 Uri uri = ContentUris.withAppendedId(CONTENT_URI, contactId);
1556 * {@link #CONTENT_URI} URI. The filter string will be used to match
1561 CONTENT_URI, "filter");
1569 CONTENT_URI, "strequent");
1576 CONTENT_URI, "frequent");
1588 CONTENT_URI, "group");
1591 * The MIME type of {@link #CONTENT_URI} providing a directory of
1597 * The MIME type of a {@link #CONTENT_URI} subdirectory of a single
1603 * The MIME type of a {@link #CONTENT_URI} subdirectory of a single
1611 * with a {@link #CONTENT_URI} or {@link #CONTENT_LOOKUP_URI}.
1686 * with a {@link #CONTENT_URI} or {@link #CONTENT_LOOKUP_URI}.
1720 * Uri uri = Contacts.CONTENT_URI.buildUpon()
1732 * This directory can be used either with a {@link #CONTENT_URI} or
1827 android.net.Uri.Builder builder = Contacts.CONTENT_URI.buildUpon();
1864 * Uri contactUri = ContentUris.withAppendedId(Contacts.CONTENT_URI, contactId);
1889 * Uri contactUri = ContentUris.withAppendedId(Contacts.CONTENT_URI, contactId);
1909 * This directory can be used either with a {@link #CONTENT_URI} or
1951 * either a {@link #CONTENT_URI} or a {@link #CONTENT_LOOKUP_URI} URI.
1999 * either a {@link #CONTENT_URI} or a {@link #CONTENT_LOOKUP_URI} URI.
2043 * <li>The {@link #CONTENT_URI} for profiles behaves in much the same way as
2069 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "profile");
2077 public static final Uri CONTENT_VCARD_URI = Uri.withAppendedPath(CONTENT_URI,
2087 public static final Uri CONTENT_RAW_CONTACTS_URI = Uri.withAppendedPath(CONTENT_URI,
2241 * Uri rawContactUri = getContentResolver().insert(RawContacts.CONTENT_URI, values);
2254 * getContentResolver().insert(Data.CONTENT_URI, values);
2266 * ops.add(ContentProviderOperation.newInsert(RawContacts.CONTENT_URI)
2271 * ops.add(ContentProviderOperation.newInsert(Data.CONTENT_URI)
2317 * Cursor c = getContentResolver().query(RawContacts.CONTENT_URI,
2345 * Uri rawContactUri = ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId);
2592 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "raw_contacts");
2595 * The MIME type of the results from {@link #CONTENT_URI} when a specific
2601 * The MIME type of the results when a raw contact ID is appended to {@link #CONTENT_URI},
2789 * ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId),
2915 contact.addSubValue(ContactsContract.Data.CONTENT_URI, cv);
3075 * Uri.Builder builder = RawContacts.CONTENT_URI.buildUpon();
3084 * <dt>Via {@link StreamItems#CONTENT_URI}:</dt>
3092 * Uri.Builder builder = StreamItems.CONTENT_URI.buildUpon();
3114 * ContentUris.withAppendedId(StreamItems.CONTENT_URI, streamItemId),
3136 * {@link StreamItems#CONTENT_URI} URI. Only social stream entries that were
3140 * {@link StreamItems#CONTENT_URI} URI. Only social stream entries that were
3148 * ContentUris.withAppendedId(Contacts.CONTENT_URI, contactId),
3155 * Cursor c = getContentResolver().query(Contacts.CONTENT_URI.buildUpon()
3165 * ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId),
3174 * StreamItems.CONTENT_URI, streamItemId),
3191 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "stream_items");
3206 public static final Uri CONTENT_PHOTO_URI = Uri.withAppendedPath(CONTENT_URI, "photo");
3451 * Uri.Builder builder = StreamItems.CONTENT_URI.buildUpon();
3490 * Uri.Builder builder = StreamItems.CONTENT_URI.buildUpon();
3524 * Uri.Builder builder = StreamItems.CONTENT_URI.buildUpon();
3536 * Uri.Builder builder = StreamItems.CONTENT_URI.buildUpon();
3554 * ContentUris.withAppendedId(StreamItems.CONTENT_URI, streamItemId)
3564 * ContentUris.withAppendedId(StreamItems.CONTENT_URI, streamItemId)
3907 * Uri dataUri = getContentResolver().insert(Data.CONTENT_URI, values);
3915 * ops.add(ContentProviderOperation.newInsert(Data.CONTENT_URI)
3934 * ops.add(ContentProviderOperation.newUpdate(Data.CONTENT_URI)
3951 * ops.add(ContentProviderOperation.newDelete(Data.CONTENT_URI)
3965 * Cursor c = getContentResolver().query(Data.CONTENT_URI,
3977 * Cursor c = getContentResolver().query(Data.CONTENT_URI,
3996 * Many columns are available via a {@link Data#CONTENT_URI} query. For best performance you
4325 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "data");
4328 * The MIME type of the results from {@link #CONTENT_URI}.
4377 * Uri entityUri = ContentUris.withAppendedId(RawContactsEntity.CONTENT_URI, rawContactId);
4511 public static final Uri CONTENT_URI =
4518 Uri.withAppendedPath(Profile.CONTENT_URI, "raw_contact_entities");
4521 * The MIME type of {@link #CONTENT_URI} providing a directory of raw contact entities.
4527 * Data.CONTENT_URI contains only exportable data.
4698 * Uri lookupUri = Uri.withAppendedPath(PhoneLookup.CONTENT_URI, Uri.encode(phoneNumber));
4925 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "status_updates");
4931 Uri.withAppendedPath(Profile.CONTENT_URI, "status_updates");
4969 * The MIME type of {@link #CONTENT_URI} providing a directory of
4975 * The MIME type of a {@link #CONTENT_URI} subdirectory of a single
5245 * ops.add(ContentProviderOperation.newInsert(Data.CONTENT_URI)
5251 * ops.add(ContentProviderOperation.newInsert(Data.CONTENT_URI)
5398 * The MIME type of {@link #CONTENT_URI} providing a directory of
5408 public static final Uri CONTENT_URI = Uri.withAppendedPath(Data.CONTENT_URI,
5417 public static final Uri CONTENT_FILTER_URI = Uri.withAppendedPath(CONTENT_URI,
5590 * The MIME type of {@link #CONTENT_URI} providing a directory of email addresses.
5599 public static final Uri CONTENT_URI = Uri.withAppendedPath(Data.CONTENT_URI,
5617 public static final Uri CONTENT_LOOKUP_URI = Uri.withAppendedPath(CONTENT_URI,
5637 public static final Uri CONTENT_FILTER_URI = Uri.withAppendedPath(CONTENT_URI,
5784 * The MIME type of {@link #CONTENT_URI} providing a directory of
5793 public static final Uri CONTENT_URI = Uri.withAppendedPath(Data.CONTENT_URI,
6823 * Similar to {@link Phone#CONTENT_URI}, but returns callable data instead of only
6826 public static final Uri CONTENT_URI = Uri.withAppendedPath(Data.CONTENT_URI,
6832 public static final Uri CONTENT_FILTER_URI = Uri.withAppendedPath(CONTENT_URI,
7111 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "groups");
7213 public static final Uri CONTENT_URI =
7217 * The MIME type of {@link #CONTENT_URI} providing a directory of data.
7222 * The MIME type of a {@link #CONTENT_URI} subdirectory of an aggregation exception
7406 public static final Uri CONTENT_URI =
7410 * The MIME-type of {@link #CONTENT_URI} providing a directory of
7416 * The MIME-type of {@link #CONTENT_URI} providing a single setting.
7440 public static final Uri CONTENT_URI =
7444 * The MIME-type of {@link #CONTENT_URI} providing a directory of
7537 * toward {@link Data#CONTENT_URI}.
7568 Uri.withAppendedPath(Data.CONTENT_URI, "usagefeedback");
7576 Uri.withAppendedPath(Contacts.CONTENT_URI, "delete_usage");
7785 * Uri displayPhotoUri = ContentUris.withAppendedId(DisplayPhoto.CONTENT_URI, photoKey);
7809 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "display_photo");
8317 * Intent intent = new Intent(Intent.ACTION_INSERT, Contacts.CONTENT_URI);