Searched refs:scheme (Results 51 - 75 of 564) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/http/conn/
H A DClientConnectionManagerFactory.java34 import org.apache.http.conn.scheme.SchemeRegistry;
/external/apache-http/src/org/apache/http/conn/scheme/
H A DLayeredSocketFactory.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/scheme/LayeredSocketFactory.java $
32 package org.apache.http.conn.scheme;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DPBES2Algorithms.java20 private EncryptionScheme scheme; field in class:PBES2Algorithms
46 scheme = EncryptionScheme.getInstance(e.nextElement());
61 return scheme;
72 subV.add(scheme);
/external/chromium_org/chrome/browser/autocomplete/
H A Dchrome_autocomplete_scheme_classifier.h13 // The subclass to provide chrome-specific scheme handling.
21 const std::string& scheme) const OVERRIDE;
/external/chromium_org/components/dom_distiller/webui/
H A Ddom_distiller_ui.h21 const std::string& scheme);
H A Ddom_distiller_ui.cc21 const std::string& scheme)
55 web_ui->AddMessageHandler(new DomDistillerHandler(service, scheme));
19 DomDistillerUi(content::WebUI* web_ui, DomDistillerService* service, const std::string& scheme) argument
/external/chromium_org/components/omnibox/
H A Dtest_scheme_classifier.h19 const std::string& scheme) const OVERRIDE;
H A Dautocomplete_input.cc137 base::string16* scheme,
151 // consider a scheme. For example, we shouldn't consider www.google.com:80
152 // to have a scheme.
157 if (scheme)
158 *scheme = parsed_scheme;
173 // A user might or might not type a scheme when entering a file URL. In
175 // but |parts->scheme| might be empty, e.g. if the user typed "C:\foo".
179 // If the user typed a scheme, and it's HTTP or HTTPS, we know how to parse it
182 // any input of this scheme. In theory we could do better with some schemes
185 if (parts->scheme
132 Parse( const base::string16& text, const base::string16& desired_tld, const AutocompleteSchemeClassifier& scheme_classifier, url::Parsed* parts, base::string16* scheme, GURL* canonicalized_url) argument
410 ParseForEmphasizeComponents( const base::string16& text, const AutocompleteSchemeClassifier& scheme_classifier, url::Component* scheme, url::Component* host) argument
491 url::Component scheme; local
[all...]
/external/chromium_org/content/public/browser/
H A Dhost_zoom_map.h27 // for host with specific scheme. Setting any of the levels leaves settings
30 // host and scheme pair is checked, secondly the zoom for the host only and
38 ZOOM_CHANGED_FOR_SCHEME_AND_HOST, // Zoom level changed for scheme/host
41 // renderer, no scheme/host is specified.
44 // Structure used to notify about zoom changes. Host and/or scheme are empty
49 std::string scheme; member in struct:content::HostZoomMap::ZoomLevelChange
73 // Returns the zoom for the specified |scheme| and |host|. See class
78 const std::string& scheme,
81 // Returns true if the specified |scheme| and/or |host| has a zoom level
85 virtual bool HasZoomLevel(const std::string& scheme,
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DCredentials.java54 protected String scheme; field in class:Credentials
78 * get the scheme field.
82 return scheme;
86 * Set the scheme member
90 scheme = s;
102 String retval = scheme;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DBlackboxSupport.js27 var scheme = parsedURL.scheme;
29 if (scheme && scheme !== "http" && scheme !== "https") {
30 prefix = "^" + scheme + "://";
31 if (scheme === "chrome-extension")
/external/chromium_org/url/
H A Durl_util.cc74 return compare_to[0] == 0; // When component is empty, match empty scheme.
80 // Returns true if the given scheme identified by |scheme| within |spec| is one
83 bool DoIsStandard(const CHAR* spec, const Component& scheme) { argument
84 if (!scheme.is_nonempty())
89 if (LowerCaseEqualsASCII(&spec[scheme.begin], &spec[scheme.end()],
101 // Before extracting scheme, canonicalize the URL to remove any whitespace.
110 // No scheme.
154 Component scheme; local
398 IsStandard(const char* spec, const Component& scheme) argument
402 IsStandard(const base::char16* spec, const Component& scheme) argument
[all...]
/external/chromium_org/net/url_request/
H A Dtest_url_request_interceptor.cc48 Delegate(const std::string& scheme, argument
52 : scheme_(scheme),
64 static void Unregister(const std::string& scheme, argument
66 net::URLRequestFilter::GetInstance()->RemoveHostnameHandler(scheme,
71 // hostname and scheme of |url| must match the corresponding parameters
98 if (request->url().scheme() != scheme_ ||
141 const std::string& scheme,
145 : scheme_(scheme),
148 delegate_(new Delegate(scheme,
163 CHECK_EQ(scheme_, url.scheme());
140 TestURLRequestInterceptor( const std::string& scheme, const std::string& hostname, const scoped_refptr<base::TaskRunner>& network_task_runner, const scoped_refptr<base::TaskRunner>& worker_task_runner) argument
[all...]
H A Durl_request_intercepting_job_factory.h30 // are passed on to their default ProtocolHandler. Each supported scheme should
42 const std::string& scheme,
45 virtual bool IsHandledProtocol(const std::string& scheme) const OVERRIDE;
H A Durl_request_job_factory.h46 const std::string& scheme,
50 virtual bool IsHandledProtocol(const std::string& scheme) const = 0;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DParsedURL.js37 this.scheme = "";
47 // 1 - scheme (using the RFC3986 grammar)
55 this.scheme = match[1].toLowerCase();
62 this.scheme = "data";
66 this.scheme = "about";
100 origin = parsedURL.scheme + "://" + parsedURL.host;
138 if (parsedHref && parsedHref.scheme)
172 return parsedURL.scheme + "://" + parsedURL.host + (parsedURL.port ? (":" + parsedURL.port) : "") + basePath + postfix;
182 return parsedURL.scheme + ":" + path + postfix;
184 return parsedURL.scheme
[all...]
/external/chromium_org/net/http/
H A Dhttp_auth_cache.h21 // For each (origin, realm, scheme) triple the cache stores a
23 // - the origin server {protocol scheme, host, port}
25 // - the last auth handler used (contains realm and authentication scheme)
27 // Entries can be looked up by either (origin, realm, scheme) or (origin, path).
43 // The authentication scheme of the challenge.
44 HttpAuth::Scheme scheme() const { function in class:net::HttpAuthCache::Entry
118 // scheme |scheme|.
119 // |origin| - the {scheme, host, port} of the server.
121 // |scheme|
[all...]
/external/chromium_org/components/url_fixer/
H A Durl_fixer.cc65 parts->scheme = UTF8ComponentToUTF16Component(text_utf8, parts_utf8.scheme);
353 // Try to extract a valid scheme from the beginning of |text|.
354 // If successful, set |scheme_component| to the text range where the scheme
368 // Make sure the scheme contains only valid characters, and convert
390 // will add an HTTP scheme later and make the URL parser happy.
400 // output on success: a semicolon following a valid scheme is replaced with a
423 std::string scheme;
424 if (!GetValidScheme(*text, &parts->scheme, &scheme)) {
[all...]
/external/chromium_org/chrome/browser/chromeos/
H A Dui_proxy_config.cc34 void UIProxyConfig::SetProxyForScheme(const std::string& scheme, argument
36 ManualProxy* proxy = MapSchemeToProxy(scheme);
38 NOTREACHED() << "Cannot set proxy: invalid scheme [" << scheme << "]";
139 const std::string& scheme) {
140 if (scheme == "http")
142 if (scheme == "https")
144 if (scheme == "ftp")
146 if (scheme == "socks")
148 NOTREACHED() << "Invalid scheme
138 MapSchemeToProxy( const std::string& scheme) argument
[all...]
/external/chromium_org/net/base/
H A Dauth.cc16 this->scheme == that.scheme &&
/external/chromium_org/storage/common/database/
H A Ddatabase_identifier.h32 std::string scheme() const { return scheme_; } function in class:storage::DatabaseIdentifier
39 DatabaseIdentifier(const std::string& scheme,
/external/glide/library/src/main/java/com/bumptech/glide/load/model/
H A DStringLoader.java9 * A model loader for handling certain string models. Handles paths, urls, and any uri string with a scheme handled by
23 final String scheme = uri.getScheme();
24 if (scheme == null) {
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
H A Dproxy_form_controller_test.js268 scheme: 'socks5',
275 this.assertEqual('socks5', single.scheme);
296 scheme: 'https',
308 this.assertEqual('https', single.scheme);
318 scheme: 'http',
323 scheme: 'https',
328 scheme: 'socks4',
333 scheme: 'socks5',
347 this.assertEqual('http', server.scheme);
352 this.assertEqual('https', server.scheme);
[all...]
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultUserTokenHandler.java84 AuthScheme scheme = authState.getAuthScheme();
85 if (scheme != null && scheme.isComplete() && scheme.isConnectionBased()) {
/external/chromium_org/chrome/browser/ui/login/
H A Dlogin_prompt_unittest.cc14 auth_info->scheme = "Basic";

Completed in 6342 milliseconds

1234567891011>>