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

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebKit/mac/Misc/
WebNSPasteboardExtras.mm 121 NSString *scheme = [URLFromPasteboard scheme];
122 if ([scheme isEqualToString:@"http"] || [scheme isEqualToString:@"https"]) {
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBench.java 57 String scheme = uri.getScheme(); local
58 if ("iterations".equals(scheme)) {
  /external/apache-http/src/org/apache/http/conn/scheme/
PlainSocketFactory.java 2 * $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;
Scheme.java 2 * $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".
48 * Scheme https = new Scheme("https", new MySecureSocketFactory(), 443);
57 public final class Scheme {
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 */
    [all...]
  /external/chromium/chrome/browser/content_settings/
content_settings_pattern.cc 40 // TODO(markusheintz): Add scheme wildcard;
49 return ContentSettingsPattern(net::GetHostOrSpecFromURL(url), url.scheme());
  /external/chromium/net/http/
http_auth_handler_basic.cc 34 // Verify the challenge's auth-scheme.
35 if (!LowerCaseEqualsASCII(challenge->scheme(), "basic"))
  /external/chromium/net/proxy/
proxy_config.h 26 // (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/oauth/core/src/main/java/net/oauth/signature/
OAuthSignatureMethod.java 161 String scheme = uri.getScheme().toLowerCase(); local
163 boolean dropPort = (scheme.equals("http") && uri.getPort() == 80)
164 || (scheme.equals("https") && uri.getPort() == 443);
177 return scheme + "://" + authority + path;
  /external/webkit/Source/WebCore/page/
Navigator.h 86 void registerProtocolHandler(const String& scheme, const String& url, const String& title, ExceptionCode&);
  /frameworks/base/core/java/android/nfc/
NfcActivityManager.java 302 String scheme = uri.getScheme(); local
303 if (scheme == null || (!scheme.equalsIgnoreCase("file") &&
304 !scheme.equalsIgnoreCase("content"))) {
306 "either scheme file or scheme content");
  /system/core/include/diskconfig/
diskconfig.h 91 uint8_t scheme; member in struct:disk_info
  /system/core/libdiskconfig/
diskconfig.c 179 /* find the partition scheme */
180 if (!(tmp = config_str(devroot, "scheme", NULL))) {
181 ALOGE("partition scheme is required");
184 dinfo->scheme = PART_SCHEME_MBR;
186 ALOGE("'gpt' partition scheme not supported yet.");
189 ALOGE("Unknown partition scheme specified: %s", tmp);
263 * though. If we use the pc-bios partitioning scheme, we must use extended
395 switch (dinfo->scheme) {
402 ALOGE("Uknown partition scheme.");
466 printf("Scheme: ")
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete.h 235 // 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() const { return scheme_; function in class:AutocompleteInput
    [all...]
  /external/chromium/chrome/browser/sync/
profile_sync_service_password_unittest.cc 283 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 = PasswordForm::SCHEME_HTML
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
__init__.py 183 scheme, netloc, path, params, query, fragment = parts[:6]
188 return urlparse.urlunparse((scheme, netloc, path, params,
281 scheme, netloc, path, params, query, fragment = urlparse.urlparse(value)
284 if scheme == 'http' and netloc[-3:] == ':80':
286 elif scheme == 'https' and netloc[-4:] == ':443':
288 if scheme not in ('http', 'https'):
289 raise ValueError("Unsupported URL %s (%s)." % (value, scheme))
292 self.normalized_url = urlparse.urlunparse((scheme, netloc, path, None, None, None))
343 scheme = base_url.scheme
    [all...]
  /external/chromium/googleurl/src/
url_util_unittest.cc 40 // 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)));
    [all...]
  /external/chromium/net/url_request/
url_request.h 69 const std::string& scheme);
238 // Registers a new protocol handler for the given scheme. If the scheme is
243 // the scheme was first registered so that the caller can manually put it
246 // The scheme must be all-lowercase ASCII. See the ProtocolFactory
252 static ProtocolFactory* RegisterProtocolFactory(const std::string& scheme,
259 // Returns true if the scheme can be handled by URLRequest. False otherwise.
260 static bool IsHandledProtocol(const std::string& scheme);
url_request_ftp_job.cc 35 const std::string& scheme) {
36 DCHECK_EQ(scheme, "ftp");
199 auth_info->scheme = L"";
  /external/nist-sip/java/gov/nist/javax/sip/header/
HeaderFactoryImpl.java 208 * 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)
217 if (scheme == null)
218 throw new NullPointerException("null arg scheme ");
220 auth.setScheme(scheme);
667 * scheme value.
669 * @param scheme - the new string value of the scheme
    [all...]
  /frameworks/support/v4/java/android/support/v4/content/
LocalBroadcastManager.java 206 final String scheme = intent.getScheme(); local
212 TAG, "Resolving type " + type + " scheme " + scheme
231 int match = receiver.filter.match(action, type, scheme, data,
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMTestCase.java 102 public void assertURIEquals(String assertID, String scheme, String path,
146 if (scheme != null) {
147 assertEquals(assertID, scheme, actualScheme);
  /packages/apps/Browser/src/com/android/browser/
UrlHandler.java 307 String scheme = uri.getScheme(); local
308 if (("http".equals(scheme) || "https".equals(scheme)) &&
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 163 (scheme, authority, path, query, fragment) = parse_uri(uri)
169 (scheme, authority, path, query, fragment) = parse_uri(uri)
170 if not scheme or not authority:
173 scheme = scheme.lower()
179 scheme = scheme.lower()
180 defrag_uri = scheme + "://" + authority + request_uri
181 return scheme, authority, request_uri, defrag_uri
250 # Break off the scheme at the beginning of the lin
    [all...]
  /external/chromium/chrome/browser/chromeos/
proxy_cros_settings_provider.cc 284 net::ProxyServer::Scheme scheme) const {
291 port = net::ProxyServer::GetDefaultPortForScheme(scheme);
293 return net::ProxyServer(scheme, host_port_pair);
299 net::ProxyServer::Scheme scheme) const {
306 return net::ProxyServer(scheme, host_port_pair);
  /external/chromium/chrome/browser/sync/glue/
password_model_associator.cc 302 new_password->scheme =
303 static_cast<webkit_glue::PasswordForm::Scheme>(password.scheme());
330 if (password.scheme() == password_form.scheme &&
365 password.set_scheme(password_form.scheme);

Completed in 1700 milliseconds

1 2 3 4 5 6 7 891011>>