Searched defs:CONTENT_URI (Results 1 - 20 of 20) sorted by relevance

/frameworks/opt/photoviewer/src/com/android/ex/photo/provider/
H A DPhotoContract.java40 public static final String CONTENT_URI = "contentUri"; field in interface:PhotoContract.PhotoViewColumns
63 PhotoViewColumns.CONTENT_URI,
/frameworks/base/core/java/android/provider/
H A DUserDictionary.java43 public static final Uri CONTENT_URI = field in class:UserDictionary
56 public static final Uri CONTENT_URI = field in class:UserDictionary.Words
60 * The MIME type of {@link #CONTENT_URI} providing a directory of words.
65 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single word.
181 Uri result = resolver.insert(CONTENT_URI, values);
H A DBlockedNumberContract.java82 * Uri uri = getContentResolver().insert(BlockedNumbers.CONTENT_URI, values);
88 * Uri uri = getContentResolver().insert(BlockedNumbers.CONTENT_URI, values);
93 * Uri uri = getContentResolver().insert(BlockedNumbers.CONTENT_URI, values);
110 * Uri uri = getContentResolver().insert(BlockedNumbers.CONTENT_URI, values);
122 * Cursor c = getContentResolver().query(BlockedNumbers.CONTENT_URI,
176 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "blocked"); field in class:BlockedNumberContract.BlockedNumbers
179 * The MIME type of {@link #CONTENT_URI} itself providing a directory of blocked phone
185 * The MIME type of a blocked phone number under {@link #CONTENT_URI}.
260 * {@link BlockedNumbers#CONTENT_URI} URI.
H A DVoicemailContract.java189 public static final Uri CONTENT_URI = field in class:VoicemailContract.Voicemails
325 return Voicemails.CONTENT_URI.buildUpon()
407 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/status"); field in class:VoicemailContract.Status
626 return Status.CONTENT_URI.buildUpon()
H A DBrowserContract.java254 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "bookmarks"); field in class:BrowserContract.Bookmarks
304 Uri.withAppendedPath(CONTENT_URI, "folder");
328 * The MIME type of {@link #CONTENT_URI} providing a directory of bookmarks.
333 * The MIME type of a {@link #CONTENT_URI} of a single bookmark.
408 * Directory under {@link Bookmarks#CONTENT_URI}
410 public static final Uri CONTENT_URI = field in class:BrowserContract.Accounts
447 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "history"); field in class:BrowserContract.History
450 * The MIME type of {@link #CONTENT_URI} providing a directory of browser history items.
455 * The MIME type of a {@link #CONTENT_URI} of a single browser history item.
470 public static final Uri CONTENT_URI field in class:BrowserContract.Searches
518 public static final Uri CONTENT_URI = field in class:BrowserContract.SyncState
576 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "images"); field in class:BrowserContract.Images
649 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "image_mappings"); field in class:BrowserContract.ImageMappings
676 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "combined"); field in class:BrowserContract.Combined
699 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "settings"); field in class:BrowserContract.Settings
[all...]
H A DCallLog.java60 public static final Uri CONTENT_URI = field in class:CallLog
81 public static final Uri CONTENT_URI = field in class:CallLog.Calls
148 public static final Uri CONTENT_URI_WITH_VOICEMAIL = CONTENT_URI.buildUpon()
158 * The MIME type of {@link #CONTENT_URI} and {@link #CONTENT_FILTER_URI}
164 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single
680 cursor = resolver.query(Phone.CONTENT_URI,
823 CONTENT_URI,
844 userManager.isUserUnlocked(user) ? CONTENT_URI : SHADOW_CONTENT_URI,
895 resolver.update(Data.CONTENT_URI, values, Data._ID + "=?", new String[] {dataId});
H A DDownloads.java89 public static final Uri CONTENT_URI = field in class:Downloads.Impl
122 * or Downloads.CONTENT_URI if the notification is associated with
810 context.getContentResolver().delete(Impl.CONTENT_URI, QUERY_WHERE_CLAUSE,
H A DContacts.java59 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY); field in class:Contacts
152 public static final Uri CONTENT_URI = field in class:Contacts.Settings
205 Cursor cursor = cr.query(Settings.CONTENT_URI, new String[]{VALUE},
230 cr.update(Settings.CONTENT_URI, values, null, null);
353 public static final Uri CONTENT_URI = field in class:Contacts.People
391 * The MIME type of {@link #CONTENT_URI} providing a directory of
399 * The MIME type of a {@link #CONTENT_URI} subdirectory of a single
448 Uri uri = ContentUris.withAppendedId(CONTENT_URI, personId);
463 Cursor groupsCursor = resolver.query(Groups.CONTENT_URI, GROUPS_PROJECTION,
509 Cursor groupsCursor = resolver.query(Groups.CONTENT_URI, GROUPS_PROJECTIO
804 public static final Uri CONTENT_URI = field in class:Contacts.Groups
994 public static final Uri CONTENT_URI = field in class:Contacts.Phones
1052 public static final Uri CONTENT_URI = field in class:Contacts.GroupMembership
1471 public static final Uri CONTENT_URI = field in class:Contacts.ContactMethods
1622 public static final Uri CONTENT_URI = field in class:Contacts.Presence
1786 public static final Uri CONTENT_URI = field in class:Contacts.Organizations
1878 public static final Uri CONTENT_URI = Uri.parse("content://contacts/photos"); field in class:Contacts.Photos
1933 public static final Uri CONTENT_URI = field in class:Contacts.Extensions
[all...]
H A DCalendarContract.java163 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY); field in class:CalendarContract
493 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + field in class:CalendarContract.CalendarEntity
505 * @param cursor query on {@link #CONTENT_URI}
693 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/calendars"); field in class:CalendarContract.Calendars
856 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/attendees"); field in class:CalendarContract.Attendees
875 return cr.query(CONTENT_URI, projection, ATTENDEES_WHERE, attArgs /* selection args */,
1276 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + field in class:CalendarContract.EventsEntity
1434 subCursor = mResolver.query(Reminders.CONTENT_URI, REMINDERS_PROJECTION,
1439 subCursor = mProvider.query(Reminders.CONTENT_URI, REMINDERS_PROJECTION,
1449 entity.addSubValue(Reminders.CONTENT_URI, reminderValue
1639 public static final Uri CONTENT_URI = field in class:CalendarContract.Events
1796 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + field in class:CalendarContract.Instances
2007 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY field in class:CalendarContract.EventDays
2098 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/reminders"); field in class:CalendarContract.Reminders
2226 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + field in class:CalendarContract.CalendarAlerts
2497 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/colors"); field in class:CalendarContract.Colors
2540 public static final Uri CONTENT_URI = field in class:CalendarContract.ExtendedProperties
2569 public static final Uri CONTENT_URI = field in class:CalendarContract.SyncState
[all...]
H A DContactsContract.java146 * {@link Contacts#CONTENT_URI},
147 * {@link RawContacts#CONTENT_URI},
148 * {@link Data#CONTENT_URI},
149 * {@link CommonDataKinds.Phone#CONTENT_URI},
150 * {@link CommonDataKinds.Callable#CONTENT_URI},
151 * {@link CommonDataKinds.Email#CONTENT_URI},
152 * {@link CommonDataKinds.Contactables#CONTENT_URI},
203 * A boolean parameter for {@link CommonDataKinds.Phone#CONTENT_URI Phone.CONTENT_URI},
204 * {@link CommonDataKinds.Email#CONTENT_URI Emai
406 public static final Uri CONTENT_URI = field in class:ContactsContract.Directory
691 public static final Uri CONTENT_URI = field in class:ContactsContract.SyncState
745 public static final Uri CONTENT_URI = field in class:ContactsContract.ProfileSyncState
1488 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "contacts"); field in class:ContactsContract.Contacts
2217 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "profile"); field in class:ContactsContract.Profile
2295 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, field in class:ContactsContract.DeletedContacts
2781 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "raw_contacts"); field in class:ContactsContract.RawContacts
3409 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "stream_items"); field in class:ContactsContract.StreamItems
4759 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "data"); field in class:ContactsContract.Data
4961 public static final Uri CONTENT_URI = field in class:ContactsContract.RawContactsEntity
5456 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "status_updates"); field in class:ContactsContract.StatusUpdates
5962 public static final Uri CONTENT_URI = Uri.withAppendedPath(Data.CONTENT_URI, field in class:ContactsContract.CommonDataKinds.Phone
6176 public static final Uri CONTENT_URI = Uri.withAppendedPath(Data.CONTENT_URI, field in class:ContactsContract.CommonDataKinds.Email
6430 public static final Uri CONTENT_URI = Uri.withAppendedPath(Data.CONTENT_URI, field in class:ContactsContract.CommonDataKinds.StructuredPostal
7481 public static final Uri CONTENT_URI = Uri.withAppendedPath(Data.CONTENT_URI, field in class:ContactsContract.CommonDataKinds.Callable
7514 public static final Uri CONTENT_URI = Uri.withAppendedPath(Data.CONTENT_URI, field in class:ContactsContract.CommonDataKinds.Contactables
7803 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "groups"); field in class:ContactsContract.Groups
7905 public static final Uri CONTENT_URI = field in class:ContactsContract.AggregationExceptions
8098 public static final Uri CONTENT_URI = field in class:ContactsContract.Settings
8128 public static final Uri CONTENT_URI = field in class:ContactsContract.ProviderStatus
8671 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "display_photo"); field in class:ContactsContract.DisplayPhoto
9422 public static final Uri CONTENT_URI = Uri.withAppendedPath(METADATA_AUTHORITY_URI, field in class:ContactsContract.MetadataSync
9485 public static final Uri CONTENT_URI = field in class:ContactsContract.MetadataSyncState
[all...]
H A DSettings.java1767 public static final Uri CONTENT_URI = field in class:Settings.System
1771 CONTENT_URI,
1978 return Secure.getUriFor(Secure.CONTENT_URI, name);
1983 return Global.getUriFor(Global.CONTENT_URI, name);
1985 return getUriFor(CONTENT_URI, name);
4097 public static final Uri CONTENT_URI = field in class:Settings.Secure
4102 CONTENT_URI,
4327 return Global.getUriFor(Global.CONTENT_URI, name);
4329 return getUriFor(CONTENT_URI, name);
6659 public static final Uri CONTENT_URI field in class:Settings.Global
9294 public static final Uri CONTENT_URI = field in class:Settings.Bookmarks
[all...]
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/content/
H A DSharingSupportProvider.java34 public static final Uri CONTENT_URI = field in class:SharingSupportProvider
52 if (uri.equals(Uri.withAppendedPath(CONTENT_URI, "foo.txt")) ||
53 uri.equals(Uri.withAppendedPath(CONTENT_URI, "bar.txt"))) {
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/content/
H A DSharingSupportProvider.java34 public static final Uri CONTENT_URI = field in class:SharingSupportProvider
52 if (uri.equals(Uri.withAppendedPath(CONTENT_URI, "foo.txt")) ||
53 uri.equals(Uri.withAppendedPath(CONTENT_URI, "bar.txt"))) {
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
H A DTrackerProvider.java37 public static final Uri CONTENT_URI = Uri field in class:TrackerProvider
103 Uri addedUri = ContentUris.withAppendedId(CONTENT_URI, rowId);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DHbpcdLookup.java28 public static final Uri CONTENT_URI = field in class:HbpcdLookup
46 public static final Uri CONTENT_URI = field in class:HbpcdLookup.MccIdd
59 public static final Uri CONTENT_URI = field in class:HbpcdLookup.MccLookup
79 public static final Uri CONTENT_URI = field in class:HbpcdLookup.MccSidConflicts
92 public static final Uri CONTENT_URI = field in class:HbpcdLookup.MccSidRange
105 public static final Uri CONTENT_URI = field in class:HbpcdLookup.ArbitraryMccSidMatch
118 public static final Uri CONTENT_URI = field in class:HbpcdLookup.NanpAreaCode
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderThrottleSupport.java84 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/main"); field in class:LoaderThrottleSupport.MainTable
94 * The MIME type of {@link #CONTENT_URI}.
100 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single row.
446 cr.insert(MainTable.CONTENT_URI, values);
466 cr.delete(MainTable.CONTENT_URI, null, null);
490 CursorLoader cl = new CursorLoader(getActivity(), MainTable.CONTENT_URI,
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderThrottleSupport.java84 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/main"); field in class:LoaderThrottleSupport.MainTable
94 * The MIME type of {@link #CONTENT_URI}.
100 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single row.
446 cr.insert(MainTable.CONTENT_URI, values);
466 cr.delete(MainTable.CONTENT_URI, null, null);
490 CursorLoader cl = new CursorLoader(getActivity(), MainTable.CONTENT_URI,
/frameworks/base/telephony/java/android/telephony/
H A DSubscriptionManager.java95 public static final Uri CONTENT_URI = Uri.parse("content://telephony/siminfo"); field in class:SubscriptionManager
/frameworks/base/media/java/android/media/tv/
H A DTvContract.java129 return ContentUris.withAppendedId(Channels.CONTENT_URI, channelId);
187 Uri.Builder builder = Channels.CONTENT_URI.buildUpon();
226 return ContentUris.withAppendedId(Programs.CONTENT_URI, programId);
235 return Programs.CONTENT_URI.buildUpon()
292 return ContentUris.withAppendedId(RecordedPrograms.CONTENT_URI, recordedProgramId);
302 return ContentUris.withAppendedId(WatchedPrograms.CONTENT_URI, watchedProgramId);
366 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/" field in class:TvContract.Channels
1056 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/" field in class:TvContract.Programs
1606 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/" field in class:TvContract.RecordedPrograms
2022 public static final Uri CONTENT_URI field in class:TvContract.WatchedPrograms
[all...]
/frameworks/opt/telephony/src/java/android/provider/
H A DTelephony.java302 return cr.query(CONTENT_URI, projection, null, null, DEFAULT_SORT_ORDER);
311 return cr.query(CONTENT_URI, projection, where,
318 public static final Uri CONTENT_URI = Uri.parse("content://sms"); field in class:Telephony.Sms
504 public static final Uri CONTENT_URI = Uri.parse("content://sms/inbox"); field in class:Telephony.Sms.Inbox
527 resolver, CONTENT_URI, address, body, subject, date, read, false);
545 return addMessageToUri(subId, resolver, CONTENT_URI, address, body,
565 public static final Uri CONTENT_URI = Uri.parse("content://sms/sent"); field in class:Telephony.Sms.Sent
586 resolver, CONTENT_URI, address, body, subject, date, true, false);
603 return addMessageToUri(subId, resolver, CONTENT_URI, address, body,
623 public static final Uri CONTENT_URI field in class:Telephony.Sms.Draft
673 public static final Uri CONTENT_URI = Uri.parse("content://sms/outbox"); field in class:Telephony.Sms.Outbox
737 public static final Uri CONTENT_URI = Uri.parse("content://sms/conversations"); field in class:Telephony.Sms.Conversations
1845 public static final Uri CONTENT_URI = Uri.withAppendedPath( field in class:Telephony.Threads
1939 public static final Uri CONTENT_URI = Uri.parse("content://mms"); field in class:Telephony.Mms
2052 CONTENT_URI = Uri.parse("content://mms/inbox"); field in class:Telephony.Mms.Inbox
2076 CONTENT_URI = Uri.parse("content://mms/sent"); field in class:Telephony.Mms.Sent
2100 CONTENT_URI = Uri.parse("content://mms/drafts"); field in class:Telephony.Mms.Draft
2124 CONTENT_URI = Uri.parse("content://mms/outbox"); field in class:Telephony.Mms.Outbox
2282 public static final Uri CONTENT_URI = Uri.withAppendedPath( field in class:Telephony.Mms.Rate
2341 public static final Uri CONTENT_URI = Uri.parse("content://mms-sms/"); field in class:Telephony.MmsSms
2426 public static final Uri CONTENT_URI = Uri.withAppendedPath( field in class:Telephony.MmsSms.PendingMessages
2538 public static final Uri CONTENT_URI = Uri.parse("content://telephony/carriers"); field in class:Telephony.Carriers
2815 public static final Uri CONTENT_URI = Uri.parse("content://cellbroadcasts"); field in class:Telephony.CellBroadcasts
[all...]

Completed in 1975 milliseconds