HomeSort by relevance Sort by last modified time
    Searched full:scheme (Results 51 - 75 of 1046) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/http/tests/appcache/
different-scheme.html 1 <html manifest="resources/different-scheme.manifest">
  /external/webkit/WebKit/chromium/src/
WebSecurityPolicy.cpp 44 void WebSecurityPolicy::registerURLSchemeAsLocal(const WebString& scheme)
46 SecurityOrigin::registerURLSchemeAsLocal(scheme);
49 void WebSecurityPolicy::registerURLSchemeAsNoAccess(const WebString& scheme)
51 SecurityOrigin::registerURLSchemeAsNoAccess(scheme);
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/paddings/
ISO7816d4Padding.java 8 * A padder that adds the padding according to the scheme referenced in
9 * ISO 7814-4 - scheme 2 from ISO 9797-1. The first byte is 0x80, rest is 0x00
  /external/nist-sip/java/gov/nist/javax/sip/address/
TelURLImpl.java 52 this.scheme = "tel";
81 /** Returns the value of the "scheme" of this URI, for example "sip", "sips"
84 * @return the scheme paramter of the URI
87 return this.scheme;
100 /** This method determines if this is a URI with a scheme of "sip" or "sips".
102 * @return true if the scheme is "sip" or "sips", false otherwise.
158 return this.scheme + ":" + telephoneNumber.encode();
166 buffer.append(this.scheme).append(':');
  /packages/providers/MediaProvider/
AndroidManifest.xml 22 <data android:scheme="file" />
26 <data android:scheme="file" />
  /external/chromium/net/url_request/
url_request_job_manager.h 47 // scheme. Note: also returns true if there is a built-in handler for the
48 // given scheme.
49 bool SupportsScheme(const std::string& scheme) const;
51 // Register a protocol factory associated with the given scheme. The factory
55 const std::string& scheme, URLRequest::ProtocolFactory* factory);
url_request_data_job.cc 14 const std::string& scheme) {
  /packages/apps/Email/tests/src/com/android/email/mail/
StoreTests.java 38 assertNotNull("scheme null", info.mScheme);
56 assertNotNull("scheme null", info.mScheme);
74 assertNotNull("scheme null", info.mScheme);
96 final String storeUri = "bogus-scheme://user:password@server.com";
102 fail("MessagingException expected from bogus URI scheme");
  /frameworks/base/core/java/android/net/
Uri.java 100 <scheme>://<authority><path>?<query>
132 * Absolute URIs are hierarchical if the scheme-specific part starts with
139 * scheme-specific part of an opaque URI cannot start with a '/'.
147 * explicit scheme.
155 * explicit scheme.
164 * Gets the scheme of this URI. Example: "http"
166 * @return the scheme or null if this is a relative URI
171 * Gets the scheme-specific part of this URI, i.e. everything between the
172 * scheme separator ':' and the fragment separator '#'. If this is a
177 * @return the decoded scheme-specific-par
481 private volatile String scheme = NOT_CACHED; field in class:Uri.StringUri
782 private final String scheme; field in class:Uri.OpaqueUri
1088 private final String scheme; \/\/ can be null field in class:Uri.HierarchicalUri
1267 private String scheme; field in class:Uri.Builder
1284 public Builder scheme(String scheme) { method in class:Uri.Builder
    [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...]
  /external/chromium/googleurl/src/
url_canon_relative.cc 47 // don't have to worry about invalid scheme characters since we are comparing
48 // against the canonical scheme of the base.
113 // as relative, as this will just replace the path when the base scheme
123 // See if we've got a scheme, if not, we know this is a relative URL.
124 // BUT: Just because we have a scheme, doesn't make it absolute.
125 // "http:foo.html" is a relative URL with path "foo.html". If the scheme is
127 url_parse::Component scheme;
128 if (!url_parse::ExtractScheme(url, url_len, &scheme) || scheme.len == 0) {
129 // Don't allow relative URLs if the base scheme doesn't support it
    [all...]
url_canon_etc.cc 81 // 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) {
114 // Scheme is unspecified or empty, convert to empty by appending a colon.
120 // The output scheme starts from the current position.
124 int end = scheme.end();
125 for (int i = scheme.begin; i < end; i++) {
129 if (i == scheme.begin) {
130 // Need to do a special check for the first letter of the scheme
    [all...]
url_util.h 43 // Adds an application-defined scheme to the internal list of "standard" URL
47 // Locates the scheme in the given string and places it into |found_scheme|,
49 // Returns whether the given |compare| scheme matches the scheme found in the
73 // either the scheme is in the list of known standard schemes, or there is a
74 // "://" following the scheme.
76 const url_parse::Component& scheme);
78 const url_parse::Component& scheme);
82 // Parses the given spec according to the extracted scheme type. Normal users
  /frameworks/base/services/java/com/android/server/
IntentResolver.java 58 mSchemeToFilter, " Scheme: ");
83 mSchemeToFilter, " Scheme: ");
210 final String scheme = intent.getScheme(); local
214 resolvedType, scheme, listCut.get(i), resultList);
221 String scheme = intent.getScheme(); local
229 TAG, "Resolving type " + resolvedType + " scheme " + scheme
274 // the filters that match its scheme (we will further refine matches
276 if (scheme != null) {
277 schemeCut = mSchemeToFilter.get(scheme);
    [all...]
  /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/net/proxy/
proxy_config.h 56 // proxy-uri = [<proxy-scheme>://]<proxy-host>[:"<proxy-port>]
58 // If the proxy to use depends on the scheme of the URL, can instead specify
61 // <url-scheme>"="<proxy-uri>
72 // &socks_proxy}, or NULL if it is a scheme that we don't have a mapping
73 // for. If the scheme mapping is not present and socks_proxy is defined,
101 // &socks_proxy}, or NULL if it is a scheme that we don't have a mapping
103 ProxyServer* MapSchemeToProxy(const std::string& scheme);
proxy_retry_info.h 25 // The key is a proxy URI string [<scheme>"://"]<host>":"<port>.
  /external/nist-sip/java/gov/nist/javax/sip/header/
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/chromium/net/http/
http_auth_unittest.cc 89 EXPECT_STREQ(tests[i].challenge_scheme, handler->scheme().c_str());
156 EXPECT_EQ(std::string("Basic"), challenge.scheme());
172 EXPECT_EQ(std::string("Basic"), challenge.scheme());
188 EXPECT_EQ(std::string("Digest"), challenge.scheme());
204 EXPECT_EQ(std::string("Digest"), challenge.scheme());
229 EXPECT_EQ(std::string("NTLM"), challenge.scheme());
263 EXPECT_STREQ("basic", handler->scheme().c_str());
284 EXPECT_STREQ("digest", handler->scheme().c_str());
297 EXPECT_STREQ("ntlm", handler->scheme().c_str());
  /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...]
  /external/apache-http/src/org/apache/http/client/params/
AuthPolicy.java 41 * The NTLM scheme is a proprietary Microsoft Windows Authentication
48 * Digest authentication scheme as defined in RFC2617.
53 * Basic authentication scheme as defined in RFC2617 (considered inherently
  /packages/apps/Email/tests/src/com/android/email/
PreferencesUnitTests.java 73 // now make it a bogus Uri - bad scheme, good path, good UUID
78 // now make it a bogus Uri - good scheme, bad path, good UUID
83 // now make it a bogus Uri - good scheme/path, bad UUID
  /packages/apps/VoiceDialer/
AndroidManifest.xml 47 <data android:scheme="package" />
53 <data android:scheme="android_secret_code" android:host="8351" />
59 <data android:scheme="android_secret_code" android:host="8350" />
  /cts/tests/tests/net/src/android/net/cts/
UriTest.java 42 .scheme("http")
70 Uri u = Uri.parse("bob:lee").buildUpon().scheme("robert").build();
85 .scheme("foo")
239 .scheme("http")
248 .scheme("http")
475 .scheme("mailto")
618 private static void testHierarchical(String scheme, String authority,
634 if (scheme != null) {
635 sb.insert(0, scheme + ":");
647 uriString, ssp, uri, scheme, authority, path, query, fragment)
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
DefaultUserTokenHandler.java 78 AuthScheme scheme = authState.getAuthScheme(); local
79 if (scheme != null && scheme.isComplete() && scheme.isConnectionBased()) {

Completed in 478 milliseconds

1 23 4 5 6 7 8 91011>>