HomeSort by relevance Sort by last modified time
    Searched refs:Uri (Results 1 - 25 of 1085) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/net/
Uri.aidl 19 parcelable Uri;
  /packages/apps/Contacts/src/com/android/contacts/list/
OnContactBrowserActionListener.java 18 import android.net.Uri;
34 * @param contactLookupUri The lookup-uri of the Contact that should be opened
36 void onViewContactAction(Uri contactLookupUri);
46 void onEditContactAction(Uri contactLookupUri);
51 void onDeleteContactAction(Uri contactUri);
56 void onAddToFavoritesAction(Uri contactUri);
61 void onRemoveFromFavoritesAction(Uri contactUri);
66 void onCallContactAction(Uri contactUri);
71 void onSmsContactAction(Uri contactUri);
OnEmailAddressPickerActionListener.java 18 import android.net.Uri;
28 void onPickEmailAddressAction(Uri dataUri);
OnMultiplePhoneNumberPickerActionListener.java 18 import android.net.Uri;
28 void onPhoneNumbersSelectedAction(Uri[] dataUris);
OnPostalAddressPickerActionListener.java 18 import android.net.Uri;
28 void onPickPostalAddressAction(Uri dataUri);
OnContactPickerActionListener.java 19 import android.net.Uri;
29 void onPickContactAction(Uri contactUri);
44 void onEditContactAction(Uri contactLookupUri);
  /frameworks/base/core/java/android/content/
