HomeSort by relevance Sort by last modified time
    Searched refs:scheme (Results 76 - 100 of 580) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium/chrome/browser/net/
blob_url_request_job_factory.cc 19 const std::string& scheme) {
file_system_url_request_job_factory.cc 17 const std::string& scheme) {
url_request_mock_link_doctor_job.cc 27 const std::string& scheme) {
url_request_slow_http_job.cc 22 const std::string& scheme) {
24 GetOnDiskPath(base_path_, request, scheme));
  /external/chromium/chrome/browser/ui/search_engines/
edit_search_engine_controller.cc 132 // Parse the string as a URL to determine the scheme. If we need to, add the
133 // scheme. As the scheme may be expanded (as happens with {google:baseURL})
134 // we need to replace the search terms before testing for the scheme.
140 std::string scheme(
142 if (!parts.scheme.is_valid()) {
143 scheme.append("://");
144 url.insert(0, scheme);
  /external/chromium/chrome/common/extensions/
url_pattern.cc 43 const char* kParseErrorMissingSchemeSeparator = "Missing scheme separator.";
44 const char* kParseErrorInvalidScheme = "Invalid scheme.";
45 const char* kParseErrorWrongSchemeType = "Wrong scheme type.";
69 bool IsStandardScheme(const std::string& scheme) {
70 // "*" gets the same treatment as a standard scheme.
71 if (scheme == "*")
74 return url_util::IsStandard(scheme.c_str(),
75 url_parse::Component(0, static_cast<int>(scheme.length())));
117 // Parse out the scheme.
121 // Some urls also use ':' alone as the scheme separator
    [all...]
  /external/chromium/googleurl/src/
url_util.h 65 // Adds an application-defined scheme to the internal list of "standard" URL
85 // Locates the scheme in the given string and places it into |found_scheme|,
88 // Returns whether the given |compare| scheme matches the scheme found in the
89 // input (if any). The |compare| scheme must be a valid canonical scheme or
113 // either the scheme is in the list of known standard schemes.
115 const url_parse::Component& scheme);
117 const url_parse::Component& scheme);
122 const url_parse::Component& scheme) {
    [all...]
  /external/chromium/net/socket_stream/
socket_stream_job_manager.h 29 const std::string& scheme, SocketStreamJob::ProtocolFactory* factory);
  /external/chromium/net/url_request/
url_request_data_job.cc 19 const std::string& scheme) {
url_request_job_manager.h 54 // scheme. Note: also returns true if there is a built-in handler for the
55 // given scheme.
56 bool SupportsScheme(const std::string& scheme) const;
58 // Register a protocol factory associated with the given scheme. The factory
62 const std::string& scheme, URLRequest::ProtocolFactory* factory);
  /external/chromium/webkit/glue/
password_form.h 42 // of the same Scheme will be matched/autofilled against each other.
43 enum Scheme {
48 } scheme; member in struct:webkit_glue::PasswordForm
50 // The "Realm" for the sign-on (scheme, host, port for SCHEME_HTML, and
  /external/nist-sip/java/gov/nist/javax/sip/header/
AuthenticationHeader.java 84 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) {
170 this.scheme = scheme
    [all...]
Challenge.java 60 * 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/webkit/Source/WebCore/page/
UserContentURLPattern.h 50 const String& scheme() const { return m_scheme; } function in class:WebCore::UserContentURLPattern
ContentSecurityPolicy.cpp 106 CSPSource(const String& scheme, const String& host, int port, bool hostHasWildcard, bool portHasWildcard)
107 : m_scheme(scheme)
167 bool parseSource(const UChar* begin, const UChar* end, String& scheme, String& host, int& port, bool& hostHasWildcard, bool& portHasWildcard);
168 bool parseScheme(const UChar* begin, const UChar* end, String& scheme);
214 String scheme, host; local
219 if (parseSource(beginSource, position, scheme, host, port, hostHasWildcard, portHasWildcard)) {
220 if (scheme.isEmpty())
221 scheme = m_origin->protocol();
222 m_list.append(CSPSource(scheme, host, port, hostHasWildcard, portHasWildcard));
229 // source = scheme ":
    [all...]
  /build/target/board/vbox_x86/
disk_layout.conf 13 scheme mbr
  /cts/tests/tests/net/src/android/net/cts/
Uri_BuilderTest.java 43 .scheme("http")
58 .scheme("mailto")
  /external/apache-http/src/org/apache/http/impl/conn/
DefaultHttpRoutePlanner.java 44 import org.apache.http.conn.scheme.Scheme;
45 import org.apache.http.conn.scheme.SchemeRegistry;
59 /** The scheme registry. */
66 * @param schreg the scheme registry
107 final Scheme schm = schemeRegistry.getScheme(target.getSchemeName());
109 // a layered scheme implies a secure connection
  /external/chromium/chrome/browser/chromeos/
external_protocol_dialog.cc 88 scheme_(url.scheme()) {
96 ASCIIToUTF16(url.scheme() + ":"),
proxy_config_service_impl.cc 149 bool user_is_owner, const std::string& scheme) {
163 setting = MapSchemeToProxy(scheme);
177 const std::string& scheme) {
178 if (scheme == "http")
180 if (scheme == "https")
182 if (scheme == "ftp")
184 if (scheme == "socks")
186 NOTREACHED() << "Invalid scheme: " << scheme;
298 const std::string& scheme,
    [all...]
  /external/chromium/net/http/
http_auth_controller.h 72 virtual bool IsAuthSchemeDisabled(HttpAuth::Scheme scheme) const;
73 virtual void DisableAuthScheme(HttpAuth::Scheme scheme);
111 // auth scheme for this controller and returns true. Returns false
120 // Holds the {scheme, host, path, port} for the authentication target.
123 // Holds the {scheme, host, port} for the authentication target.
130 // |handler_| encapsulates the logic for the particular auth-scheme.
162 std::set<HttpAuth::Scheme> disabled_schemes_;
  /external/chromium/net/proxy/
proxy_bypass_rules.cc 31 if (!optional_scheme_.empty() && url.scheme() != optional_scheme_)
32 return false; // Didn't match scheme expectation.
99 if (!optional_scheme_.empty() && url.scheme() != optional_scheme_)
100 return false; // Didn't match scheme expectation.
272 // Extract any scheme-restriction.
274 std::string scheme; local
276 scheme = raw.substr(0, scheme_pos);
278 if (scheme.empty())
295 new BypassIPBlockRule(raw, scheme, ip_prefix, prefix_length_in_bits));
308 return AddRuleForHostname(scheme, tmp_url.host(), port)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowIntentFilter.java 61 public void addDataScheme(String scheme) {
62 schemes.add(scheme);
  /external/webkit/Source/JavaScriptCore/wtf/url/api/
ParsedURL.cpp 43 String ParsedURL::scheme() const function in class:WTF::ParsedURL
45 return segment(m_segments.scheme);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebUserContentURLPattern.idl 40 HRESULT scheme([out, retval] BSTR*);

Completed in 1633 milliseconds

1 2 34 5 6 7 8 91011>>