Searched refs:scheme (Results 101 - 125 of 564) sorted by relevance

1234567891011>>

/external/chromium_org/components/dom_distiller/webui/
H A Ddom_distiller_handler.h22 DomDistillerHandler(DomDistillerService* service, const std::string& scheme);
53 // The scheme for DOM distiller articles.
/external/chromium_org/content/browser/
H A Dhost_zoom_map_impl.h36 const std::string& scheme,
39 virtual bool HasZoomLevel(const std::string& scheme,
46 const std::string& scheme,
115 // for the specified host and scheme.
117 void SendZoomLevelChange(const std::string& scheme,
H A Dbrowser_url_handler_impl_unittest.cc17 if (url->scheme() == "foo") {
26 if (url->scheme() == "bar") {
H A Dhost_zoom_map_impl.cc113 bool HostZoomMapImpl::HasZoomLevel(const std::string& scheme, argument
118 scheme_host_zoom_levels_.find(scheme));
130 const std::string& scheme,
135 scheme_host_zoom_levels_.find(scheme));
155 std::string(), // scheme
164 const std::string& scheme = i->first; local
171 scheme, // scheme
205 void HostZoomMapImpl::SetZoomLevelForHostAndScheme(const std::string& scheme, argument
211 scheme_host_zoom_levels_[scheme][hos
129 GetZoomLevelForHostAndScheme( const std::string& scheme, const std::string& host) const argument
373 SendZoomLevelChange(const std::string& scheme, const std::string& host, double level) argument
[all...]
/external/chromium_org/net/android/
H A Dgurl_utils.cc24 host.scheme()).Release();
/external/chromium_org/net/url_request/
H A Durl_request_context_builder.h138 // provided in the default |HttpAuthHandlerRegistryFactory|. The auth |scheme|
141 void add_http_auth_handler_factory(const std::string& scheme, argument
143 extra_http_auth_handlers_.push_back(SchemeFactory(scheme, factory));
177 SchemeFactory(const std::string& scheme,
181 std::string scheme; member in struct:net::URLRequestContextBuilder::SchemeFactory
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/
H A DCSPSource.h22 CSPSource(ContentSecurityPolicy*, const String& scheme, const String& host, int port, const String& path, WildcardDisposition hostWildcard, WildcardDisposition portWildcard);
H A DCSPSource.cpp16 CSPSource::CSPSource(ContentSecurityPolicy* policy, const String& scheme, const String& host, int port, const String& path, WildcardDisposition hostWildcard, WildcardDisposition portWildcard) argument
18 , m_scheme(scheme)
H A DCSPSourceList.h36 bool parseSource(const UChar* begin, const UChar* end, String& scheme, String& host, int& port, String& path, CSPSource::WildcardDisposition&, CSPSource::WildcardDisposition&);
37 bool parseScheme(const UChar* begin, const UChar* end, String& scheme);
/external/chromium_org/url/
H A Durl_util.h41 // Adds an application-defined scheme to the internal list of "standard" URL
61 // Locates the scheme in the given string and places it into |found_scheme|,
64 // Returns whether the given |compare| scheme matches the scheme found in the
65 // input (if any). The |compare| scheme must be a valid canonical scheme or
89 // either the scheme is in the list of known standard schemes.
90 URL_EXPORT bool IsStandard(const char* spec, const Component& scheme);
91 URL_EXPORT bool IsStandard(const base::char16* spec, const Component& scheme);
97 const Component& scheme) {
95 IsStandard(const char* spec, int spec_len, const Component& scheme) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAuthenticationHeader.java84 protected String scheme; field in class:AuthenticationHeader
89 this.scheme = ParameterNames.DIGEST;
147 this.scheme = challenge.scheme;
158 return this.scheme + SP + parameters.encode();
162 * Sets the scheme of the challenge information for this
165 * @param scheme -
167 * scheme.
169 public void setScheme(String scheme) { argument
170 this.scheme
[all...]
H A DChallenge.java60 * scheme field
62 protected String scheme; field in class:Challenge
82 return new StringBuffer(scheme)
89 * get the scheme field
93 return scheme;
236 * Set the scheme member
240 scheme = s;
/external/skia/tools/pyutils/
H A Durl_utils.py37 if urlparse.urlparse(filepath).scheme:
/external/chromium_org/url/third_party/mozilla/
H A Durl_parse.cc249 Component* scheme) {
260 *scheme = MakeRange(begin, i);
264 return false; // No colon found: no scheme
267 // Fills in all members of the Parsed structure except for the scheme.
270 // |after_scheme| is the character immediately following the scheme (after the
315 // The main parsing function for standard URLs. Standard URLs have a scheme,
326 if (DoExtractScheme(spec, spec_len, &parsed->scheme)) {
327 after_scheme = parsed->scheme.end() + 1; // Skip past the colon.
329 // Say there's no scheme when there is no colon. We could also say that
330 // everything is the scheme
247 DoExtractScheme(const CHAR* url, int url_len, Component* scheme) argument
810 ExtractScheme(const char* url, int url_len, Component* scheme) argument
814 ExtractScheme(const base::char16* url, int url_len, Component* scheme) argument
[all...]
/external/chromium_org/extensions/common/
H A Durl_pattern.cc50 const char kParseErrorMissingSchemeSeparator[] = "Missing scheme separator.";
51 const char kParseErrorInvalidScheme[] = "Invalid scheme.";
52 const char kParseErrorWrongSchemeType[] = "Wrong scheme type.";
77 bool IsStandardScheme(const std::string& scheme) { argument
78 // "*" gets the same treatment as a standard scheme.
79 if (scheme == "*")
82 return url::IsStandard(scheme.c_str(),
83 url::Component(0, static_cast<int>(scheme.length())));
86 bool IsValidPortForScheme(const std::string& scheme, const std::string& port) { argument
90 // Only accept non-wildcard ports if the scheme use
119 IsValidSchemeForExtensions(const std::string& scheme) argument
305 SetScheme(const std::string& scheme) argument
[all...]
/external/apache-http/src/org/apache/http/impl/conn/
H A DDefaultHttpRoutePlanner.java44 import org.apache.http.conn.scheme.Scheme;
45 import org.apache.http.conn.scheme.SchemeRegistry;
64 /** The scheme registry. */
71 * @param schreg the scheme registry
114 // a layered scheme implies a secure connection
/external/chromium_org/chrome/browser/chromeos/
H A Dui_proxy_config.h39 // single-proxy, or proxy-per-scheme.
53 // Proxy setting for mode = single-proxy or proxy-per-scheme.
64 // |scheme| is one of "http", "https", "ftp" or "socks".
65 void SetProxyForScheme(const std::string& scheme,
78 // Map |scheme| (one of "http", "https", "ftp" or "socks") to the correct
79 // ManualProxy. Returns NULL if scheme is invalid.
80 ManualProxy* MapSchemeToProxy(const std::string& scheme);
82 // Encodes the proxy server as "<url-scheme>=<proxy-scheme>://<proxy>"
/external/chromium_org/chrome/browser/net/
H A Dwebsocket_browsertest.cc41 std::string scheme("http");
43 replacements.SetSchemeStr(scheme);
50 std::string scheme("https");
52 replacements.SetSchemeStr(scheme);
207 std::string scheme("http");
209 replacements.SetSchemeStr(scheme);
224 std::string scheme("https");
226 replacements.SetSchemeStr(scheme);
/external/chromium_org/chrome/browser/ui/app_list/search/common/
H A Dwebservice_search_provider.cc70 // First we check the scheme: if this looks like a URL with a scheme that is
72 // disclosure of potentially private, local data. If the scheme is OK, we
74 if (LowerCaseEqualsASCII(query_as_url.scheme(), url::kFileScheme))
93 if (LowerCaseEqualsASCII(query_as_url.scheme(), url::kHttpsScheme) &&
/external/chromium_org/content/common/
H A Durl_schemes.cc22 void AddStandardSchemeHelper(const std::string& scheme) { argument
23 url::AddStandardScheme(scheme.c_str());
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/
H A Dconfig.py16 # E1101: Instance of 'ParseResult' has no 'scheme' member
22 if (given.scheme == allowed.scheme and
/external/chromium_org/remoting/host/setup/
H A Doauth_helper.cc61 if (GetComponent(url, url_parsed.scheme) !=
62 GetComponent(redirect_url, redirect_url_parsed.scheme)) {
/external/chromium_org/third_party/libjingle/source/talk/examples/objc/AppRTCDemo/
H A DGAEChannelClient.m109 NSString* scheme = [request.URL scheme];
110 NSAssert(scheme, @"scheme is nil: %@", request);
111 if (![scheme isEqualToString:@"js-frame"]) {
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowIntentFilter.java61 public void addDataScheme(String scheme) { argument
62 schemes.add(scheme);
/external/chromium_org/net/http/
H A Dhttp_auth.cc79 if (!LowerCaseEqualsASCII(props.scheme(), current_scheme_name.c_str()))
131 const char* HttpAuth::SchemeToString(Scheme scheme) { argument
142 if (scheme < AUTH_SCHEME_BASIC || scheme >= AUTH_SCHEME_MAX) {
146 return kSchemeNames[scheme];

Completed in 4335 milliseconds

1234567891011>>