Home
last modified time | relevance | path

Searched full:url1 (Results 1 – 25 of 46) sorted by relevance

12

/external/openscreen/util/
Durl_unittest.cc59 Url url1("http://user:pass@google.com:99/foo;bar?q=a#ref"); in TEST() local
60 Url url2(url1); in TEST()
62 EXPECT_TRUE(url1.is_valid()); in TEST()
63 EXPECT_TRUE(url1.has_host()); in TEST()
64 EXPECT_TRUE(url1.has_port()); in TEST()
65 EXPECT_TRUE(url1.has_path()); in TEST()
66 EXPECT_TRUE(url1.has_query()); in TEST()
68 EXPECT_EQ("http", url1.scheme()); in TEST()
69 EXPECT_EQ("google.com", url1.host()); in TEST()
70 EXPECT_EQ(99, url1.port()); in TEST()
[all …]
/external/cronet/testing/flake_suppressor_common/
Dresult_output_unittest.py28 ('some', 'tags'): ['url1', 'url2'],
44 <li><a href="url1">url1</a></li>
58 <li><a href="url1">url1</a></li>
82 'some tags': ['url1', 'url2'],
95 <li><a href="url1">url1</a></li>
117 ('some', 'tags'): ['url1', 'url2'],
124 'some tags': ['url1', 'url2'],
139 'some tags': ['url1', 'url2'],
148 'some_test': ['url1', 'url2'],
/external/curl/tests/http/
Dtest_04_stuttered.py74 url1 = f'https://{env.authority_for(env.domain1, proto)}/data.json?[0-{warmups-1}]'
78 r = curl.http_download(urls=[url1, urln], alpn_proto=proto,
96 url1 = f'https://{env.authority_for(env.domain1, proto)}/data.json?[0-{warmups-1}]'
100 r = curl.http_download(urls=[url1, urln], alpn_proto=proto,
118 url1 = f'https://{env.authority_for(env.domain1, proto)}/data.json?[0-{warmups-1}]'
122 r = curl.http_download(urls=[url1, urln], alpn_proto=proto,
Dscorecard.py324 url1 = f'https://{self.env.domain1}:{port}/reqs10.data'
328 '10KB': self.requests_url(url=url1, proto=proto, count=req_count),
337 url1 = f'https://{self.env.domain1}:{port}/req10.data'
341 '10KB': self.requests_url(url=url1, proto=proto, count=req_count),
/external/cronet/net/cert_net/
Dcert_net_fetcher_url_request_unittest.cc269 GURL url1 = test_server_.GetURL("/cert.crt"); in TEST_F() local
271 StartRequest(fetcher(), url1); in TEST_F()
464 GURL url1 = test_server_.GetURL("/cert.crt"); in TEST_F() local
466 StartRequest(fetcher(), url1); in TEST_F()
504 GURL url1 = test_server_.GetURL("/cert.crt"); in TEST_F() local
507 StartRequest(fetcher(), url1); in TEST_F()
536 GURL url1 = test_server_.GetURL("/cert.crt"); in TEST_F() local
539 // Issue 3 requests for url1, and 3 requests for url2 in TEST_F()
541 StartRequest(fetcher(), url1); in TEST_F()
547 StartRequest(fetcher(), url1); in TEST_F()
[all …]
/external/googleapis/google/ads/googleads/v15/resources/
Dasset_group_listing_group_filter.proto176 // Example1: for URL1 = www.ads.google.com?ocid=1&euid=2
179 // URL1 will be matched, but URL2 not.
181 // Example2 : If URL1 has Label1, Label2 and URL2 has Label2, Label3, then
182 // with Label1 and Label2 as custom_label conditions, URL1 will be matched
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.proto176 // Example1: for URL1 = www.ads.google.com?ocid=1&euid=2
179 // URL1 will be matched, but URL2 not.
181 // Example2 : If URL1 has Label1, Label2 and URL2 has Label2, Label3, then
182 // with Label1 and Label2 as custom_label conditions, URL1 will be matched
184 // With Label2 as the only custom_label condition then both URL1 and URL2
/external/rust/crates/rusqlite/src/types/
Durl.rs48 let url1 = Url::parse("http://www.example1.com/��").unwrap(); in test_sql_url() localVariable
55 params![url0, url1, url2, "illegal"], in test_sql_url()
60 assert_eq!(get_url(db, 1)?, url1); in test_sql_url()
/external/jsoup/src/test/java/org/jsoup/helper/
DHttpConnectionTest.java260 URL url1 = new URL("https://test.com/foo%20bar/%5BOne%5D?q=white+space#frag"); in encodeUrl() local
261 URL url2 = new UrlBuilder(url1).build(); in encodeUrl()
266 … URL url1 = new URL("https://example.com/tools/test��.html"); // = "/tools/test\uD83D\uDCA9.html" in encodeUrlSupplementary() local
267 URL url2 = new UrlBuilder(url1).build(); in encodeUrlSupplementary()
272 URL url1 = new URL("https://test.com/foo%20bar/%5BOne%5D?q=white+space#frag%20ment"); in encodedUrlDoesntDoubleEncode() local
273 URL url2 = new UrlBuilder(url1).build(); in encodedUrlDoesntDoubleEncode()
280 URL url1 = new URL("https://test.com/[foo] bar+/%5BOne%5D?q=white space#frag ment"); in urlPathIsPreservedDoesntDoubleEncode() local
281 URL url2 = new UrlBuilder(url1).build(); in urlPathIsPreservedDoesntDoubleEncode()
/external/cronet/url/android/javatests/src/org/chromium/url/
DGURLJavaTest.java129 GURL url1 = new GURL("filesystem:http://user:pass@google.com:21/blah#baz"); in testOrigin() local
133 Assert.assertEquals(kExpectedOrigin1, url1.getOrigin().getSpec()); in testOrigin()
277 GURL url1 = new GURL("https://www.google.com"); in testDomainIs() local
280 Assert.assertTrue(url1.domainIs("com")); in testDomainIs()
282 Assert.assertTrue(url1.domainIs("google.com")); in testDomainIs()
285 Assert.assertTrue(url1.domainIs("www.google.com")); in testDomainIs()
286 Assert.assertFalse(url1.domainIs("images.google.com")); in testDomainIs()
/external/federated-compute/fcp/demo/
Dmedia_test.py76 url1 = group.add('file1', data1)
78 self.assertEqual(service.download(b'', *url1.split('/')[-2:]).body, data1)
88 url1 = group1.add('name', data1)
90 self.assertEqual(service.download(b'', *url1.split('/')[-2:]).body, data1)
/external/chromium-trace/catapult/common/py_utils/py_utils/
Dcloud_storage.py264 url1 = 'gs://%s/%s' % (bucket1, remote_path)
266 logger.info('Moving %s to %s', url1, url2)
267 _RunCommand(['mv', url1, url2])
282 url1 = 'gs://%s/%s' % (bucket_from, remote_path_from)
284 logger.info('Copying %s to %s', url1, url2)
285 _RunCommand(['cp', url1, url2])
/external/cronet/net/proxy_resolution/
Dconfigured_proxy_resolution_service_unittest.cc332 const GURL& url1 = GURL(), in GetPendingJobsForURLs() argument
336 if (!url1.is_empty()) in GetPendingJobsForURLs()
337 urls.push_back(url1); in GetPendingJobsForURLs()
356 const GURL& url1 = GURL(), in GetCancelledJobsForURLs() argument
360 if (!url1.is_empty()) in GetCancelledJobsForURLs()
361 urls.push_back(url1); in GetCancelledJobsForURLs()
1373 GURL url1("http://www.google.com/"); in TEST_F() local
1378 int rv = service.ResolveProxy(url1, std::string(), NetworkAnonymizationKey(), in TEST_F()
1393 JobMap jobs = GetPendingJobsForURLs(resolver, url1, url2); in TEST_F()
1396 jobs[url1]->CompleteNow(ERR_PAC_SCRIPT_TERMINATED); in TEST_F()
[all …]
/external/guava/android/guava-tests/test/com/google/common/reflect/
DClassPathTest.java78 URL url1 = new URL("file:/a"); in testClassPathEntries_URLClassLoader_noParent() local
80 URLClassLoader classloader = new URLClassLoader(new URL[] {url1, url2}, null); in testClassPathEntries_URLClassLoader_noParent()
87 URL url1 = new URL("file:/a"); in testClassPathEntries_URLClassLoader_withParent() local
89 URLClassLoader parent = new URLClassLoader(new URL[] {url1}, null); in testClassPathEntries_URLClassLoader_withParent()
119 URL url1 = new URL("file:/a"); in testClassPathEntries_notURLClassLoader_withParentAndGrandParent() local
121 URLClassLoader grandParent = new URLClassLoader(new URL[] {url1}, null); in testClassPathEntries_notURLClassLoader_withParentAndGrandParent()
/external/guava/guava-tests/test/com/google/common/reflect/
DClassPathTest.java84 URL url1 = new URL("file:/a"); in testClassPathEntries_URLClassLoader_noParent() local
86 URLClassLoader classloader = new URLClassLoader(new URL[] {url1, url2}, null); in testClassPathEntries_URLClassLoader_noParent()
93 URL url1 = new URL("file:/a"); in testClassPathEntries_URLClassLoader_withParent() local
95 URLClassLoader parent = new URLClassLoader(new URL[] {url1}, null); in testClassPathEntries_URLClassLoader_withParent()
125 URL url1 = new URL("file:/a"); in testClassPathEntries_notURLClassLoader_withParentAndGrandParent() local
127 URLClassLoader grandParent = new URLClassLoader(new URL[] {url1}, null); in testClassPathEntries_notURLClassLoader_withParentAndGrandParent()
/external/snakeyaml/src/test/resources/env/
Ddocker-compose.yaml13 URL1: ${EnvironmentKey1}
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DURLClassLoaderTest.java258 URL url1 = (URL) en.nextElement(); in test_findClassLjava_lang_String() local
261 && url1.equals(new URL("jar:file:/" in test_findClassLjava_lang_String()
426 URL url1 = new URL("file:///"); in test_getResourceLjava_lang_String() local
427 URLClassLoader loader = new URLClassLoader(new URL[] { url1 }, null); in test_getResourceLjava_lang_String()
/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/
DClassLoaderUtils.java45 * {@code "URLClassLoader.toString() + [URL1, URL2, ...]"}.
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DShadowCookieManagerTest.java65 String url1 = "http://www.google.com"; in shouldGetCookieForUrl() local
67 cookieManager.setCookie(url1, value1); in shouldGetCookieForUrl()
/external/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/internal/util/
DProtoConversionUtilTest.java213 .addDeltaFile(DeltaFile.newBuilder().setUrlToDownload("url1").build()) in convertDataFile_convertsFields()
241 .containsExactly("url1", "url2"); in convertDataFile_convertsFields()
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/docs/apidoc/
Depydoc.js76 function setFrame(url1, url2) { argument
77 parent.frames[1].location.href = url1;
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/docs/apidoc/
Depydoc.js76 function setFrame(url1, url2) { argument
77 parent.frames[1].location.href = url1;
/external/python/google-api-python-client/docs/epy/
Depydoc.js76 function setFrame(url1, url2) { argument
77 parent.frames[1].location.href = url1;
/external/mesa3d/src/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/htmldiff/
Dhtmldiff.pl495 my $url1 = $query->param("oldfile");
507 my $req1 = new HTTP::Request GET => $url1;
512 print "<p>The URL $url1 could not be found. Please check it and try again.</p>";
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/env/
DEnvVariableTest.java88 …"environment={URL1=EnvironmentValue1, URL2=, URL3=server3, URL4=, URL5=server5, URL6=server6}}}}")… in testDockerCompose()

12