HomeSort by relevance Sort by last modified time
    Searched defs:CONTENT_URI (Results 1 - 25 of 41) sorted by null

1 2

  /development/samples/NotePad/src/com/example/android/notepad/
NotePad.java 41 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/notes");
44 * The MIME type of {@link #CONTENT_URI} providing a directory of notes.
49 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single note.
NotesLiveFolder.java 29 public static final Uri CONTENT_URI = Uri.parse("content://"
46 liveFolderIntent.setData(CONTENT_URI);
  /frameworks/base/core/tests/coretests/src/android/pim/vcard/test_utils/
ExportTestResolver.java 28 addProvider(RawContacts.CONTENT_URI.getAuthority(), mProvider);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppLiveFolder.java 47 public static final Uri CONTENT_URI = Uri
58 setResult(RESULT_OK, createLiveFolder(this, CONTENT_URI, this
73 Constants.ACTION_OPEN, BluetoothShare.CONTENT_URI));
BluetoothShare.java 56 public static final Uri CONTENT_URI = Uri.parse("content://com.android.bluetooth.opp/btopp");
  /packages/apps/Contacts/src/com/android/contacts/
ContactsLiveFolders.java 29 public static final Uri CONTENT_URI =
40 setResult(RESULT_OK, createLiveFolder(this, CONTENT_URI,
52 public static final Uri CONTENT_URI =
63 setResult(RESULT_OK, createLiveFolder(this, CONTENT_URI,
75 public static final Uri CONTENT_URI =
86 setResult(RESULT_OK, createLiveFolder(this, CONTENT_URI,
104 new Intent(Intent.ACTION_VIEW, Contacts.CONTENT_URI));
  /frameworks/base/core/java/android/provider/
Applications.java 41 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY);
77 Uri searchUri = CONTENT_URI.buildUpon().appendPath(SEARCH_PATH).appendPath(query).build();
111 return Applications.CONTENT_URI.buildUpon()
SocialContract.java 157 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "activities");
164 Uri.withAppendedPath(CONTENT_URI, "authored_by");
175 * The MIME type of {@link #CONTENT_URI} providing a directory of social
181 * The MIME type of a {@link #CONTENT_URI} subdirectory of a single
UserDictionary.java 40 public static final Uri CONTENT_URI =
50 public static final Uri CONTENT_URI =
54 * The MIME type of {@link #CONTENT_URI} providing a directory of words.
59 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single word.
133 Uri result = resolver.insert(CONTENT_URI, values);
CallLog.java 38 public static final Uri CONTENT_URI =
48 public static final Uri CONTENT_URI =
63 * The MIME type of {@link #CONTENT_URI} and {@link #CONTENT_FILTER_URI}
69 * The MIME type of a {@link #CONTENT_URI} sub-directory of a single
184 Uri result = resolver.insert(CONTENT_URI, values);
202 CONTENT_URI,
218 resolver.delete(CONTENT_URI, "_id IN " +
DrmStore.java 86 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/images");
91 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/audio");
154 contentUri = DrmStore.Audio.CONTENT_URI;
156 contentUri = DrmStore.Images.CONTENT_URI;
Downloads.java 62 public static final Uri CONTENT_URI =
79 * or Downloads.CONTENT_URI if the notification is associated with
636 public static final Uri CONTENT_URI =
659 * or Downloads.CONTENT_URI if the notification is associated with
    [all...]
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerListHelper.java 50 Cursor cursor = mActivity.managedQuery(TrackerProvider.CONTENT_URI,
56 TrackerProvider.CONTENT_URI);
TrackerProvider.java 37 public static final Uri CONTENT_URI = Uri
103 Uri addedUri = ContentUris.withAppendedId(CONTENT_URI, rowId);
  /packages/apps/Tag/src/com/android/apps/tag/provider/
TagContract.java 43 public static final Uri CONTENT_URI =
47 * The MIME type of {@link #CONTENT_URI} providing a directory of
53 * The MIME type of a {@link #CONTENT_URI} subdirectory of a single
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssContentProvider.java 56 public static final Uri CONTENT_URI = Uri.parse( "content://my_rss_item/rssitem");
186 Uri newUri = CONTENT_URI.addId(rowId);
189 getContext().getContentResolver().notifyInsert(CONTENT_URI, null);
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryProvider.java 35 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/dictionary");
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherSettings.java 100 static final Uri CONTENT_URI = Uri.parse("content://" +
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogProvider.java 131 c.setNotificationUri(getContext().getContentResolver(), CallLog.CONTENT_URI);
206 getContext().getContentResolver().notifyChange(CallLog.CONTENT_URI, null,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsProvider.java 35 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY);
37 Uri.withAppendedPath(CONTENT_URI, RESULTS_PATH);
  /cts/tests/src/android/content/cts/
DummyProvider.java 52 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY);
53 public static final Uri CONTENT_URI_MOCK_OPERATION = Uri.withAppendedPath(CONTENT_URI,
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
UserDictionaryProvider.java 48 private static final Uri CONTENT_URI = UserDictionary.CONTENT_URI;
186 Uri wordUri = ContentUris.withAppendedId(UserDictionary.Words.CONTENT_URI, rowId);
  /packages/apps/DeskClock/src/com/android/deskclock/
Alarm.java 74 public static final Uri CONTENT_URI =
  /packages/apps/Email/src/com/android/email/provider/
AttachmentProvider.java 70 public static final Uri CONTENT_URI = Uri.parse( "content://" + AUTHORITY);
88 AttachmentColumns.SIZE, AttachmentColumns.CONTENT_URI };
91 return CONTENT_URI.buildUpon()
100 return CONTENT_URI.buildUpon()
163 uri = ContentUris.withAppendedId(Attachment.CONTENT_URI, Long.parseLong(id));
337 uri = ContentUris.withAppendedId(Attachment.CONTENT_URI, Long.parseLong(id));
466 Cursor c = context.getContentResolver().query(Message.CONTENT_URI,
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsReceiverService.java 220 Uri msgUri = ContentUris.withAppendedId(Sms.CONTENT_URI, msgId);
344 getApplicationContext(), getContentResolver(), Outbox.CONTENT_URI,
407 Cursor cursor = SqliteWrapper.query(context, resolver, Inbox.CONTENT_URI,
415 Sms.CONTENT_URI, messageId);
470 Uri insertedUri = SqliteWrapper.insert(context, resolver, Inbox.CONTENT_URI, values);

Completed in 673 milliseconds

1 2