Searched refs:scheme (Results 151 - 175 of 382) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_unittest.cc424 const Component scheme; member in struct:__anon1700::test_data
454 Component scheme, host; local
457 &scheme,
461 EXPECT_EQ(input_cases[i].scheme.begin, scheme.begin) << "Input: " <<
463 EXPECT_EQ(input_cases[i].scheme.len, scheme.len) << "Input: " <<
H A Dautocomplete.h235 // it is non-NULL. The scheme is stored in |scheme| if it is non-NULL. The
241 string16* scheme,
244 // Parses |text| and fill |scheme| and |host| by the positions of them.
245 // The results are almost as same as the result of Parse(), but if the scheme
246 // is view-source, this function returns the positions of scheme and host
250 url_parse::Component* scheme,
268 // type/scheme/etc. should use this.
287 // The scheme parsed from the provided text; only meaningful when type_ is
289 const string16& scheme() cons function in class:AutocompleteInput
[all...]
/external/chromium/chrome/browser/password_manager/
H A Dpassword_form_manager.cc55 if (form.scheme != PasswordForm::SCHEME_HTML)
77 // Compare origins, ignoring scheme. There is no easy way to do this
78 // with GURL because clearing the scheme would result in an invalid url.
82 form.origin.scheme().length();
85 observed_form_.origin.scheme().length();
148 if (observed_form_.scheme != PasswordForm::SCHEME_HTML)
242 if ((observed_form_.scheme == PasswordForm::SCHEME_HTML) &&
400 if ((observed_form_.scheme == PasswordForm::SCHEME_HTML) &&
460 if (observed_form_.scheme == PasswordForm::SCHEME_HTML) {
/external/chromium/googleurl/src/
H A Dgurl_unittest.cc78 EXPECT_EQ("http", url.scheme());
94 EXPECT_EQ("", url.scheme());
112 EXPECT_EQ("http", url2.scheme());
127 EXPECT_EQ("", invalid2.scheme());
144 EXPECT_EQ("http", url.scheme());
231 // canonicalizer gets called based on the scheme of the input.
234 const char* scheme; member in struct:ReplaceCase
256 SetupReplacement(&GURL::Replacements::SetScheme, &repl, cur.scheme);
H A Durl_canon.h287 // Scheme: Appends the scheme and colon to the URL. The output component will
290 // Canonical URLs always have a scheme. If the scheme is not present in the
291 // input, this will just write the colon to indicate an empty scheme. Does not
297 const url_parse::Component& scheme,
301 const url_parse::Component& scheme,
428 // Returns the default port for the given canonical scheme, or PORT_UNSPECIFIED
429 // if the scheme is unknown.
430 GURL_API int DefaultPortForScheme(const char* scheme, int scheme_len);
591 : scheme(NUL
614 const CHAR* scheme; member in struct:url_canon::URLComponentSource
[all...]
H A Durl_canon_fileurl.cc125 // complicated scheme canonicalizer).
126 new_parsed->scheme.begin = output->length();
128 new_parsed->scheme.len = 4;
H A Durl_util_unittest.cc40 // Simple case where the scheme is found and matches.
48 // A case where the scheme is found and doesn't match.
53 // A case where there is no scheme.
59 // When there is an empty scheme, it should match the empty scheme.
65 // But when there is no scheme, it should fail.
69 // When there is a whitespace char in scheme, it should canonicalize the url
117 const char* scheme) {
125 replacements.SetScheme(scheme, url_parse::Component(0, strlen(scheme)));
116 CheckReplaceScheme(const char* base_url, const char* scheme) argument
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_proxy_api_helpers.cc132 net::ProxyServer::Scheme scheme = local
134 if (scheme == net::ProxyServer::SCHEME_INVALID)
135 scheme = default_scheme;
154 port = net::ProxyServer::GetDefaultPortForScheme(scheme);
156 *out = net::ProxyServer(scheme, net::HostPortPair(host, port));
170 // whether a setting was found for the scheme; proxy_server holds the
369 // If we add a new scheme some time, we need to also store a new dictionary
370 // representing this scheme in the code above.
388 switch (proxy.scheme()) {
/external/chromium/chrome/browser/ui/login/
H A Dlogin_prompt.cc51 // url-scheme://url-host[:url-port]/auth-realm
62 // Take scheme, host, and port from the url.
433 if (LowerCaseEqualsASCII(auth_info_->scheme, "basic")) {
434 dialog_form.scheme = PasswordForm::SCHEME_BASIC;
435 } else if (LowerCaseEqualsASCII(auth_info_->scheme, "digest")) {
436 dialog_form.scheme = PasswordForm::SCHEME_DIGEST;
438 dialog_form.scheme = PasswordForm::SCHEME_OTHER;
451 dialog_form.origin = GURL(request_url_.scheme() + "://" + host_and_port);
/external/openssh/
H A Dauth2-jpake.c215 * Select the system's default password hashing scheme and generate
220 fake_salt_and_scheme(Authctxt *authctxt, char **salt, char **scheme) argument
241 *scheme = xstrdup("md5");
244 *scheme = xstrdup("crypt");
252 *scheme = xstrdup("crypt-extended");
259 *scheme = xstrdup("bcrypt");
263 __func__, *scheme, authctxt->user, *salt);
267 * Fetch password hashing scheme, password salt and derive shared secret
344 debug("%s: unrecognised crypt scheme for user %s",
360 debug3("%s: scheme
[all...]
/external/apache-http/src/org/apache/http/impl/conn/
H A DProxySelectorRoutePlanner.java50 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
160 // a layered scheme implies a secure connection
215 // assume default scheme (http)
/external/webkit/Source/WebCore/page/
H A DNavigator.idl62 void registerProtocolHandler(in DOMString scheme, in DOMString url, in DOMString title)
H A DNavigator.h86 void registerProtocolHandler(const String& scheme, const String& url, const String& title, ExceptionCode&);
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSPasteboardExtras.mm121 NSString *scheme = [URLFromPasteboard scheme];
122 if ([scheme isEqualToString:@"http"] || [scheme isEqualToString:@"https"]) {
/external/apache-http/src/org/apache/http/conn/scheme/
H A DPlainSocketFactory.java2 * $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;
H A DScheme.java2 * $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".
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 */
68 /** Indicates whether this scheme allows for layered connections */
77 * Creates a new scheme.
78 * Whether the created scheme allows for layered connections
81 * @param name the scheme nam
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dregistration_screen.h81 const std::string& scheme);
/external/chromium/chrome/browser/content_settings/
H A Dcontent_settings_pattern.cc40 // TODO(markusheintz): Add scheme wildcard;
49 return ContentSettingsPattern(net::GetHostOrSpecFromURL(url), url.scheme());
/external/chromium/net/http/
H A Dhttp_auth_handler_basic.cc34 // Verify the challenge's auth-scheme.
35 if (!LowerCaseEqualsASCII(challenge->scheme(), "basic"))
/external/chromium/net/proxy/
H A Dproxy_config.h26 // (2) Manual (simple set of proxy servers per scheme, and bypass patterns)
58 // proxy-uri = [<proxy-scheme>"://"]<proxy-host>[":"<proxy-port>]
60 // If the proxy to use depends on the scheme of the URL, can instead specify
63 // <url-scheme>"="<proxy-uri>
98 // Used when there isn't a more specific per-scheme proxy server.
103 // or NULL if it is a scheme that we don't have a mapping
105 ProxyServer* MapUrlSchemeToProxyNoFallback(const std::string& scheme);
/external/libvpx/examples/includes/geshi/geshi/
H A Dscheme.php3 * scheme.php
/external/oauth/core/src/main/java/net/oauth/signature/
H A DOAuthSignatureMethod.java161 String scheme = uri.getScheme().toLowerCase();
163 boolean dropPort = (scheme.equals("http") && uri.getPort() == 80)
164 || (scheme.equals("https") && uri.getPort() == 443);
177 return scheme + "://" + authority + path;
/external/chromium/chrome/browser/sync/
H A Dprofile_sync_service_password_unittest.cc283 return lhs.scheme == rhs.scheme &&
353 new_form->scheme = PasswordForm::SCHEME_HTML;
386 new_form->scheme = PasswordForm::SCHEME_HTML;
403 new_form->scheme = PasswordForm::SCHEME_HTML;
439 new_form->scheme = PasswordForm::SCHEME_HTML;
458 new_form.scheme = PasswordForm::SCHEME_HTML;
499 new_form->scheme = PasswordForm::SCHEME_HTML;
518 new_form.scheme = PasswordForm::SCHEME_HTML;
562 new_form->scheme
[all...]
/external/chromium/net/url_request/
H A Durl_request_ftp_job.cc35 const std::string& scheme) {
36 DCHECK_EQ(scheme, "ftp");
199 auth_info->scheme = L"";
34 Factory(URLRequest* request, const std::string& scheme) argument
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DHeaderFactoryImpl.java208 * scheme value.
210 * @param scheme - the new string value of the scheme.
212 * unexpectedly while parsing the scheme value.
215 public AuthorizationHeader createAuthorizationHeader(String scheme) argument
217 if (scheme == null)
218 throw new NullPointerException("null arg scheme ");
220 auth.setScheme(scheme);
667 * scheme value.
669 * @param scheme
674 createProxyAuthenticateHeader(String scheme) argument
693 createProxyAuthorizationHeader(String scheme) argument
1110 createWWWAuthenticateHeader(String scheme) argument
[all...]

Completed in 439 milliseconds

1234567891011>>