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

12 3 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/
HttpHost.java 41 * 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) {
87 if (scheme != null) {
88 this.schemeName = scheme.toLowerCase(Locale.ENGLISH)
    [all...]
  /packages/apps/Email/res/xml/
stores.xml 33 <store scheme="local" class="com.android.email.mail.store.LocalStore" />
34 <store scheme="pop3" class="com.android.email.mail.store.Pop3Store" />
35 <store scheme="imap" class="com.android.email.mail.store.ImapStore" />
36 <store scheme="eas" class="com.android.email.mail.store.ExchangeStore"
  /external/chromium/net/base/
auth.h 22 std::wstring scheme; // "Basic", "Digest", or whatever other method is used. member in class:net::AuthChallengeInfo
41 std::wstring scheme; // the authentication scheme. member in class:net::AuthData
  /frameworks/base/sax/tests/saxtests/res/raw/
youtube.xml 48 <category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat'
50 <category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat'
52 <category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat'
54 <category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat'
56 <category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat'
58 <category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat'
60 <category scheme='http://gdata.youtube.com/schemas/2007/categories.cat'
62 <category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat'
88 scheme='http://gdata.youtube.com/schemas/2007/categories.cat'>
113 <category scheme='http://gdata.youtube.com/schemas/2007/keywords.cat
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebsecurityorigin.cpp 43 void QWEBKIT_EXPORT qt_drt_setDomainRelaxationForbiddenForURLScheme(bool forbidden, const QString& scheme)
45 SecurityOrigin::setDomainRelaxationForbiddenForURLScheme(forbidden, scheme);
56 An origin consists of a host name, a scheme, and a port number. Web sites
67 web page, and use host(), scheme() and port() to identify the security origin.
97 Returns the scheme defining the security origin.
99 QString QWebSecurityOrigin::scheme() const function in class:QWebSecurityOrigin
221 Adds the given \a scheme to the list of schemes that are considered equivalent
222 to the \c file: scheme. They are not subject to cross domain restrictions.
224 void QWebSecurityOrigin::addLocalScheme(const QString& scheme)
226 SecurityOrigin::registerURLSchemeAsLocal(scheme);
252 const QString scheme = *i; local
    [all...]
qwebsecurityorigin.h 40 static void addLocalScheme(const QString& scheme);
41 static void removeLocalScheme(const QString& scheme);
46 QString scheme() const;
  /external/chromium/net/url_request/
url_request_filter.h 6 // rather than just the scheme. Example usage:
33 // scheme,hostname -> ProtocolFactory
44 void AddHostnameHandler(const std::string& scheme,
47 void RemoveHostnameHandler(const std::string& scheme,
68 const std::string& scheme);
  /frameworks/base/docs/html/guide/topics/manifest/
data-element.jd 12 android:<a href="#scheme">scheme</a>="<i>string</i>" /&gt;</pre></dd>
24 <p style="margin-left: 2em">{@code scheme://host:port/path} <i>or</i>
29 If a <code><a href="{@docRoot}guide/topics/manifest/data-element.html#scheme">scheme</a></code> is not specified for the
42 &lt;data android:scheme="something" android:host="project.example.com" /&gt;
49 &lt;data android:scheme="something" /&gt
73 unless a <code><a href="{@docRoot}guide/topics/manifest/data-element.html#scheme">scheme</a></code> attribute is also
126 <code><a href="#scheme">scheme</a></code> and <code><a href="#host">host</a></code>
    [all...]
  /external/chromium/net/http/
http_auth.cc 25 // A connection-based authentication scheme must continue to use the
33 if (LowerCaseEqualsASCII(props.scheme(), (*handler)->scheme().c_str()) &&
59 // Find the right auth handler for the challenge's scheme.
67 if (LowerCaseEqualsASCII(props.scheme(), "basic")) {
69 } else if (LowerCaseEqualsASCII(props.scheme(), "digest")) {
71 } else if (LowerCaseEqualsASCII(props.scheme(), "negotiate")) {
73 } else if (LowerCaseEqualsASCII(props.scheme(), "ntlm")) {
88 // The first space-separated token is the auth-scheme.
89 // NOTE: we are more permissive than RFC 2617 which says auth-scheme
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCESecretKeyFactory.java 110 private int scheme; field in class:JCESecretKeyFactory.PBEKeyFactory
119 int scheme,
127 this.scheme = scheme;
144 return new JCEPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, null);
149 param = Util.makePBEParameters(pbeSpec, scheme, digest, keySize, ivSize);
153 param = Util.makePBEMacParameters(pbeSpec, scheme, digest, keySize);
156 return new JCEPBEKey(this.algName, this.algOid, scheme, digest, keySize, ivSize, pbeSpec, param);
167 private int scheme; field in class:JCESecretKeyFactory.DESPBEKeyFactory
176 int scheme,
668 int scheme = PKCS5S2; local
    [all...]
  /frameworks/base/core/java/android/net/http/
HttpAuthHeader.java 40 * An authentication scheme. We currently support two different schemes:
81 * implementations compliant with this version of the Digest scheme.
114 * most one authentication-scheme (ensured by the caller).
179 * @return The authentication scheme requested. We currently
234 * @return True iff the authentication scheme requested by the
257 * Parses the header scheme name and then scheme parameters if
258 * the scheme is supported.
268 // if we have a supported scheme
277 * Parses the authentication scheme name. If we have a Diges
287 String scheme = header.substring(0, i).trim(); local
    [all...]
  /frameworks/base/core/java/android/text/util/
Linkify.java 44 * Alone with the pattern that is to be matched, a url scheme prefix is also
45 * required. Any pattern match that does not begin with the supplied scheme
46 * will have the scheme prepended to the matched text when the clickable url
48 * the scheme <code>http://</code>. If the pattern matches example.com, which
49 * does not have a url scheme prefix, the supplied scheme will be prepended to
298 * @param scheme Url scheme string (eg <code>http://</code> to be
300 * a scheme specified in the link text
302 public static final void addLinks(TextView text, Pattern pattern, String scheme) {
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/
UriTest.java 45 .scheme("http")
73 Uri u = Uri.parse("bob:lee").buildUpon().scheme("robert").build();
138 .scheme("http")
147 .scheme("http")
201 .scheme("foo")
350 .scheme("mailto")
402 private static void testHierarchical(String scheme, String authority,
418 if (scheme != null) {
419 sb.insert(0, scheme + ":");
431 uriString, ssp, uri, scheme, authority, path, query, fragment)
    [all...]
  /external/chromium/googleurl/src/
url_parse.cc 67 // Fills in all members of the Parsed structure except for the scheme.
70 // |after_scheme| is the character immediately following the scheme (after the
295 Component* scheme) {
306 *scheme = MakeRange(begin, i);
310 return false; // No colon found: no scheme
313 // The main parsing function for standard URLs. Standard URLs have a scheme,
324 if (DoExtractScheme(spec, spec_len, &parsed->scheme)) {
325 after_scheme = parsed->scheme.end() + 1; // Skip past the colon.
327 // Say there's no scheme when there is a colon. We could also say that
328 // everything is the scheme. Both would produce an invalid URL, but this wa
    [all...]
url_util_unittest.cc 39 // Simple case where the scheme is found and matches.
47 // A case where the scheme is found and doesn't match.
52 // A case where there is no scheme.
58 // When there is an empty scheme, it should match the empty scheme.
64 // But when there is no scheme, it should fail.
url_parse_file.cc 72 // the scheme given in |after_slashes|. This will initialize the host, path,
158 // Find the scheme.
164 // "/c:/foo". This is when there is no scheme, so we can allow pages to do
171 // Windows path, don't try to extract the scheme (for example, "c:\foo").
172 parsed->scheme.reset();
175 // Windows UNC path: don't try to extract the scheme, but keep the slashes.
176 parsed->scheme.reset();
181 if (ExtractScheme(&spec[begin], spec_len - begin, &parsed->scheme)) {
183 parsed->scheme.begin += begin;
184 after_scheme = parsed->scheme.end() + 1
    [all...]
  /external/webkit/WebCore/page/
SecurityOrigin.cpp 155 void SecurityOrigin::setDomainRelaxationForbiddenForURLScheme(bool forbidden, const String& scheme)
157 if (scheme.isEmpty())
161 schemesForbiddenFromDomainRelaxation().add(scheme);
163 schemesForbiddenFromDomainRelaxation().remove(scheme);
166 bool SecurityOrigin::isDomainRelaxationForbiddenForURLScheme(const String& scheme)
168 if (scheme.isEmpty())
171 return schemesForbiddenFromDomainRelaxation().contains(scheme);
185 // that the scheme, host, and port of the URLs match.
189 // that the scheme of the URLs match.
406 void SecurityOrigin::registerURLSchemeAsLocal(const String& scheme)
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
DefaultClientConnectionOperator.java 48 import org.apache.http.conn.scheme.LayeredSocketFactory;
49 import org.apache.http.conn.scheme.PlainSocketFactory;
50 import org.apache.http.conn.scheme.Scheme;
51 import org.apache.http.conn.scheme.SchemeRegistry;
52 import org.apache.http.conn.scheme.SocketFactory;
74 /** The scheme registry for looking up socket factories. */
79 * Creates a new client connection operator for the given scheme registry.
81 * @param schemes the scheme registry
86 ("Scheme registry must not be null.")
    [all...]
  /external/chromium/net/proxy/
proxy_config.cc 61 // Trim whitespace off the url scheme.
64 // Add it to the per-scheme mappings (if supported scheme).
68 ProxyServer::Scheme scheme = (entry == &socks_proxy) ? local
70 *entry = ProxyServer::FromURI(proxy_server_token, scheme);
84 return NULL; // No mapping for this scheme. Use direct.
88 const std::string& scheme) {
90 if (scheme == "http")
92 if (scheme == "https"
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Credentials.java 54 protected String scheme; field in class:Credentials
78 * get the scheme field.
82 return scheme;
86 * Set the scheme member
90 scheme = s;
102 String retval = scheme;
  /packages/apps/PackageInstaller/
AndroidManifest.xml 19 <data android:scheme="content" />
20 <data android:scheme="file" />
35 <data android:scheme="package" />
  /cts/tests/tests/content/src/android/content/cts/
IntentFilterTest.java     [all...]
  /build/target/board/generic_x86/
disk_layout.conf 4 scheme mbr
  /external/apache-http/src/org/apache/http/auth/
AuthScheme.java 39 * authentication scheme.
42 * An authentication scheme should be able to support the following
49 * <li>Provide the realm this authentication scheme is applicable to,
83 * Returns textual designation of the given authentication scheme.
85 * @return the name of the given authentication scheme
100 * realm is not applicable to the given authentication scheme, returns
108 * Tests if the authentication scheme is provides authorization on a per
111 * @return <tt>true</tt> if the scheme is connection based, <tt>false</tt>
112 * if the scheme is request based.
  /external/kernel-headers/original/linux/
err.h 10 * scheme where we can return either an error code or a dentry

Completed in 3754 milliseconds

12 3 4 5 6 7 8 91011>>