Home
last modified time | relevance | path

Searched refs:BASE_URI (Results 1 – 4 of 4) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/util/
DTypedUriMatcherImplTest.java53 private final static String BASE_URI = "scheme://" + AUTHORITY + "/"; field in TypedUriMatcherImplTest
69 assertUriTypeMatch(TestUriType.NO_MATCH, BASE_URI + "test"); in testMatch_NoMatch()
73 assertUriTypeMatch(TestUriType.SIMPLE_URI, BASE_URI + "build"); in testMatch_SimpleUri()
77 assertUriTypeMatch(TestUriType.URI_WITH_ID, BASE_URI + "build/2"); in testMatch_UriWithId()
79 assertUriTypeMatch(TestUriType.NO_MATCH, BASE_URI + "build/a"); in testMatch_UriWithId()
81 assertUriTypeMatch(TestUriType.NO_MATCH, BASE_URI + "build/2/more"); in testMatch_UriWithId()
85 assertUriTypeMatch(TestUriType.URI_WITH_TWO_IDS, BASE_URI + "project/vm/build/3"); in testMatch_UriWithTwoIds()
87 assertUriTypeMatch(TestUriType.NO_MATCH, BASE_URI + "project/vm/build/"); in testMatch_UriWithTwoIds()
89 assertUriTypeMatch(TestUriType.NO_MATCH, BASE_URI + "project/vm/x/build/3"); in testMatch_UriWithTwoIds()
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
DEmlAttachmentProvider.java81 private static Uri BASE_URI; field in EmlAttachmentProvider
100 BASE_URI = new Uri.Builder().scheme("content").authority(authority).build(); in onCreate()
424 return BASE_URI.buildUpon() in getListUriFromAttachmentUri()
435 return BASE_URI.buildUpon() in getAttachmentsListUri()
447 return BASE_URI.buildUpon() in getAttachmentByCidUri()
459 return BASE_URI.buildUpon() in getAttachmentUri()
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DEmlMessageViewFragment.java68 private static final String BASE_URI = "x-thread://message/rfc822/"; field in EmlMessageViewFragment
273 return BASE_URI; in getBaseUri()
/packages/apps/Gallery2/src/com/android/gallery3d/provider/
DGalleryProvider.java48 public static final Uri BASE_URI = Uri.parse("content://" + AUTHORITY); field in GalleryProvider