HomeSort by relevance Sort by last modified time
    Searched refs:scheme (Results 176 - 200 of 271) sorted by null

1 2 3 4 5 6 78 91011

  /frameworks/base/core/java/android/content/
ContentResolver.java 193 * using the content:// scheme.
238 * @param uri The URI, using the content:// scheme, for the content to
303 String scheme = uri.getScheme(); local
304 if (SCHEME_ANDROID_RESOURCE.equals(scheme)) {
314 } else if (SCHEME_FILE.equals(scheme)) {
429 * <h5>The android.resource ({@link #SCHEME_ANDROID_RESOURCE}) Scheme</h5>
463 String scheme = uri.getScheme(); local
464 if (SCHEME_ANDROID_RESOURCE.equals(scheme)) {
474 } else if (SCHEME_FILE.equals(scheme)) {
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/
Pop3Store.java 109 String scheme = uri.getScheme(); local
110 if (scheme == null || !scheme.startsWith(STORE_SCHEME_POP3)) {
117 if (scheme.contains("+ssl")) {
120 } else if (scheme.contains("+tls")) {
123 boolean trustCertificates = scheme.contains(STORE_SECURITY_TRUST_CERTIFICATES);
    [all...]
ImapStore.java 162 String scheme = uri.getScheme(); local
163 if (scheme == null || !scheme.startsWith(STORE_SCHEME_IMAP)) {
170 if (scheme.contains("+ssl")) {
173 } else if (scheme.contains("+tls")) {
176 boolean trustCertificates = scheme.contains(STORE_SECURITY_TRUST_CERTIFICATES);
    [all...]
  /external/chromium/net/http/
http_network_transaction.cc 757 if (proxy_info_.proxy_server().scheme() == ProxyServer::SCHEME_SOCKS5)
    [all...]
http_network_transaction_unittest.cc 787 EXPECT_EQ(L"basic", response->auth_challenge->scheme);
901 EXPECT_EQ(L"basic", response->auth_challenge->scheme);
973 EXPECT_EQ(L"basic", response->auth_challenge->scheme);
    [all...]
http_auth_handler_digest.cc 221 if (!props.valid() || !LowerCaseEqualsASCII(props.scheme(), "digest"))
222 return false; // FAIL -- Couldn't match auth-scheme.
  /external/chromium/googleurl/src/
url_canon_unittest.cc 88 const char* scheme; member in struct:__anon2508::ReplaceCase
274 TEST(URLCanonTest, Scheme) {
328 // Test the case where the scheme is declared nonexistant, it should be
329 // converted into an empty scheme.
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
DefaultRequestDirector.java 84 import org.apache.http.conn.scheme.Scheme;
841 Scheme scheme = connManager.getSchemeRegistry(). local
1054 Scheme scheme = connManager.getSchemeRegistry().getScheme(host); local
    [all...]
  /external/chromium/net/proxy/
proxy_service.cc 347 const ProxyServer* entry = proxy_rules.MapUrlSchemeToProxy(url.scheme());
352 // scheme. Default to direct.
686 std::string url_domain = url.scheme();
707 // If no scheme is specified then it indicates that all schemes are
709 // the protocol scheme of the url passed in.
712 std::string bypass_url_domain_with_scheme = url.scheme();
  /frameworks/base/core/java/android/app/
DownloadManager.java 347 String scheme = uri.getScheme(); local
348 if (scheme == null || !scheme.equals("http")) {
    [all...]
SearchManager.java 737 .scheme(ContentResolver.SCHEME_CONTENT)
    [all...]
  /external/chromium/net/base/
net_util.cc 723 if (new_parsed->scheme.is_nonempty()) {
724 // Assume "view-source:real-scheme" as a scheme.
725 new_parsed->scheme.len += kViewSourceLengthPlus1;
727 new_parsed->scheme.begin = 0;
728 new_parsed->scheme.len = kViewSourceLengthPlus1 - 1;
    [all...]
  /external/webkit/WebKit/mac/Plugins/Hosted/
WebKitPluginClient.defs 82 scheme :data_t;
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupExchange.java 429 String scheme = (sslRequired)
444 scheme,
  /external/apache-http/src/org/apache/http/impl/conn/
SingleClientConnManager.java 45 import org.apache.http.conn.scheme.SchemeRegistry;
111 * @param schreg the scheme registry, or
119 ("Scheme registry must not be null.");
153 * @param schreg the scheme registry to use, or <code>null</code>
  /external/chromium/net/url_request/
url_request_file_job.cc 81 URLRequest* request, const std::string& scheme) {
url_request_test_job.cc 74 const std::string& scheme) {
  /external/webkit/WebKit/mac/WebView/
WebView.h 175 @abstract Adds the scheme to the list of schemes to be treated as local.
176 @param scheme The scheme to register
178 + (void)registerURLSchemeAsLocal:(NSString *)scheme;
  /external/webkit/WebKitTools/DumpRenderTree/
LayoutTestController.h 77 void setDomainRelaxationForbiddenForURLScheme(bool forbidden, JSStringRef scheme);
  /libcore/luni/src/main/java/org/apache/xml/serializer/utils/
URI.java 30 * the various components (scheme, host, port, userinfo, path, query
36 * of a scheme, followed by a colon (':'), followed by a scheme-specific
37 * part. For URIs that follow the "generic URI" syntax, the scheme-
47 * the entire scheme-specific part is treated as the "path" portion
52 * scheme-specific functionality (for example, it does not know a
53 * default port for a specific scheme). Rather, it only knows the
106 /** scheme can be composed of alphanumerics and these characters */
115 /** Stores the scheme (usually the protocol) for this URI.
169 * accordingly - setting the scheme, userinfo, host,port, path, quer
585 String scheme = null; local
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/utils/
URI.java 32 * the various components (scheme, host, port, userinfo, path, query
38 * of a scheme, followed by a colon (':'), followed by a scheme-specific
39 * part. For URIs that follow the "generic URI" syntax, the scheme-
49 * the entire scheme-specific part is treated as the "path" portion
54 * scheme-specific functionality (for example, it does not know a
55 * default port for a specific scheme). Rather, it only knows the
103 /** scheme can be composed of alphanumerics and these characters */
112 /** Stores the scheme (usually the protocol) for this URI.
166 * accordingly - setting the scheme, userinfo, host,port, path, quer
605 String scheme = null; local
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewCore.java 562 // Register a scheme to be treated as local scheme so that it can access
564 private native void nativeRegisterURLSchemeAsLocal(String scheme);
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebNSURLExtras.mm 260 // It comes after a "://" sequence, with scheme characters preceding.
268 // Check that all characters before the :// are valid scheme characters.
859 NSData *scheme = [self _web_schemeData];
861 if ([scheme _web_isCaseInsensitiveEqualToCString:"file"]) {
    [all...]
  /external/libxml2/
c14n.c 1076 if (xmlStrlen((const xmlChar *) uri->scheme) == 0) {
1077 xmlC14NErrRelativeNamespace(uri->scheme);
1081 if ((xmlStrcasecmp((const xmlChar *) uri->scheme, BAD_CAST "urn") != 0)
1082 && (xmlStrcasecmp((const xmlChar *) uri->scheme, BAD_CAST "dav") !=0)
1084 xmlC14NErrRelativeNamespace(uri->scheme);
    [all...]
nanoftp.c 325 if ((uri->scheme == NULL) || (uri->server == NULL)) {
330 ctxt->protocol = xmlMemStrdup(uri->scheme);
386 if ((uri->scheme == NULL) || (uri->server == NULL)) {
390 if ((strcmp(ctxt->protocol, uri->scheme)) ||
446 if ((uri == NULL) || (uri->scheme == NULL) ||
447 (strcmp(uri->scheme, "ftp")) || (uri->server == NULL)) {
1165 * If you need support for other Proxy authentication scheme
    [all...]

Completed in 378 milliseconds

1 2 3 4 5 6 78 91011