Home
last modified time | relevance | path

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

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/util/
DTypedUriMatcherImplTest.java54 private final static String BASE_URI = "scheme://" + AUTHORITY + "/"; field in TypedUriMatcherImplTest
70 assertUriTypeMatch(TestUriType.NO_MATCH, BASE_URI + "test"); in testMatch_NoMatch()
74 assertUriTypeMatch(TestUriType.SIMPLE_URI, BASE_URI + "build"); in testMatch_SimpleUri()
78 assertUriTypeMatch(TestUriType.URI_WITH_ID, BASE_URI + "build/2"); in testMatch_UriWithId()
80 assertUriTypeMatch(TestUriType.NO_MATCH, BASE_URI + "build/a"); in testMatch_UriWithId()
82 assertUriTypeMatch(TestUriType.NO_MATCH, BASE_URI + "build/2/more"); in testMatch_UriWithId()
86 assertUriTypeMatch(TestUriType.URI_WITH_TWO_IDS, BASE_URI + "project/vm/build/3"); in testMatch_UriWithTwoIds()
88 assertUriTypeMatch(TestUriType.NO_MATCH, BASE_URI + "project/vm/build/"); in testMatch_UriWithTwoIds()
90 assertUriTypeMatch(TestUriType.NO_MATCH, BASE_URI + "project/vm/x/build/3"); in testMatch_UriWithTwoIds()
/packages/apps/Settings/src/com/android/settings/display/
DCustomizableLockScreenUtils.java40 private static final Uri BASE_URI = new Uri.Builder() field in CustomizableLockScreenUtils
45 static final Uri FLAGS_URI = BASE_URI.buildUpon()
49 static final Uri SELECTIONS_URI = BASE_URI.buildUpon()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/adselection/
DDBRegisteredAdInteractionTest.java38 private static final String BASE_URI = "https://www.seller.com/"; field in DBRegisteredAdInteractionTest
39 public static final Uri EVENT_REPORTING_URI = Uri.parse(BASE_URI + INTERACTION_KEY_CLICK);
/packages/apps/WallpaperPicker2/src/com/android/wallpaper/picker/customization/data/content/
DWallpaperClientImpl.kt694 private val BASE_URI = in <lambda>() constant
697 private val SET_WALLPAPER_URI = BASE_URI.buildUpon().appendPath(PATH_SET_WALLPAPER).build() in <lambda>()
699 private val LIST_RECENTS_URI = BASE_URI.buildUpon().appendPath(PATH_LIST_RECENTS).build() in <lambda>()
704 BASE_URI.buildUpon().appendPath(PATH_GET_THUMBNAIL).build() in <lambda>()
/packages/apps/Gallery2/src/com/android/gallery3d/provider/
DGalleryProvider.java48 public static final Uri BASE_URI = Uri.parse("content://" + AUTHORITY); field in GalleryProvider