Searched refs:scheme (Results 76 - 100 of 382) sorted by relevance

1234567891011>>

/external/nist-sip/java/gov/nist/javax/sip/header/
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/webkit/LayoutTests/dom/html/level2/html/
H A DHTMLMetaElement04.js78 The scheme attribute specifies a select form of content.
80 Retrieve the scheme attribute and examine its value.
102 vscheme = testNode.scheme;
/external/webkit/LayoutTests/dom/xhtml/level2/html/
H A DHTMLMetaElement04.js78 The scheme attribute specifies a select form of content.
80 Retrieve the scheme attribute and examine its value.
102 vscheme = testNode.scheme;
/external/webkit/Source/WebCore/page/
H A DContentSecurityPolicy.cpp106 CSPSource(const String& scheme, const String& host, int port, bool hostHasWildcard, bool portHasWildcard) argument
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 "
233 parseSource(const UChar* begin, const UChar* end, String& scheme, String& host, int& port, bool& hostHasWildcard, bool& portHasWildcard) argument
299 parseScheme(const UChar* begin, const UChar* end, 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;
59 /** The scheme registry. */
66 * @param schreg the scheme registry
109 // a layered scheme implies a secure connection
/external/chromium/chrome/browser/chromeos/
H A Dexternal_protocol_dialog.cc88 scheme_(url.scheme()) {
96 ASCIIToUTF16(url.scheme() + ":"),
H A Dproxy_config_service_impl.cc149 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,
148 CanBeWrittenByUser( bool user_is_owner, const std::string& scheme) argument
176 MapSchemeToProxy( const std::string& scheme) argument
297 EncodeAndAppendProxyServer( const std::string& scheme, const net::ProxyServer& server, std::string* spec) argument
395 UISetProxyConfigToProxyPerScheme( const std::string& scheme, const net::ProxyServer& server) argument
[all...]
/external/chromium/chrome/browser/net/
H A Durl_request_slow_http_job.cc22 const std::string& scheme) {
24 GetOnDiskPath(base_path_, request, scheme));
21 Factory(net::URLRequest* request, const std::string& scheme) argument
H A Durl_request_mock_http_job.cc25 const std::string& scheme) {
27 GetOnDiskPath(base_path_, request, scheme));
62 const std::string& scheme) {
24 Factory(net::URLRequest* request, const std::string& scheme) argument
60 GetOnDiskPath(const FilePath& base_path, net::URLRequest* request, const std::string& scheme) argument
/external/chromium/net/proxy/
H A Dproxy_bypass_rules.cc31 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_ur
[all...]
/external/chromium/net/url_request/
H A Durl_request_job_manager.h54 // 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/webkit/Source/JavaScriptCore/wtf/url/api/
H A DParsedURL.cpp43 String ParsedURL::scheme() const function in class:WTF::ParsedURL
45 return segment(m_segments.scheme);
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebUserContentURLPattern.idl40 HRESULT scheme([out, retval] BSTR*);
/external/chromium/chrome/browser/password_manager/
H A Dpassword_form_data.cc14 form->scheme = form_data.scheme;
41 return (lhs.scheme == rhs.scheme &&
57 return os << "scheme: " << form.scheme << std::endl
/external/chromium/net/http/
H A Dhttp_auth.cc78 if (!LowerCaseEqualsASCII(props.scheme(), current_scheme_name.c_str()))
110 // The first space-separated token is the auth-scheme.
111 // NOTE: we are more permissive than RFC 2617 which says auth-scheme
115 // Default param and scheme iterators provide empty strings
119 // Save the scheme's position.
168 const char* HttpAuth::SchemeToString(Scheme scheme) { argument
178 if (scheme < AUTH_SCHEME_BASIC || scheme >= AUTH_SCHEME_MAX) {
182 return kSchemeNames[scheme];
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DAddressFactoryImpl.java141 * Creates a TelURL based on given URI string. The scheme or '+' should
200 * order to create the new URI instance. Depending on the scheme the
212 String scheme = urlParser.peekScheme();
213 if (scheme == null)
214 throw new ParseException("bad scheme", 0);
215 if (scheme.equalsIgnoreCase("sip")) {
217 } else if (scheme.equalsIgnoreCase("sips")) {
219 } else if (scheme.equalsIgnoreCase("tel")) {
/external/webkit/Source/WebCore/platform/network/mac/
H A DAuthenticationMac.mm310 ProtectionSpaceAuthenticationScheme scheme = ProtectionSpaceAuthenticationSchemeDefault;
313 scheme = ProtectionSpaceAuthenticationSchemeDefault;
315 scheme = ProtectionSpaceAuthenticationSchemeHTTPBasic;
317 scheme = ProtectionSpaceAuthenticationSchemeHTTPDigest;
319 scheme = ProtectionSpaceAuthenticationSchemeHTMLForm;
321 scheme = ProtectionSpaceAuthenticationSchemeNTLM;
324 scheme = ProtectionSpaceAuthenticationSchemeClientCertificateRequested;
326 scheme = ProtectionSpaceAuthenticationSchemeServerTrustEvaluationRequested;
329 scheme = ProtectionSpaceAuthenticationSchemeUnknown;
333 return ProtectionSpace([macSpace host], [macSpace port], serverType, [macSpace realm], scheme);
[all...]
/external/chromium/googleurl/src/
H A Durl_canon_etc.cc81 // Contains the canonical version of each possible input letter in the scheme
83 // is not allowed in a scheme.
110 const url_parse::Component& scheme,
113 if (scheme.len <= 0) {
120 // The output scheme starts from the current position.
129 int end = scheme.end();
130 for (int i = scheme.begin; i < end; i++) {
134 if (i == scheme.begin) {
135 // Need to do a special check for the first letter of the scheme.
146 // Canonicalizing the scheme multipl
109 DoScheme(const CHAR* spec, const url_parse::Component& scheme, CanonOutput* output, url_parse::Component* out_scheme) argument
321 CanonicalizeScheme(const char* spec, const url_parse::Component& scheme, CanonOutput* output, url_parse::Component* out_scheme) argument
328 CanonicalizeScheme(const char16* spec, const url_parse::Component& scheme, CanonOutput* output, url_parse::Component* out_scheme) argument
[all...]
H A Durl_canon_internal_file.h114 // complicated scheme canonicalizer).
115 new_parsed->scheme.begin = output->length();
120 new_parsed->scheme.len = output->length() - new_parsed->scheme.begin;
H A Durl_canon_pathurl.cc47 bool success = CanonicalizeScheme(source.scheme, parsed.scheme,
48 output, &new_parsed->scheme);
H A Durl_parse.h98 // url_parse::Component scheme;
99 // if (!url_parse::ExtractScheme(url, url_len, &scheme))
102 // if (IsStandardScheme(url, scheme)) // Not provided by this component
104 // else if (IsFileURL(url, scheme)) // Not provided by this component
129 // contain an entry for the four-character scheme, and it doesn't know about
162 // Scheme without the colon: "http://foo"/ would have a scheme of "http".
163 // The length will be -1 if no scheme is specified ("foo.com"), or 0 if there
164 // is a colon but no scheme (":foo"). Note that the scheme is not guaranteed
167 Component scheme; member in struct:url_parse::Parsed
[all...]
/external/apache-http/src/org/apache/http/
H A DHttpHost.java41 * This includes remote host name, port and scheme.
52 /** The default scheme is "http". */
65 /** The scheme */
75 * <code>-1</code> indicates the scheme default port.
76 * @param scheme the name of the scheme.
78 * {@link #DEFAULT_SCHEME_NAME default scheme}
80 public HttpHost(final String hostname, int port, final String scheme) { argument
87 if (scheme != null) {
88 this.schemeName = scheme
[all...]
/external/apache-http/src/org/apache/http/client/utils/
H A DURIUtils.java53 * @param scheme
67 * If both a scheme and a path are given but the path is
74 final String scheme,
83 if (scheme != null) {
84 buffer.append(scheme);
111 * A convenience method for creating a new {@link URI} whose scheme, host
119 * Contains the scheme, host and port to use.
73 createURI( final String scheme, final String host, int port, final String path, final String query, final String fragment) argument
/external/chromium/chrome/browser/ui/gtk/
H A Dexternal_protocol_dialog_gtk.cc73 ASCIIToUTF16(url.scheme() + ":"),
114 url_.scheme(), ExternalProtocolHandler::DONT_BLOCK);
117 url_.scheme(), ExternalProtocolHandler::BLOCK);
/external/chromium/chrome/common/extensions/
H A Durl_pattern.h17 // <url-pattern> := <scheme>://<host><path> | '<all_urls>'
18 // <scheme> := '*' | 'http' | 'https' | 'file' | 'ftp' | 'chrome'
22 // * Host is not used when the scheme is 'file'.
25 // valid scheme (as specified by valid_schemes_).
26 // * The '*' scheme pattern excludes file URLs.
39 // - http:/bar -- scheme separator not found
40 // - foo://* -- invalid scheme
50 // * Although we would like to support any scheme, it isn't clear what to tell
78 // A collection of scheme bitmasks for use with valid_schemes.
87 // SCHEME_ALL will match every scheme, includin
178 const std::string& scheme() const { return scheme_; } function in class:URLPattern
[all...]

Completed in 1299 milliseconds

1234567891011>>