ContentUris.java 19 import android.net.Uri;
22 * Utility methods useful for working with {@link android.net.Uri} objects
36 * The scheme portion of the URI. This is always set to {@link
78 * @throws UnsupportedOperationException if this isn't a hierarchical URI
84 public static long parseId(Uri contentUri) {
97 public static Uri.Builder appendId(Uri.Builder builder, long id) {
107 * @return a new URI with the given ID appended to the end of the path
109 public static Uri withAppendedId(Uri contentUri, long id)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/calllog/
VoicemailNotifier.java 19 import android.net.Uri;
28 * If the given URI corresponds to a new voicemail, also notifies about it.
32 * @param newCallUri URI of the new call, may be null
34 public void updateNotification(Uri newCallUri);
  /frameworks/base/core/tests/coretests/src/android/content/
ObserverNodeTest.java 24 import android.net.Uri;
37 Uri[] uris = new Uri[] {
38 Uri.parse("content://c/a/"),
39 Uri.parse("content://c/"),
40 Uri.parse("content://x/"),
41 Uri.parse("content://c/b/"),
42 Uri.parse("content://c/a/a1/1/"),
43 Uri.parse("content://c/a/a1/2/"),
44 Uri.parse("content://c/b/1/")
    [all...]
  /frameworks/base/media/java/android/media/
IMediaScannerListener.aidl 19 import android.net.Uri;
29 * @param uri the Uri for the file if the scanning operation succeeded
32 void scanCompleted(String path, in Uri uri);
  /packages/apps/Contacts/src/com/android/contacts/util/
StructuredPostalUtils.java 20 import android.net.Uri;
30 public static Uri getPostalAddressUri(String postalAddress) {
31 return Uri.parse("geo:0,0?q=" + Uri.encode(postalAddress));
UriUtils.java 19 import android.net.Uri;
28 /** Checks whether two URI are equal, taking care of the case where either is null. */
29 public static boolean areEqual(Uri uri1, Uri uri2) {
39 /** Parses a string into a URI and returns null if the given string is null. */
40 public static Uri parseUriOrNull(String uriString) {
44 return Uri.parse(uriString);
47 /** Converts a URI into a string, returns null if the given URI is null. */
48 public static String uriToString(Uri uri)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/vcard/
ExportRequest.java 18 import android.net.Uri;
21 public final Uri destUri;
27 public ExportRequest(Uri destUri) {
31 public ExportRequest(Uri destUri, String exportType) {
  /development/samples/NotePad/src/com/example/android/notepad/
NotePad.java 19 import android.net.Uri;
49 * URI definitions
53 * The scheme part for this provider's URI
62 * Path part for the Notes URI
67 * Path part for the Note ID URI
72 * 0-relative position of a note ID segment in the path part of a note ID URI
77 * Path part for the Live Folder URI
84 public static final Uri CONTENT_URI = Uri.parse(SCHEME + AUTHORITY + PATH_NOTES);
87 * The content URI base for a single note. Callers mus
    [all...]
  /frameworks/base/core/java/android/provider/
SocialContract.java 21 import android.net.Uri;
35 /** A content:// style uri to the authority for the contacts provider */
36 public static final Uri AUTHORITY_URI = Uri.parse("content://" + AUTHORITY);
131 * A URI associated this social activity. This field is analogous to the
155 * The content:// style URI for this table
157 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "activities");
160 * The content:// URI for this table filtered to the set of social activities
163 public static final Uri CONTENT_AUTHORED_BY_URI
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
TypedUriMatcher.java 18 import android.net.Uri;
21 * Maps a {@link Uri} into an enum type.
23 * @param <T> the type of the URI
26 public T match(Uri uri);
  /packages/apps/Mms/src/com/android/mms/transaction/
TransactionState.java 20 import android.net.Uri;
41 private Uri mContentUri;
73 * To represent the result uri of transaction such as uri of MM.
75 * @return Result uri.
77 public synchronized Uri getContentUri() {
82 * To set the result uri. This method is only invoked by the transactions.
84 * @param uri The result uri.
86 synchronized void setContentUri(Uri uri)
    [all...]
  /cts/tests/appsecurity-tests/test-apps/PermissionDeclareApp/src/com/android/cts/permissiondeclareapp/
PermissionContentProvider.java 22 import android.net.Uri;
30 public int delete(Uri uri, String selection, String[] selectionArgs) {
36 public String getType(Uri uri) {
41 public Uri insert(Uri uri, ContentValues values) {
51 public Cursor query(Uri uri, String[] projection, String selection
    [all...]
PermissionContentProviderGranting.java 22 import android.net.Uri;
30 public int delete(Uri uri, String selection, String[] selectionArgs) {
36 public String getType(Uri uri) {
41 public Uri insert(Uri uri, ContentValues values) {
51 public Cursor query(Uri uri, String[] projection, String selection
    [all...]
PermissionContentProviderPath.java 6 import android.net.Uri;
14 public int delete(Uri uri, String selection, String[] selectionArgs) {
20 public String getType(Uri uri) {
25 public Uri insert(Uri uri, ContentValues values) {
35 public Cursor query(Uri uri, String[] projection, String selection
    [all...]
PrivateContentProvider.java 22 import android.net.Uri;
30 public int delete(Uri uri, String selection, String[] selectionArgs) {
36 public String getType(Uri uri) {
41 public Uri insert(Uri uri, ContentValues values) {
51 public Cursor query(Uri uri, String[] projection, String selection
    [all...]
PrivateContentProviderGranting.java 22 import android.net.Uri;
30 public int delete(Uri uri, String selection, String[] selectionArgs) {
36 public String getType(Uri uri) {
41 public Uri insert(Uri uri, ContentValues values) {
51 public Cursor query(Uri uri, String[] projection, String selection
    [all...]
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
VoicemailProviderHelper.java 21 import android.net.Uri;
59 * @return {@link Uri} of the newly inserted {@link Voicemail}
69 public Uri insert(Voicemail voicemail);
80 * Returns the {@link Voicemail} corresponding to a given Uri. The uri must correspond to a
83 * Returns null if no voicemail was found that exactly matched the given uri.
85 public Voicemail findVoicemailByUri(Uri uri);
94 * @throws IllegalArgumentException if you provide a {@link Voicemail} that already has a Uri
95 * set, because we don't support altering the Uri of a voicemail, and this mos
    [all...]
  /frameworks/base/core/tests/coretests/EnabledTestApp/src/com/android/frameworks/coretests/enabled_app/
DisabledProvider.java 22 import android.net.Uri;
34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
39 public String getType(Uri uri) {
43 public Uri insert(Uri uri, ContentValues values) {
47 public int delete(Uri uri, String selection, String[] selectionArgs)
    [all...]
EnabledProvider.java 22 import android.net.Uri;
34 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs,
39 public String getType(Uri uri) {
43 public Uri insert(Uri uri, ContentValues values) {
47 public int delete(Uri uri, String selection, String[] selectionArgs)
    [all...]

Completed in 693 milliseconds

1 2 3 4 5 6 7 8 91011>>