Home
last modified time | relevance | path

Searched full:url3 (Results 1 – 25 of 34) sorted by relevance

12

/aosp_15_r20/external/openscreen/util/
H A Durl_unittest.cc109 Url url3("https://example.com"); in TEST() local
137 url3 = std::move(url1); in TEST()
141 EXPECT_TRUE(url3.is_valid()); in TEST()
142 EXPECT_TRUE(url3.has_host()); in TEST()
143 EXPECT_TRUE(url3.has_port()); in TEST()
144 EXPECT_TRUE(url3.has_path()); in TEST()
145 EXPECT_TRUE(url3.has_query()); in TEST()
147 EXPECT_EQ("http", url3.scheme()); in TEST()
148 EXPECT_EQ("google.com", url3.host()); in TEST()
149 EXPECT_EQ(99, url3.port()); in TEST()
[all …]
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/net/
H A DOldURLStreamHandlerTest.java61 URL url3 = new URL("http://localhost/test"); in test_getHostAddress() local
62 assertEquals(InetAddress.getByName("localhost"), handler.getHostAddress(url3)); in test_getHostAddress()
85 URL url3 = new URL("http://foo/_test_goo"); in test_hostsEqualLjava_net_URLLjava_net_URL() local
86 assertFalse(handler.hostsEqual(url1, url3)); in test_hostsEqualLjava_net_URLLjava_net_URL()
121 URL url3 = new URL("http://test:pwd@localhost:80/foo/foo2.c"); in test_sameFile() local
127 assertFalse("Test case 2", handler.sameFile(url3, url2)); in test_sameFile()
128 assertFalse("Test case 3", handler.sameFile(url3, url4)); in test_sameFile()
/aosp_15_r20/external/cronet/net/cert_net/
H A Dcert_net_fetcher_url_request_unittest.cc278 GURL url3 = test_server_.GetURL("/certs.p7c"); in TEST_F() local
280 StartRequest(fetcher(), url3); in TEST_F()
471 GURL url3 = test_server_.GetURL("/certs.p7c"); in TEST_F() local
474 StartRequest(fetcher(), url3); in TEST_F()
512 GURL url3("ftp://www.not.supported.com/foo"); in TEST_F() local
514 StartRequest(fetcher(), url3); in TEST_F()
/aosp_15_r20/cts/tests/tests/webkit/src/android/webkit/cts/
H A DWebViewTest.java542 String url3 = mWebServer.getAssetUrl(TestHtmlConstants.HTML_URL3); in testGoBackAndForward() local
554 mOnUiThread.loadUrlAndWaitForCompletion(url3); in testGoBackAndForward()
555 pollingCheckWebBackForwardList(url3, 2, 3); in testGoBackAndForward()
565 pollingCheckWebBackForwardList(url3, 2, 3); in testGoBackAndForward()
575 pollingCheckWebBackForwardList(url3, 2, 3); in testGoBackAndForward()
1989 String url3 = mWebServer.getAssetUrl(TestHtmlConstants.HTML_URL3); in testClearHistory() local
1997 mOnUiThread.loadUrlAndWaitForCompletion(url3); in testClearHistory()
1998 pollingCheckWebBackForwardList(url3, 2, 3); in testClearHistory()
2003 pollingCheckWebBackForwardList(url3, 0, 1); in testClearHistory()
2016 String url3 = mWebServer.getAssetUrl(TestHtmlConstants.HTML_URL3); in testSaveAndRestoreState() local
[all …]
H A DWebBackForwardListTest.java102 String url3 = server.getAssetUrl(TestHtmlConstants.HTML_URL3); in testGetCurrentItem() local
110 mOnUiThread.loadUrlAndWaitForCompletion(url3); in testGetCurrentItem()
111 checkBackForwardList(url1, url2, url3); in testGetCurrentItem()
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DURLDecoderTest.java43 final String URL3 = "file://myServer.org/a file with spaces.jpg"; in test_decodeLjava_lang_String() local
49 URLEncoder.encode(URL3)).equals(URL3)); in test_decodeLjava_lang_String()
/aosp_15_r20/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
H A DURLEncoderTest.java36 final String URL3 = "file://myServer.org/a file with spaces.jpg"; in test_encodeLjava_lang_String() local
43 URLEncoder.encode(URL3)).equals(URL3)); in test_encodeLjava_lang_String()
H A DURLConnectionTest.java207 URL url3;
227 url3 = new URL("http://localhost:" + port + "/test3");
228 uc3 = url3.openConnection();
/aosp_15_r20/external/jsoup/src/test/java/org/jsoup/helper/
H A DHttpConnectionTest.java274 URL url3 = new UrlBuilder(url2).build(); in encodedUrlDoesntDoubleEncode() local
276 …assertEquals("https://test.com/foo%20bar/%5BOne%5D?q=white+space#frag%20ment", url3.toExternalForm… in encodedUrlDoesntDoubleEncode()
282 URL url3 = new UrlBuilder(url2).build(); in urlPathIsPreservedDoesntDoubleEncode() local
284 …assertEquals("https://test.com/[foo]%20bar+/%5BOne%5D?q=white+space#frag%20ment", url3.toExternalF… in urlPathIsPreservedDoesntDoubleEncode()
/aosp_15_r20/external/cronet/net/proxy_resolution/
H A Dconfigured_proxy_resolution_service_unittest.cc354 const GURL& url3 = GURL()) { in GetPendingJobsForURLs() argument
360 if (!url3.is_empty()) in GetPendingJobsForURLs()
361 urls.push_back(url3); in GetPendingJobsForURLs()
378 const GURL& url3 = GURL()) { in GetCancelledJobsForURLs() argument
384 if (!url3.is_empty()) in GetCancelledJobsForURLs()
385 urls.push_back(url3); in GetCancelledJobsForURLs()
2267 const GURL url3("http://request3"); in TEST_F() local
2309 rv = service.ResolveProxy(url3, std::string(), NetworkAnonymizationKey(), in TEST_F()
2313 GetPendingJobsForURLs(resolver, url1, url2, url3); in TEST_F()
2318 JobMap jobs = GetPendingJobsForURLs(resolver, url1, url3); in TEST_F()
[all …]
/aosp_15_r20/external/json-schema-validator/src/test/resources/data/
H A Dissue471.json2 "pictures": ["url1", "url2", "url3"],
/aosp_15_r20/external/snakeyaml/src/test/resources/env/
H A Ddocker-compose.yaml15 URL3: ${EnvironmentEmpty:-server3}
/aosp_15_r20/frameworks/base/tools/app_metadata_bundles/src/test/resources/com/android/asllib/appinfo/od/
H A Dunrecognized-v1.xml12 <item value="url3"/>
H A Dall-fields-valid-v1.xml12 <item value="url3"/>
/aosp_15_r20/frameworks/base/tools/app_metadata_bundles/src/test/resources/com/android/asllib/validmappings/general-v1/
H A Dod.xml57 <item value="url3"/>
/aosp_15_r20/external/snakeyaml/src/test/java/org/yaml/snakeyaml/env/
H A DEnvVariableTest.java88 …"environment={URL1=EnvironmentValue1, URL2=, URL3=server3, URL4=, URL5=server5, URL6=server6}}}}")… in testDockerCompose()
/aosp_15_r20/external/cronet/net/cookies/
H A Dcookie_store_unittest.h869 GURL url3("http://foo3.bar.com"); in TYPED_TEST_P()
870 EXPECT_TRUE(this->SetCookie(cs, url3, "foo")); in TYPED_TEST_P()
871 EXPECT_FALSE(this->SetCookie(cs, url3, "=")); in TYPED_TEST_P()
872 EXPECT_EQ("foo", this->GetCookies(cs, url3)); in TYPED_TEST_P()
/aosp_15_r20/external/cronet/net/url_request/
H A Durl_request_test_job.cc43 return GURL("test:url3"); in test_url_3()
/aosp_15_r20/external/cronet/net/spdy/
H A Dspdy_session_pool_unittest.cc334 const GURL url3("https://mail.example.com"); in TEST_F() local
335 HostPortPair test_host_port_pair3(HostPortPair::FromURL(url3)); in TEST_F()
344 SPDY_BIDIRECTIONAL_STREAM, session3, url3, MEDIUM, NetLogWithSource()); in TEST_F()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/site-packages/pip/_vendor/distlib/
Dlocators.py539 href\\s*=\\s*(?:"(?P<url1>[^"]*)"|'(?P<url2>[^']*)'|(?P<url3>[^>\\s\n]*))
575 url = d['url1'] or d['url2'] or d['url3']
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/site-packages/pip/_vendor/distlib/
Dlocators.py539 href\\s*=\\s*(?:"(?P<url1>[^"]*)"|'(?P<url2>[^']*)'|(?P<url3>[^>\\s\n]*))
575 url = d['url1'] or d['url2'] or d['url3']
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/pip/_vendor/distlib/
Dlocators.py539 href\\s*=\\s*(?:"(?P<url1>[^"]*)"|'(?P<url2>[^']*)'|(?P<url3>[^>\\s\n]*))
575 url = d['url1'] or d['url2'] or d['url3']
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/site-packages/pip/_vendor/distlib/
Dlocators.py539 href\\s*=\\s*(?:"(?P<url1>[^"]*)"|'(?P<url2>[^']*)'|(?P<url3>[^>\\s\n]*))
575 url = d['url1'] or d['url2'] or d['url3']
/aosp_15_r20/developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DAsyncTask.java111 * new DownloadFilesTask().execute(url1, url2, url3);
/aosp_15_r20/developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
H A DAsyncTask.java111 * new DownloadFilesTask().execute(url1, url2, url3);

12