Home
last modified time | relevance | path

Searched defs:uri (Results 1 – 25 of 1698) sorted by relevance

12345678910>>...68

/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/demos/main/src/main/assets/
Dmedia.exolist.json7 "uri": "https://storage.googleapis.com/wvmedia/clear/h264/tears/tears.mpd" string
11 "uri": "https://storage.googleapis.com/wvmedia/clear/h264/tears/tears_uhd.mpd" string
15 "uri": "https://storage.googleapis.com/wvmedia/clear/hevc/tears/tears.mpd" string
19 "uri": "https://storage.googleapis.com/wvmedia/clear/hevc/tears/tears_uhd.mpd" string
23 "uri": "https://storage.googleapis.com/wvmedia/clear/vp9/tears/tears.mpd" string
27 "uri": "https://storage.googleapis.com/wvmedia/clear/vp9/tears/tears_uhd.mpd" string
36 "uri": "https://storage.googleapis.com/wvmedia/cenc/h264/tears/tears.mpd", string
42 "uri": "https://storage.googleapis.com/wvmedia/cenc/h264/tears/tears_uhd.mpd", string
48 "uri": "https://storage.googleapis.com/wvmedia/cbcs/h264/tears/tears_aes_cbcs.mpd", string
54 "uri": "https://storage.googleapis.com/wvmedia/cbcs/h264/tears/tears_aes_cbcs_uhd.mpd", string
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/demos/main/src/main/assets/
Dmedia.exolist.json7 "uri": "https://storage.googleapis.com/wvmedia/clear/h264/tears/tears.mpd" string
11 "uri": "https://storage.googleapis.com/wvmedia/clear/h264/tears/tears_uhd.mpd" string
15 "uri": "https://storage.googleapis.com/wvmedia/clear/hevc/tears/tears.mpd" string
19 "uri": "https://storage.googleapis.com/wvmedia/clear/hevc/tears/tears_uhd.mpd" string
23 "uri": "https://storage.googleapis.com/wvmedia/clear/vp9/tears/tears.mpd" string
27 "uri": "https://storage.googleapis.com/wvmedia/clear/vp9/tears/tears_uhd.mpd" string
36 "uri": "https://storage.googleapis.com/wvmedia/cenc/h264/tears/tears.mpd", string
42 "uri": "https://storage.googleapis.com/wvmedia/cenc/h264/tears/tears_uhd.mpd", string
48 "uri": "https://storage.googleapis.com/wvmedia/cbcs/h264/tears/tears_aes_cbcs.mpd", string
54 "uri": "https://storage.googleapis.com/wvmedia/cbcs/h264/tears/tears_aes_cbcs_uhd.mpd", string
[all …]
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/file/common/testing/
DBackendTestBase.java154 Uri uri = uriForTestMethod(); in openForRead_withMissingFile_throwsFileNotFound() local
167 Uri uri = uriForTestMethod(); in openForRead_readsWrittenContent() local
176 Uri uri = uriForTestMethod(); in openForRead_returnsFileConvertible() local
177 createFile(storage(), uri, TEST_CONTENT); in openForRead_returnsFileConvertible() local
206 Uri uri = uriForTestMethod(); in openForWrite_overwritesExistingContent() local
229 Uri uri = uriForTestMethod(); in openForWrite_returnsFileConvertible() local
252 Uri uri = uriForTestMethod(); in openForAppend_appendsContent() local
264 Uri uri = uriForTestMethod(); in openForAppend_returnsFileConvertible() local
277 Uri uri = uriForTestMethod(); in deleteFile_deletesFile() local
288 Uri uri = uriForTestMethod(); in deleteFile_onDirectory_throwsFileNotFound() local
[all …]
DFakeFileBackend.java157 public InputStream openForRead(Uri uri) throws IOException { in openForRead()
163 public Pair<Uri, Closeable> openForNativeRead(Uri uri) throws IOException { in openForNativeRead()
169 public OutputStream openForWrite(Uri uri) throws IOException { in openForWrite()
183 public OutputStream openForAppend(Uri uri) throws IOException { in openForAppend()
197 public void deleteFile(Uri uri) throws IOException { in deleteFile()
203 public void deleteDirectory(Uri uri) throws IOException { in deleteDirectory()
215 public boolean exists(Uri uri) throws IOException { in exists()
222 public boolean isDirectory(Uri uri) throws IOException { in isDirectory()
228 public void createDirectory(Uri uri) throws IOException { in createDirectory()
234 public long fileSize(Uri uri) throws IOException { in fileSize()
[all …]
/external/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/file/common/internal/
DLiteTransformFragmentsTest.java32 Uri uri = Uri.parse("scheme:path"); in parseAbsentTransformFragment_yieldsEmpty() local
38 Uri uri = Uri.parse("scheme:path#"); in parseEmptyTransformFragment_yieldsEmpty() local
44 Uri uri = Uri.parse("scheme:path#nontransform"); in parseNonTransformFragment_yieldsEmpty() local
50 Uri uri = Uri.parse("scheme:path#transform=simple"); in parseSimpleTransformFragment_yieldsSpec() local
56 Uri uri = Uri.parse("scheme:path#transform=M1X_d"); in parseMixedTransformFragment_yieldsSpec() local
63 Uri uri = Uri.parse("scheme:path#transform=INVALID%3D"); in parseEncodedTransformFragment_yieldsInvalidSpec() local
69 Uri uri = Uri.parse("scheme:path#transform=beforeother&other"); in parseTransformBeforeOtherFragment_yieldsSpec() local
75 Uri uri = Uri.parse("scheme:path#nontransform&transform=afterother"); in parseTransformAfterOtherFragment_yieldsEmpty() local
81 Uri uri = Uri.parse("scheme:path#transform=first+second+third"); in parseMultipleTransformFragments_yieldsAllSpecs() local
88 Uri uri = Uri.parse("scheme:path#transform=withparams(foo=bar)"); in parseTransformFragmentWithSubparams_yieldsJustName() local
[all …]
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/file/spi/
DBackend.java51 default InputStream openForRead(Uri uri) throws IOException { in openForRead()
61 default Pair<Uri, Closeable> openForNativeRead(Uri uri) throws IOException { in openForNativeRead()
74 default OutputStream openForWrite(Uri uri) throws IOException { in openForWrite()
87 default OutputStream openForAppend(Uri uri) throws IOException { in openForAppend()
98 default void deleteFile(Uri uri) throws IOException { in deleteFile()
108 default void deleteDirectory(Uri uri) throws IOException { in deleteDirectory()
129 default boolean exists(Uri uri) throws IOException { in exists()
139 default boolean isDirectory(Uri uri) throws IOException { in isDirectory()
148 default void createDirectory(Uri uri) throws IOException { in createDirectory()
158 default long fileSize(Uri uri) throws IOException { in fileSize()
[all …]
DForwardingBackend.java51 protected Uri rewriteUri(Uri uri) throws IOException { in rewriteUri()
61 protected Uri reverseRewriteUri(Uri uri) throws IOException { in reverseRewriteUri()
66 public InputStream openForRead(Uri uri) throws IOException { in openForRead()
71 public Pair<Uri, Closeable> openForNativeRead(Uri uri) throws IOException { in openForNativeRead()
76 public OutputStream openForWrite(Uri uri) throws IOException { in openForWrite()
81 public OutputStream openForAppend(Uri uri) throws IOException { in openForAppend()
86 public void deleteFile(Uri uri) throws IOException { in deleteFile()
91 public void deleteDirectory(Uri uri) throws IOException { in deleteDirectory()
101 public boolean exists(Uri uri) throws IOException { in exists()
106 public boolean isDirectory(Uri uri) throws IOException { in isDirectory()
[all …]
/external/rust/android-crates-io/extra_versions/crates/http/src/uri/
Dtests.rs30 let uri = match Uri::from_str(orig_str) { localVariable
445 let mut uri = vec![]; in test_max_uri_len() localVariable
449 let uri = String::from_utf8(uri).unwrap(); in test_max_uri_len() localVariable
457 let mut uri = vec![]; in test_overflowing_scheme() localVariable
461 let uri = String::from_utf8(uri).unwrap(); in test_overflowing_scheme() localVariable
469 let mut uri = vec![]; in test_max_length_scheme() localVariable
473 let uri = String::from_utf8(uri).unwrap(); in test_max_length_scheme() localVariable
474 let uri: Uri = uri.parse().unwrap(); in test_max_length_scheme() localVariable
493 let uri = Uri::from_str(case.0).unwrap(); in test_uri_to_path_and_query() localVariable
503 let uri = Uri::from_str(s).expect("first parse"); in test_authority_uri_parts_round_trip() localVariable
[all …]
/external/rust/android-crates-io/crates/http/src/uri/
Dtests.rs30 let uri = match Uri::from_str(orig_str) { localVariable
445 let mut uri = vec![]; in test_max_uri_len() localVariable
449 let uri = String::from_utf8(uri).unwrap(); in test_max_uri_len() localVariable
457 let mut uri = vec![]; in test_overflowing_scheme() localVariable
461 let uri = String::from_utf8(uri).unwrap(); in test_overflowing_scheme() localVariable
469 let mut uri = vec![]; in test_max_length_scheme() localVariable
473 let uri = String::from_utf8(uri).unwrap(); in test_max_length_scheme() localVariable
474 let uri: Uri = uri.parse().unwrap(); in test_max_length_scheme() localVariable
493 let uri = Uri::from_str(case.0).unwrap(); in test_uri_to_path_and_query() localVariable
503 let uri = Uri::from_str(s).expect("first parse"); in test_authority_uri_parts_round_trip() localVariable
[all …]
/external/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/file/backends/
DAndroidUriTest.java62 Uri uri = AndroidUri.builder(context).fromFile(file).build(); in builder_filesLocation() local
75 Uri uri = AndroidUri.builder(context).fromFile(file).build(); in builder_cacheLocation() local
88 Uri uri = AndroidUri.builder(context).fromFile(file).build(); in builder_filesLocation_withEmailAccount() local
130 Uri uri = AndroidUri.builder(context).fromFile(file).build(); in builder_directBootFilesDirectory() local
145 Uri uri = AndroidUri.builder(context).fromFile(file).build(); in builder_directBootCacheDirectory() local
157 Uri uri = AndroidUri.builder(context).fromFile(file).build(); in builder_allowsEmptyRelativePath() local
172 Uri uri = AndroidUri.builder(context).fromFile(file).build(); in builder_fromManagedSharedFile_doesNotRequireAccountManager() local
194 Uri uri = AndroidUri.builder(context).fromFile(file, mockManager).build(); in builder_fromManagedFile_readsFromAccountManager() local
200 Uri uri = AndroidUri.builder(context).build(); in builder_componentsAreSetByDefault() local
210 Uri uri = AndroidUri.builder(context).setInternalLocation().build(); in builder_setLocation_expectedUsage() local
[all …]
DAndroidFileBackendTest.java104 Uri uri = Uri.parse("android://com.thirdparty.app/files/common/shared/file"); in builder_remoteBackend_isNullByDefault() local
112 Uri uri = AndroidUri.builder(context).setManagedLocation().setAccount(account).build(); in builder_accountManager_isNullByDefault() local
120 final Uri uri = Uri.parse("android:///files/writing/shared/missingAuthority"); in openForWrite_shouldUseContextAuthorityIfWithoutAuthority() local
124 createFile(storage(), uri, TEST_CONTENT); in openForWrite_shouldUseContextAuthorityIfWithoutAuthority() local
148 Uri uri = in openForRead_directBootFilesOnNShouldUseDeviceProtectedStorageContext() local
160 createFile(storage(), uri, TEST_CONTENT); in openForRead_directBootFilesOnNShouldUseDeviceProtectedStorageContext() local
171 Uri uri = in openForRead_directBootCacheOnNShouldUseDeviceProtectedStorageContext() local
183 createFile(storage(), uri, TEST_CONTENT); in openForRead_directBootCacheOnNShouldUseDeviceProtectedStorageContext() local
193 Uri uri = in openForRead_directBootFilesBeforeNShouldThrowException() local
206 Uri uri = in openForRead_directBootCacheBeforeNShouldThrowException() local
[all …]
DUriNormalizerTest.java31 Uri uri = Uri.parse("android://package/files/common/../shared/path/.."); in normalizeUriWithDotDot() local
39 Uri uri = Uri.parse("android://package/files/common/./shared/path/././."); in normalizeUriWithDot() local
47 Uri uri = Uri.parse("android://package/files/common//shared/path//"); in normalizeUriWithSlashSlash() local
55 Uri uri = Uri.parse("ANDROID://package/files/common/shared/path"); in normalizeUriWithUppercaseScheme() local
63 Uri uri = Uri.parse("android://package/files/common/shared/path/../../../../../.."); in normalizeUriReachesEndOfPath() local
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DSystemJimfsFileSystemProvider.java102 public FileSystem newFileSystem(URI uri, Map<String, ?> env) throws IOException { in newFileSystem()
106 uri, in newFileSystem() local
109 isValidFileSystemUri(uri), "uri (%s) may not have a path, query or fragment", uri); in newFileSystem() local
125 public FileSystem getFileSystem(URI uri) { in getFileSystem()
134 public Path getPath(URI uri) { in getPath()
138 uri); in getPath() local
150 private static boolean isValidFileSystemUri(URI uri) { in isValidFileSystemUri()
158 private static URI toFileSystemUri(URI uri) { in toFileSystemUri()
168 private static Path toPath(FileSystem fileSystem, URI uri) { in toPath()
193 public static Runnable removeFileSystemRunnable(final URI uri) { in removeFileSystemRunnable()
/external/aws-sdk-java-v2/services/s3/src/test/java/software/amazon/awssdk/services/s3/
DS3UtilitiesTest.java223 URI uri = URI.create(uriString); in parseS3Uri_rootUri_shouldParseCorrectly() local
237 URI uri = URI.create(uriString); in parseS3Uri_rootUriTrailingSlash_shouldParseCorrectly() local
251 URI uri = URI.create(uriString); in parseS3Uri_pathStyleTrailingSlash_shouldParseCorrectly() local
265 URI uri = URI.create(uriString); in parseS3Uri_pathStyleGlobalEndpoint_shouldParseCorrectly() local
279 URI uri = URI.create(uriString); in parseS3Uri_virtualStyleGlobalEndpoint_shouldParseCorrectly() local
293 URI uri = URI.create(uriString); in parseS3Uri_pathStyleWithDot_shouldParseCorrectly() local
307 URI uri = URI.create(uriString); in parseS3Uri_pathStyleWithDash_shouldParseCorrectly() local
321 URI uri = URI.create(uriString); in parseS3Uri_virtualHostedStyleWithDot_shouldParseCorrectly() local
335 URI uri = URI.create(uriString); in parseS3Uri_virtualHostedStyleWithDash_shouldParseCorrectly() local
349 URI uri = URI.create(uriString); in parseS3Uri_pathStyleWithQuery_shouldParseCorrectly() local
[all …]
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/file/backends/
DJavaFileBackend.java59 public InputStream openForRead(Uri uri) throws IOException { in openForRead()
65 public Pair<Uri, Closeable> openForNativeRead(Uri uri) throws IOException { in openForNativeRead()
72 public OutputStream openForWrite(Uri uri) throws IOException { in openForWrite()
79 public OutputStream openForAppend(Uri uri) throws IOException { in openForAppend()
86 public void deleteFile(Uri uri) throws IOException { in deleteFile()
101 public void deleteDirectory(Uri uri) throws IOException { in deleteDirectory()
122 public boolean exists(Uri uri) throws IOException { in exists()
128 public boolean isDirectory(Uri uri) throws IOException { in isDirectory()
134 public void createDirectory(Uri uri) throws IOException { in createDirectory()
142 public long fileSize(Uri uri) throws IOException { in fileSize()
[all …]
/external/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/file/
DMonitorOutputStreamTest.java47 Uri uri = Uri.parse("foo:"); in monitorWrite_shouldSeeAllBytes() local
64 Uri uri = Uri.parse("foo:"); in monitorAppend_shouldSeeAllBytes() local
82 Uri uri = Uri.parse("foo:"); in monitorWrite_withNullOutputMonitor_shouldReturnNull() local
85 assertThat(MonitorOutputStream.newInstanceForWrite(Arrays.asList(mockMonitor), uri, out)) in monitorWrite_withNullOutputMonitor_shouldReturnNull() local
93 Uri uri = Uri.parse("foo:"); in monitorAppend_withNullOutputMonitor_shouldReturnNull() local
96 assertThat(MonitorOutputStream.newInstanceForAppend(Arrays.asList(mockMonitor), uri, out)) in monitorAppend_withNullOutputMonitor_shouldReturnNull() local
105 Uri uri = Uri.parse("foo:"); in monitorWrite_shouldCallClose() local
108 MonitorOutputStream.newInstanceForWrite(Arrays.asList(mockMonitor), uri, fakeOut)) { in monitorWrite_shouldCallClose() argument
122 Uri uri = Uri.parse("foo:"); in monitorWriteWithMonitorCloseException_shouldCallClose() local
125 MonitorOutputStream.newInstanceForWrite(Arrays.asList(mockMonitor), uri, fakeOut)) { in monitorWriteWithMonitorCloseException_shouldCallClose() argument
DMonitorInputStreamTest.java47 Uri uri = Uri.parse("foo:"); in monitorRead_shouldSeeAllBytes() local
63 Uri uri = Uri.parse("foo:"); in monitorRead_withNullInputMonitor_shouldReturnNull() local
66 assertThat(MonitorInputStream.newInstance(Arrays.asList(mockMonitor), uri, in)).isNull(); in monitorRead_withNullInputMonitor_shouldReturnNull() local
74 Uri uri = Uri.parse("foo:"); in monitorRead_shouldCallClose() local
77 MonitorInputStream.newInstance(Arrays.asList(mockMonitor), uri, in)) { in monitorRead_shouldCallClose() argument
89 Uri uri = Uri.parse("foo:"); in monitorReadWithMonitorCloseException_shouldCallClose() local
92 MonitorInputStream.newInstance(Arrays.asList(mockMonitor), uri, fakeIn)) { in monitorReadWithMonitorCloseException_shouldCallClose() argument
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/file/
DSynchronousFileStorage.java170 public <T> T open(Uri uri, Opener<T> opener) throws IOException { in open()
180 public void deleteFile(Uri uri) throws IOException { in deleteFile()
191 public void deleteDirectory(Uri uri) throws IOException { in deleteDirectory()
204 public boolean deleteRecursively(Uri uri) throws IOException { in deleteRecursively()
230 public boolean exists(Uri uri) throws IOException { in exists()
242 public boolean isDirectory(Uri uri) throws IOException { in isDirectory()
252 public void createDirectory(Uri uri) throws IOException { in createDirectory()
266 public long fileSize(Uri uri) throws IOException { in fileSize()
314 public GcParam getGcParam(Uri uri) throws IOException { in getGcParam()
320 public void setGcParam(Uri uri, GcParam param) throws IOException { in setGcParam()
[all …]
/external/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/file/openers/
DReadProtoOpenerTest.java58 Uri uri = tmpUri.newUri(); in create_fromMessageParser_returnsOpenerWithCorrectGenericType() local
70 Uri uri = tmpUri.newUri(); in create_fromMessageInstance_returnsOpenerWithCorrectGenericType() local
82 Uri uri = tmpUri.newUri(); in open_readsFullProtoFromFile() local
92 Uri uri = tmpUri.newUri(); in open_readsEmptyProtoFromFile() local
100 Uri uri = tmpUri.newUriBuilder().withTransform(TransformProtos.DEFAULT_COMPRESS_SPEC).build(); in open_invokesTransforms() local
108 Uri uri = tmpUri.newUri(); in open_throwsIOExceptionOnBadParse() local
118 Uri uri = tmpUri.newUri(); in withRegistry_readsExtension() local
134 Uri uri = tmpUri.newUri(); in withOutRegistry_failsToReadsExtension() local
DMappedByteBufferOpenerAndroidTest.java58 Uri uri = tmpUri.newUri(); in succeedsWithSimplePath() local
68 Uri uri = tmpUri.newUri(); in bufferIsReadOnly() local
78 Uri uri = tmpUri.newUriBuilder().withTransform(TransformProtos.DEFAULT_COMPRESS_SPEC).build(); in failsWithTransform() local
88 Uri uri = Uri.parse("file:/does-not-exist"); in failsWithMissingFile() local
102 Uri uri = tmpUri.newUri(); in failsWithActiveMonitor() local
119 Uri uri = tmpUri.newUri(); in succeedsWithInactiveMonitor() local
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowContentResolver.java116 public final Uri uri; field in ShadowContentResolver.ContentObserverEntry
120 private ContentObserverEntry(Uri uri, boolean notifyForDescendants, ContentObserver observer) { in ContentObserverEntry()
147 public final Uri uri; field in ShadowContentResolver.NotifiedUri
152 public NotifiedUri(Uri uri, ContentObserver observer, int flags) { in NotifiedUri()
168 public void registerInputStream(Uri uri, InputStream inputStream) { in registerInputStream()
172 public void registerInputStreamSupplier(Uri uri, Supplier<InputStream> supplier) { in registerInputStreamSupplier()
176 public void registerOutputStream(Uri uri, OutputStream outputStream) { in registerOutputStream()
180 public void registerOutputStreamSupplier(Uri uri, Supplier<OutputStream> supplier) { in registerOutputStreamSupplier()
185 protected InputStream openInputStream(final Uri uri) throws FileNotFoundException { in openInputStream()
203 protected OutputStream openOutputStream(final Uri uri) throws FileNotFoundException { in openOutputStream()
[all …]
/external/sandboxed-api/contrib/uriparser/test/
Dtest_uriparser.cc29 std::string uri; member
334 UriParser uri(sandbox_.get(), tv.test); in TEST_P() local
344 UriParser uri(sandbox_.get(), tv.test); in TEST_P() local
354 UriParser uri(sandbox_.get(), tv.test); in TEST_P() local
364 UriParser uri(sandbox_.get(), tv.test); in TEST_P() local
374 UriParser uri(sandbox_.get(), tv.test); in TEST_P() local
384 UriParser uri(sandbox_.get(), tv.test); in TEST_P() local
394 UriParser uri(sandbox_.get(), tv.test); in TEST_P() local
404 UriParser uri(sandbox_.get(), tv.test); in TEST_P() local
414 UriParser uri(sandbox_.get(), tv.test); in TEST_P() local
[all …]
/external/perfetto/ui/src/plugins/org.chromium.ChromeScrollJank/
Dindex.ts68 const uri = 'org.chromium.ChromeScrollJank#toplevelScrolls'; constant
177 const uri = 'org.chromium.ChromeScrollJank#eventLatency'; constant
198 const uri = 'org.chromium.ChromeScrollJank#scrollJankV3'; constant
215 const uri = 'org.chromium.ChromeScrollJank#scrollTimeline'; constant
249 const uri = 'org.chromium.ChromeScrollJank#ChromeVsync'; constant
263 const uri = 'org.chromium.ChromeScrollJank#ChromeVsyncDelta'; constant
276 const uri = 'org.chromium.ChromeScrollJank#ChromeInputDelta'; constant
317 const uri = `org.chromium.ChromeScrollJank#chrome_scroll_update_info.${step.column}`; constant
/external/perfetto/test/cts/test_apps/src/android/perfetto/cts/app/
DFileContentProvider.java35 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, in query()
41 public String getType(Uri uri) { in getType()
46 public String[] getStreamTypes(Uri uri, String mimeTypeFilter) { in getStreamTypes()
51 public Uri insert(Uri uri, ContentValues values) { in insert()
56 public int delete(Uri uri, String selection, String[] selectionArgs) { in delete()
61 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { in update()
66 public ParcelFileDescriptor openFile(Uri uri, String mode) throws FileNotFoundException { in openFile()
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DShadowContentResolverTest.java154 final Uri uri = Uri.parse("content://" + AUTHORITY + "/some/path"); in getType_shouldReturnProviderValue() local
355 final Uri uri = Uri.parse("content://" + AUTHORITY); in acquireUnstableProvider_shouldReturnWithUri() local
373 final Uri uri = Uri.parse("content://" + AUTHORITY); in call_shouldCallProvider() local
470 Uri uri = Uri.parse("content://" + AUTHORITY + "/some/path"); in openInputStream_returnsProviderInputStream() local
491 Uri uri = Uri.parse("content://invalidauthority/test/1"); in openOutputStream_withNoRealOrRegisteredProvider_doesNotThrow() local
499 Uri uri = Uri.parse("content://" + AUTHORITY + "/test/1"); in openOutputStream_withRealContentProvider_canReadBytesWrittenToOutputStream() local
513 final Uri uri = Uri.parse("content://registeredProvider/path"); in openOutputStream_shouldReturnRegisteredStream() local
542 final Uri uri = Uri.parse("content://registeredProvider/path"); in openOutputStream_shouldReturnNewStreamFromRegisteredSupplier() local
585 Uri uri = Uri.parse("content://invalidauthority/test/1"); in openOutputStream_withModeWithNoRealOrRegisteredProvider_throws() local
593 Uri uri = Uri.parse("content://" + AUTHORITY + "/test/1"); in openOutputStream_withModeWithRealContentProvider_canReadBytesWrittenToOutputStream() local
[all …]

12345678910>>...68