Home
last modified time | relevance | path

Searched full:url2 (Results 1 – 25 of 50) sorted by relevance

12

/external/openscreen/util/
Durl_unittest.cc60 Url url2(url1); in TEST() local
74 EXPECT_TRUE(url2.is_valid()); in TEST()
75 EXPECT_TRUE(url2.has_host()); in TEST()
76 EXPECT_TRUE(url2.has_port()); in TEST()
77 EXPECT_TRUE(url2.has_path()); in TEST()
78 EXPECT_TRUE(url2.has_query()); in TEST()
80 EXPECT_EQ("http", url2.scheme()); in TEST()
81 EXPECT_EQ("google.com", url2.host()); in TEST()
82 EXPECT_EQ(99, url2.port()); in TEST()
83 EXPECT_EQ("/foo;bar", url2.path()); in TEST()
[all …]
/external/cronet/testing/flake_suppressor_common/
Dresult_output_unittest.py28 ('some', 'tags'): ['url1', 'url2'],
45 <li><a href="url2">url2</a></li>
59 <li><a href="url2">url2</a></li>
82 'some tags': ['url1', 'url2'],
96 <li><a href="url2">url2</a></li>
117 ('some', 'tags'): ['url1', 'url2'],
124 'some tags': ['url1', 'url2'],
139 'some tags': ['url1', 'url2'],
148 'some_test': ['url1', 'url2'],
/external/cronet/url/
Dgurl_unittest.cc109 GURL url2(url); in TEST() local
110 EXPECT_TRUE(url2.is_valid()); in TEST()
112 EXPECT_EQ("http://user:pass@google.com:99/foo;bar?q=a#ref", url2.spec()); in TEST()
113 EXPECT_EQ("http", url2.scheme()); in TEST()
114 EXPECT_EQ("user", url2.username()); in TEST()
115 EXPECT_EQ("pass", url2.password()); in TEST()
116 EXPECT_EQ("google.com", url2.host()); in TEST()
117 EXPECT_EQ("99", url2.port()); in TEST()
118 EXPECT_EQ(99, url2.IntPort()); in TEST()
119 EXPECT_EQ("/foo;bar", url2.path()); in TEST()
[all …]
/external/curl/docs/libcurl/
Dcurl_url_dup.md42 CURLU *url2;
45 url2 = curl_url_dup(url); /* clone it! */
46 curl_url_cleanup(url2);
/external/jsoup/src/test/java/org/jsoup/helper/
DHttpConnectionTest.java261 URL url2 = new UrlBuilder(url1).build(); in encodeUrl() local
262 … assertEquals("https://test.com/foo%20bar/%5BOne%5D?q=white+space#frag", url2.toExternalForm()); in encodeUrl()
267 URL url2 = new UrlBuilder(url1).build(); in encodeUrlSupplementary() local
268 assertEquals("https://example.com/tools/test%F0%9F%92%A9.html", url2.toExternalForm()); in encodeUrlSupplementary()
273 URL url2 = new UrlBuilder(url1).build(); in encodedUrlDoesntDoubleEncode() local
274 URL url3 = new UrlBuilder(url2).build(); in encodedUrlDoesntDoubleEncode()
275 …assertEquals("https://test.com/foo%20bar/%5BOne%5D?q=white+space#frag%20ment", url2.toExternalForm… in encodedUrlDoesntDoubleEncode()
281 URL url2 = new UrlBuilder(url1).build(); in urlPathIsPreservedDoesntDoubleEncode() local
282 URL url3 = new UrlBuilder(url2).build(); in urlPathIsPreservedDoesntDoubleEncode()
283 …assertEquals("https://test.com/[foo]%20bar+/%5BOne%5D?q=white+space#frag%20ment", url2.toExternalF… in urlPathIsPreservedDoesntDoubleEncode()
/external/cronet/net/cert_net/
Dcert_net_fetcher_url_request_unittest.cc274 GURL url2 = test_server_.GetURL("/root.crl"); in TEST_F() local
276 StartRequest(fetcher(), url2); in TEST_F()
468 GURL url2 = test_server_.GetURL("/root.crl"); in TEST_F() local
470 StartRequest(fetcher(), url2); in TEST_F()
509 GURL url2 = test_server_.GetURL("/certs.p7c"); in TEST_F() local
511 StartRequest(fetcher(), url2); in TEST_F()
537 GURL url2 = test_server_.GetURL("/root.crl"); in TEST_F() local
539 // Issue 3 requests for url1, and 3 requests for url2 in TEST_F()
544 StartRequest(fetcher(), url2); in TEST_F()
550 StartRequest(fetcher(), url2); in TEST_F()
[all …]
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DShadowCookieManagerTest.java69 String url2 = "http://www.hotbot.com"; in shouldGetCookieForUrl() local
71 cookieManager.setCookie(url2, value2); in shouldGetCookieForUrl()
74 assertThat(cookieManager.getCookie(url2)).isEqualTo(value2); in shouldGetCookieForUrl()
272 String url2 = "http://android.com"; in shouldIgnoreCookiesSetInThePast() local
273 cookieManager.setCookie(url2, "name2=value2; Expires=Wed, 09 Jun 2000 10:18:14 GMT"); in shouldIgnoreCookiesSetInThePast()
276 assertThat(cookieManager.getCookie(url2)).isNull(); in shouldIgnoreCookiesSetInThePast()
/external/googleapis/google/ads/googleads/v15/resources/
Dasset_group_listing_group_filter.proto177 // and URL2 = www.ads.google.com?ocid=1
179 // URL1 will be matched, but URL2 not.
181 // Example2 : If URL1 has Label1, Label2 and URL2 has Label2, Label3, then
183 // but not URL2.
184 // With Label2 as the only custom_label condition then both URL1 and URL2
/external/googleapis/google/ads/googleads/v16/resources/
Dasset_group_listing_group_filter.proto177 // and URL2 = www.ads.google.com?ocid=1
179 // URL1 will be matched, but URL2 not.
181 // Example2 : If URL1 has Label1, Label2 and URL2 has Label2, Label3, then
183 // but not URL2.
184 // With Label2 as the only custom_label condition then both URL1 and URL2
/external/rust/crates/rusqlite/src/types/
Durl.rs49 let url2 = "http://www.example2.com/��"; in test_sql_url() localVariable
55 params![url0, url1, url2, "illegal"], in test_sql_url()
65 assert_eq!(out_url2, Url::parse(url2).unwrap()); in test_sql_url()
/external/federated-compute/fcp/demo/
Dmedia_test.py77 url2 = group.add('file2', data2)
79 self.assertEqual(service.download(b'', *url2.split('/')[-2:]).body, data2)
89 url2 = group2.add('name', data2)
91 self.assertEqual(service.download(b'', *url2.split('/')[-2:]).body, data2)
/external/curl/tests/data/
Dtest106539 …STNUMBER http://%HOSTIP:%HTTPPORT/%TESTNUMBER.upload1 http://%HOSTIP:%HTTPPORT/%TESTNUMBER0002.url2
56 GET /%TESTNUMBER0002.url2 HTTP/1.1
/external/curl/tests/libtest/
Dlib2306.c30 #define URL2 libtest_arg2 macro
48 easy_setopt(cl, CURLOPT_URL, URL2); in test()
/external/cronet/url/android/javatests/src/org/chromium/url/
DGURLJavaTest.java130 GURL url2 = new GURL("javascript:window.alert(\"hello,world\");"); in testOrigin() local
134 Assert.assertEquals(kExpectedOrigin2, url2.getOrigin().getSpec()); in testOrigin()
278 GURL url2 = new GURL("https://www.notgoogle.com"); in testDomainIs() local
281 Assert.assertTrue(url2.domainIs("com")); in testDomainIs()
283 Assert.assertFalse(url2.domainIs("google.com")); in testDomainIs()
/external/cronet/net/proxy_resolution/
Dconfigured_proxy_resolution_service_unittest.cc333 const GURL& url2 = GURL(), in GetPendingJobsForURLs() argument
338 if (!url2.is_empty()) in GetPendingJobsForURLs()
339 urls.push_back(url2); in GetPendingJobsForURLs()
357 const GURL& url2 = GURL(), in GetCancelledJobsForURLs() argument
362 if (!url2.is_empty()) in GetCancelledJobsForURLs()
363 urls.push_back(url2); in GetCancelledJobsForURLs()
607 GURL url2("http://www.example.com/"); in TEST_F() local
620 rv = service->ResolveProxy(url2, std::string(), NetworkAnonymizationKey(), in TEST_F()
653 ASSERT_EQ(url2, resolver.cancelled_jobs()[0]->url()); in TEST_F()
733 GURL url2("http://www.example.com/"); in TEST_F() local
[all …]
/external/chromium-trace/catapult/common/py_utils/py_utils/
Dcloud_storage.py265 url2 = 'gs://%s/%s' % (bucket2, remote_path)
266 logger.info('Moving %s to %s', url1, url2)
267 _RunCommand(['mv', url1, url2])
283 url2 = 'gs://%s/%s' % (bucket_to, remote_path_to)
284 logger.info('Copying %s to %s', url1, url2)
285 _RunCommand(['cp', url1, url2])
/external/guava/android/guava-tests/test/com/google/common/reflect/
DClassPathTest.java79 URL url2 = new URL("file:/b"); in testClassPathEntries_URLClassLoader_noParent() local
80 URLClassLoader classloader = new URLClassLoader(new URL[] {url1, url2}, null); in testClassPathEntries_URLClassLoader_noParent()
88 URL url2 = new URL("file:/b"); in testClassPathEntries_URLClassLoader_withParent() local
90 URLClassLoader child = new URLClassLoader(new URL[] {url2}, parent) {}; in testClassPathEntries_URLClassLoader_withParent()
120 URL url2 = new URL("file:/b"); in testClassPathEntries_notURLClassLoader_withParentAndGrandParent() local
122 URLClassLoader parent = new URLClassLoader(new URL[] {url2}, grandParent); in testClassPathEntries_notURLClassLoader_withParentAndGrandParent()
/external/guava/guava-tests/test/com/google/common/reflect/
DClassPathTest.java85 URL url2 = new URL("file:/b"); in testClassPathEntries_URLClassLoader_noParent() local
86 URLClassLoader classloader = new URLClassLoader(new URL[] {url1, url2}, null); in testClassPathEntries_URLClassLoader_noParent()
94 URL url2 = new URL("file:/b"); in testClassPathEntries_URLClassLoader_withParent() local
96 URLClassLoader child = new URLClassLoader(new URL[] {url2}, parent) {}; in testClassPathEntries_URLClassLoader_withParent()
126 URL url2 = new URL("file:/b"); in testClassPathEntries_notURLClassLoader_withParentAndGrandParent() local
128 URLClassLoader parent = new URLClassLoader(new URL[] {url2}, grandParent); in testClassPathEntries_notURLClassLoader_withParentAndGrandParent()
/external/snakeyaml/src/test/resources/env/
Ddocker-compose.yaml14 URL2: ${EnvironmentEmpty}
/external/oss-fuzz/projects/nodejs/
Dfuzz_url.cc22 node::url::URL url2((char*)data, size); in LLVMFuzzerTestOneInput() local
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/
DClassLoaderUtils.java45 * {@code "URLClassLoader.toString() + [URL1, URL2, ...]"}.
/external/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/internal/util/
DProtoConversionUtilTest.java214 .addDeltaFile(DeltaFile.newBuilder().setUrlToDownload("url2").build()) in convertDataFile_convertsFields()
241 .containsExactly("url1", "url2"); in convertDataFile_convertsFields()
/external/cronet/components/cronet/android/test/javatests/src/org/chromium/net/
DDiskStorageTest.java221 String url2 = NativeTestServer.getFileURL("/cacheable.txt"); in testCacheVersionCurrent() local
223 engine.newUrlRequestBuilder(url2, callback2, callback2.getExecutor()); in testCacheVersionCurrent()
/external/wpa_supplicant_8/src/radius/
Dradius_server.c1061 char *url2, *end2, *pos2; in radius_server_encapsulate_eap() local
1086 url2 = os_malloc(url_len + 1); in radius_server_encapsulate_eap()
1087 if (!url2) { in radius_server_encapsulate_eap()
1089 os_free(url2); in radius_server_encapsulate_eap()
1093 pos2 = url2; in radius_server_encapsulate_eap()
1094 end2 = url2 + url_len + 1; in radius_server_encapsulate_eap()
1102 (const u8 *) url2, url_len)) { in radius_server_encapsulate_eap()
1104 os_free(url2); in radius_server_encapsulate_eap()
1108 os_free(url2); in radius_server_encapsulate_eap()
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/docs/apidoc/
Depydoc.js76 function setFrame(url1, url2) { argument
78 parent.frames[2].location.href = url2;

12