Searched refs:url (Results 1 - 25 of 1297) sorted by relevance

1234567891011>>

/external/libbrillo/brillo/
H A Durl_utils_unittest.cc13 url::Combine("http://sample.org", "path"));
15 url::Combine("http://sample.org/", "path"));
16 EXPECT_EQ("path1/path2", url::Combine("", "path1/path2"));
17 EXPECT_EQ("path1/path2", url::Combine("path1", "path2"));
18 EXPECT_EQ("http://sample.org", url::Combine("http://sample.org", ""));
20 url::Combine("http://sample.org/", "/path"));
22 url::Combine("http://sample.org", "//////path"));
23 EXPECT_EQ("http://sample.org/", url::Combine("http://sample.org", "///"));
25 url::Combine("http://sample.org/obj", "path1/path2"));
27 url
75 std::string url = "http://url?key1=val1&&key2=val2"; local
87 std::string url = "http://url?key1=val1&key2=val2#fragment"; local
104 std::string url = "http://url?key1=val1&key2=val2#fragment"; local
110 std::string url = "http://server.com/path"; local
127 std::string url = "http://server.com/path"; local
[all...]
/external/chromium-libpac/test/js-unittest/
H A Ddirect.js1 function FindProxyForURL(url, host) {
H A Dends_with_comment.js1 function FindProxyForURL(url, host) {
H A Dreturn_empty_string.js1 function FindProxyForURL(url, host) {
H A Dreturn_integer.js1 function FindProxyForURL(url, host) {
H A Dreturn_null.js1 function FindProxyForURL(url, host) {
H A Dreturn_unicode.js2 function FindProxyForURL(url, host) {
H A Dmissing_close_brace.js4 function FindProxyForURL(url, host) {
H A Dends_with_statement_no_semicolon.js2 function FindProxyForURL(url, host) { return "PROXY success:" + x; }
H A Dreturn_function.js1 function FindProxyForURL(url, host) {
H A Dreturn_object.js1 function FindProxyForURL(url, host) {
H A Dreturn_undefined.js1 function FindProxyForURL(url, host) {
H A Dunhandled_exception.js1 function FindProxyForURL(url, host) {
H A Dbinding_from_global.js6 function FindProxyForURL(url, host) {
H A Dinternational_domain_names.js3 function FindProxyForURL(url, host) {
H A Dside_effects.js7 function FindProxyForURL(url, host) {
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dbrowser.h13 static inline int hs20_web_browser(const char *url) argument
18 int hs20_web_browser(const char *url);
/external/wpa_supplicant_8/src/utils/
H A Dbrowser.h13 static inline int hs20_web_browser(const char *url) argument
18 int hs20_web_browser(const char *url);
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dbrowser.h13 static inline int hs20_web_browser(const char *url) argument
18 int hs20_web_browser(const char *url);
/external/chromium-trace/catapult/firefighter/update/common/buildbot/
H A Dnetwork.py14 def BuildUrl(master_name, url):
15 return '%s/%s/%s' % (constants.BUILDBOT_BASE_URL, master_name, url)
18 def FetchData(url):
20 return json.loads(FetchText(url))
22 logging.warning('Data is corrupt: %s', url)
26 def FetchText(url):
27 logging.debug('Retrieving %s', url)
29 return urlfetch.fetch(url).content
34 return urlfetch.fetch(url).content
36 logging.error('Error retrieving URL: %s', url)
[all...]
/external/curl/src/
H A Dtool_operhlp.h30 bool output_expected(const char *url, const char *uploadfile);
34 char *add_file_name_to_url(CURL *curl, char *url, const char *filename);
36 CURLcode get_url_file_name(char **filename, const char *url);
/external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
H A Dextension_page.py10 def UrlToExtensionId(url):
11 return re.match(r"(chrome-extension://)([^/]+)", url).group(2)
19 self.url = inspector_backend.url
20 self.extension_id = UrlToExtensionId(self.url)
27 self._inspector_backend.Navigate(self.url, None, 10)
/external/webrtc/webrtc/base/
H A Dhttpcommon_unittest.cc24 Url<char> url(TEST_URL);
25 EXPECT_TRUE(url.valid());
26 EXPECT_FALSE(url.secure());
27 EXPECT_STREQ(TEST_HOST, url.host().c_str());
28 EXPECT_EQ(80, url.port());
29 EXPECT_STREQ(TEST_PATH, url.path().c_str());
30 EXPECT_STREQ(TEST_QUERY, url.query().c_str());
31 EXPECT_STREQ(TEST_HOST, url.address().c_str());
32 EXPECT_STREQ(TEST_PATH TEST_QUERY, url.full_path().c_str());
33 EXPECT_STREQ(TEST_URL, url
[all...]
/external/autotest/client/common_lib/
H A Dsite_packages.py15 def get_fetcher(self, url):
16 if url.startswith('http://'):
17 return SiteHttpFetcher(self, url)
19 return super(SitePackageManager, self).get_fetcher(url)
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/echo/
H A Dapp.yaml25 - url: /
28 - url: /.+

Completed in 333 milliseconds

1234567891011>>