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

/development/samples/NotePad/src/com/example/android/notepad/
H A DNotePad.java84 public static final Uri CONTENT_URI = Uri.parse(SCHEME + AUTHORITY + PATH_NOTES); field in class:NotePad.Notes
111 * The MIME type of {@link #CONTENT_URI} providing a directory of notes.
116 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single
/development/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"))) {
/development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
H A DWeatherDataProvider.java52 public static final Uri CONTENT_URI = field in class:WeatherDataProvider
/development/samples/training/threadsample/src/com/example/android/threadsample/
H A DDataProviderContract.java25 public static final Uri CONTENT_URI = Uri.parse(SCHEME + "://" + AUTHORITY); field in class:DataProviderContract
56 Uri.withAppendedPath(CONTENT_URI, PICTUREURL_TABLE_NAME);
87 Uri.withAppendedPath(CONTENT_URI, DATE_TABLE_NAME);
/development/samples/SearchableDictionary/src/com/example/android/searchabledict/
H A DDictionaryProvider.java35 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/dictionary"); field in class:DictionaryProvider
/development/samples/MySampleRss/src/com/example/codelab/rssexample/
H A DRssContentProvider.java56 public static final Uri CONTENT_URI = Uri.parse( "content://my_rss_item/rssitem"); field in class:RssContentProvider
186 Uri newUri = CONTENT_URI.addId(rowId);
189 getContext().getContentResolver().notifyInsert(CONTENT_URI, null);
/development/samples/ApiDemos/src/com/example/android/apis/app/
H A DLoaderThrottle.java83 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/main"); field in class:LoaderThrottle.MainTable
93 * The MIME type of {@link #CONTENT_URI}.
99 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single row.
445 cr.insert(MainTable.CONTENT_URI, values);
466 cr.delete(MainTable.CONTENT_URI, null, null);
490 CursorLoader cl = new CursorLoader(getActivity(), MainTable.CONTENT_URI,
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
H A DContactManager.java74 final Cursor cursor = resolver.query(Groups.CONTENT_URI, new String[] { Groups._ID },
96 final Uri newGroupUri = resolver.insert(Groups.CONTENT_URI, contentValues);
188 final Cursor c = resolver.query(DirtyQuery.CONTENT_URI,
384 resolver.query(DataQuery.CONTENT_URI, DataQuery.PROJECTION, DataQuery.SELECTION,
395 final Uri uri = ContentUris.withAppendedId(Data.CONTENT_URI, id);
461 Uri uri = ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId);
492 context.getContentResolver().insert(Settings.CONTENT_URI, values);
520 resolver.query(DataQuery.CONTENT_URI, DataQuery.PROJECTION, DataQuery.SELECTION,
530 final Uri uri = ContentUris.withAppendedId(Data.CONTENT_URI, id);
593 batchOperation.add(ContactOperations.newInsertCpo(StatusUpdates.CONTENT_URI,
816 public final static Uri CONTENT_URI = RawContacts.CONTENT_URI; field in class:ContactManager.UserIdQuery
847 public static final Uri CONTENT_URI = RawContacts.CONTENT_URI.buildUpon() field in class:ContactManager.DirtyQuery
878 public static final Uri CONTENT_URI = Data.CONTENT_URI; field in class:ContactManager.DataQuery
[all...]
/development/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,

Completed in 1925 milliseconds