HomeSort by relevance Sort by last modified time
    Searched refs:scheme (Results 276 - 300 of 835) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/browser/extensions/api/proxy/
proxy_api_helpers.cc 150 net::ProxyServer::Scheme default_scheme,
160 net::ProxyServer::Scheme scheme = local
162 if (scheme == net::ProxyServer::SCHEME_INVALID)
163 scheme = default_scheme;
183 port = net::ProxyServer::GetDefaultPortForScheme(scheme);
185 *out = net::ProxyServer(scheme, net::HostPortPair(host, port));
201 // whether a setting was found for the scheme; proxy_server holds the
214 net::ProxyServer::Scheme default_scheme = net::ProxyServer::SCHEME_HTTP;
412 // If we add a new scheme some time, we need to also store a new dictionar
    [all...]
  /frameworks/base/services/core/java/com/android/server/
IntentResolver.java 60 mSchemeToFilter, " Scheme: ");
203 mSchemeToFilter, " Scheme: ");
331 final String scheme = intent.getScheme(); local
335 resolvedType, scheme, listCut.get(i), resultList, userId);
343 String scheme = intent.getScheme(); local
351 TAG, "Resolving type=" + resolvedType + " scheme=" + scheme
398 // the filters that match its scheme (we will further refine matches
400 if (scheme != null) {
401 schemeCut = mSchemeToFilter.get(scheme);
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
ProxySelectorRoutePlanner.java 50 import org.apache.http.conn.scheme.Scheme;
51 import org.apache.http.conn.scheme.SchemeRegistry;
69 /** The scheme registry. */
79 * @param schreg the scheme registry
157 final Scheme schm =
160 // a layered scheme implies a secure connection
215 // assume default scheme (http)
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/
proxy_form_controller.js 191 * and scheme. If null, there is no single proxy.
202 * port, and scheme. If null, the single proxy checkbox will be unchecked.
219 * and scheme.
228 * port, and scheme. If empty, empties the proxy setting.
237 * and scheme.
246 * port, and scheme. If empty, empties the proxy setting.
255 * and scheme.
264 * port, and scheme. If empty, empties the proxy setting.
273 * and scheme.
282 * port, and scheme. If empty, empties the proxy setting
297 scheme: document.getElementById('proxyScheme' + type).value, property
318 data = {scheme: 'http', host: '', port: ''}; property
    [all...]
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_service_url.cc 170 if (url.scheme() != final_url.scheme() ||
  /external/chromium_org/components/autofill/content/renderer/
password_form_conversion_utils_browsertest.cc 59 EXPECT_EQ(PasswordForm::SCHEME_HTML, password_form->scheme);
127 EXPECT_EQ(PasswordForm::SCHEME_HTML, password_form->scheme);
  /external/chromium_org/components/test/data/web_database/
version_49.sql 23 CREATE TABLE web_intents ( service_url LONGVARCHAR, action VARCHAR, type VARCHAR, title LONGVARCHAR, disposition VARCHAR, scheme VARCHAR, UNIQUE (service_url, action, scheme, type));
24 CREATE TABLE web_intents_defaults ( action VARCHAR, type VARCHAR, url_pattern LONGVARCHAR, user_date INTEGER, suppression INTEGER, service_url LONGVARCHAR, scheme VARCHAR, UNIQUE (action, scheme, type, url_pattern));
version_50.sql 23 CREATE TABLE web_intents ( service_url LONGVARCHAR, action VARCHAR, type VARCHAR, title LONGVARCHAR, disposition VARCHAR, scheme VARCHAR, UNIQUE (service_url, action, scheme, type));
24 CREATE TABLE web_intents_defaults ( action VARCHAR, type VARCHAR, url_pattern LONGVARCHAR, user_date INTEGER, suppression INTEGER, service_url LONGVARCHAR, scheme VARCHAR, UNIQUE (action, scheme, type, url_pattern));
version_52.sql 8 CREATE TABLE web_intents ( service_url LONGVARCHAR, action VARCHAR, type VARCHAR, title LONGVARCHAR, disposition VARCHAR, scheme VARCHAR, UNIQUE (service_url, action, scheme, type));
9 CREATE TABLE web_intents_defaults ( action VARCHAR, type VARCHAR, url_pattern LONGVARCHAR, user_date INTEGER, suppression INTEGER, service_url LONGVARCHAR, scheme VARCHAR, UNIQUE (action, scheme, type, url_pattern));
  /external/chromium_org/ppapi/tests/
test_url_util.cc 48 ASSERT_TRUE(ComponentEquals(c.scheme, 0, 4));
62 ASSERT_TRUE(ComponentEquals(c.scheme, 0, 4));
  /external/chromium_org/tools/telemetry/telemetry/page/
page.py 32 raise ValueError('Must prepend the URL with scheme (e.g. file://)')
35 startup_url_scheme = urlparse.urlparse(self.startup_url).scheme
37 raise ValueError('Must prepend the URL with scheme (e.g. http://)')
39 raise ValueError('startup_url with local file scheme is not supported')
92 return urlparse.urlparse(self.url).scheme
106 """Returns the path of the file, stripping the scheme and query string."""
109 # we have to treat the url as a non-file by removing the scheme.
  /external/chromium_org/url/
url_canon_fileurl.cc 98 // Scheme (known, so we don't bother running it through the more
99 // complicated scheme canonicalizer).
100 new_parsed->scheme.begin = output->length();
102 new_parsed->scheme.len = 4;
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBench.java 57 String scheme = uri.getScheme(); local
58 if ("iterations".equals(scheme)) {
  /packages/services/Telecomm/src/com/android/server/telecom/
CallActivity.java 106 String scheme = handle.getScheme(); local
109 if (!PhoneAccount.SCHEME_VOICEMAIL.equals(scheme)) {
CallReceiver.java 52 String scheme = handle.getScheme(); local
55 if (!PhoneAccount.SCHEME_VOICEMAIL.equals(scheme)) {
  /external/apache-http/src/org/apache/http/conn/scheme/
PlainSocketFactory.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/scheme/PlainSocketFactory.java $
32 package org.apache.http.conn.scheme;
Scheme.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/scheme/Scheme.java $
31 package org.apache.http.conn.scheme;
38 * Encapsulates specifics of a protocol scheme such as "http" or "https".
48 * Scheme https = new Scheme("https", new MySecureSocketFactory(), 443);
57 public final class Scheme {
59 /** The name of this scheme, in lowercase. (e.g. http, https) */
62 /** The socket factory for this scheme */
65 /** The default port for this scheme */
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_url_request_job_unittest.cc 48 const std::string& scheme,
57 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE {
58 return scheme == chrome::kDriveScheme;
62 return url.is_valid() && IsHandledProtocol(url.scheme());
  /external/chromium_org/chrome/browser/custom_handlers/
protocol_handler_registry_browsertest.cc 75 ASSERT_EQ(1u, registry->GetHandlersFor(url.scheme()).size());
  /external/chromium_org/chrome/browser/devtools/device/
port_forwarding_browsertest.cc 76 GURL forwarding_url(original_url.scheme() + "://" +
  /external/chromium_org/content/test/net/
url_request_abort_on_end_job.cc 28 const std::string& scheme) {
  /external/chromium_org/mojo/service_manager/
service_manager.h 85 // Sets a Loader to be used for a specific url scheme.
87 const std::string& scheme);
99 // then one that's been specified for a scheme, then the default.
  /external/chromium_org/net/http/
http_auth_handler_basic.cc 65 // Verify the challenge's auth-scheme.
66 if (!LowerCaseEqualsASCII(challenge->scheme(), "basic"))
  /external/chromium_org/net/proxy/
proxy_config.h 29 // (2) Manual (simple set of proxy servers per scheme, and bypass patterns)
64 // proxy-uri = [<proxy-scheme>"://"]<proxy-host>[":"<proxy-port>]
68 // url-scheme = "http" | "https" | "ftp" | "socks"
70 // scheme-proxies = [<url-scheme>"="]<proxy-uri-list>
72 // proxy-rules = scheme-proxies[";"<scheme-proxies>]
75 // ordered proxies that apply to a particular URL scheme. Unless specified,
76 // the proxy scheme for proxy-uris is assumed to be http.
79 // * If the scheme is omitted from the first proxy list, that list applie
    [all...]
  /external/chromium_org/ppapi/c/dev/
ppb_url_util_dev.h 37 * the scheme doesn't include the trailing colon, the username and password
56 struct PP_URLComponent_Dev scheme; member in struct:PP_URLComponents_Dev

Completed in 7146 milliseconds

<<11121314151617181920>>