Home
last modified time | relevance | path

Searched refs:uri2 (Results 1 – 7 of 7) sorted by relevance

/external/oss-fuzz/projects/uriparser/
Duri_parse_fuzzer.cc80 const string uri2 = stream.ConsumeRemainingBytesAsString(); in LLVMFuzzerTestOneInput() local
83 Escapes(uri2); in LLVMFuzzerTestOneInput()
86 FileNames(uri2); in LLVMFuzzerTestOneInput()
89 Ipv4(uri2); in LLVMFuzzerTestOneInput()
104 if (uriParseUriA(&state2, uri2.c_str()) != URI_SUCCESS) in LLVMFuzzerTestOneInput()
/external/python/httplib2/tests/
Dtest_uri.py111 uri2 = "http://" + ("w" * 201) + ".org"
112 assert httplib2.safename(uri) != httplib2.safename(uri2)
114 assert len(httplib2.safename(uri2)) == 123
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DNamespaceMappings.java172 String uri2 = lookupNamespace(prefix); in lookupPrefix() local
173 if (uri2 != null && uri2.equals(uri)) in lookupPrefix()
490 String uri2 = lookupNamespace(prefix); in lookupAllPrefixes() local
491 if (uri2 != null && uri2.equals(uri)) in lookupAllPrefixes()
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/offline/
DDownloadRequestTest.java39 private Uri uri2; field in DownloadRequestTest
44 uri2 = Uri.parse("http://test/2.uri"); in setUp()
61 uri2, in mergeRequests_withDifferentIds_fails()
152 uri2, in mergeRequests_withDifferentFields()
159 assertThat(mergedRequest.uri).isEqualTo(uri2); in mergeRequests_withDifferentFields()
211 DownloadRequest request9 = createRequest(uri2); in equals()
DDownloadManagerTest.java70 private Uri uri2; field in DownloadManagerTest
83 uri2 = Uri.parse("http://abc.com/media2"); in setUp()
115 new DownloadRunner(uri2).postDownloadRequest().postRemoveRequest(); in multipleRequestsForTheSameContent_executedOnTheSameTask()
123 TaskWrapper task2 = new DownloadRunner(uri2).postDownloadRequest().getTask(); in requestsForDifferentContent_executedOnDifferentTasks()
252 DownloadRunner runner2 = new DownloadRunner(uri2); in removeAllDownloads_removesAllDownloads()
296 DownloadRunner runner2 = new DownloadRunner(uri2).postDownloadRequest(); in requestsForDifferentContent_executedInParallel()
314 DownloadRunner runner2 = new DownloadRunner(uri2).postDownloadRequest(); in requestsForDifferentContent_ifMaxDownloadIs1_executedSequentially()
335 DownloadRunner runner2 = new DownloadRunner(uri2).postDownloadRequest().postRemoveRequest(); in removeRequestForDifferentContent_ifMaxDownloadIs1_executedInParallel()
353 DownloadRunner runner2 = new DownloadRunner(uri2).postDownloadRequest().postRemoveRequest(); in downloadRequestFollowingRemove_ifMaxDownloadIs1_isNotStarted()
375 TaskWrapper task2 = new DownloadRunner(uri2).postDownloadRequest().getTask(); in getCurrentDownloads_returnsCurrentDownloads()
[all …]
/external/python/httplib2/python2/
Dhttplib2test.py150 uri2 = "http://" + ("w" * 201) + ".org"
151 self.assertNotEqual(httplib2.safename(uri2), httplib2.safename(uri))
153 self.assertEqual(233, len(httplib2.safename(uri2)))
/external/python/httplib2/python3/
Dhttplib2test.py139 uri2 = "http://" + ("w" * 201) + ".org"
140 self.assertNotEqual(httplib2.safename(uri2), httplib2.safename(uri))
142 self.assertEqual(233, len(httplib2.safename(uri2)))