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

1 2 3 45 6 7 8 91011

  /external/webkit/WebCore/page/
Navigator.h 79 void registerProtocolHandler(const String& scheme, const String& url, const String& title, ExceptionCode& ec);
Navigator.idl 61 void registerProtocolHandler(in DOMString scheme, in DOMString url, in DOMString title)
  /packages/apps/Contacts/src/com/android/contacts/ui/
ShowOrCreateActivity.java 97 // Unpack scheme and target data from intent
98 String scheme = null; local
101 scheme = data.getScheme();
122 if (Constants.SCHEME_MAILTO.equals(scheme)) {
128 } else if (Constants.SCHEME_TEL.equals(scheme)) {
  /external/chromium/googleurl/src/
gurl_unittest.cc 44 // when the scheme is unknown.
77 EXPECT_EQ("http", url.scheme());
93 EXPECT_EQ("", url.scheme());
111 EXPECT_EQ("http", url2.scheme());
126 EXPECT_EQ("", invalid2.scheme());
143 EXPECT_EQ("http", url.scheme());
232 // canonicalizer gets called based on the scheme of the input.
235 const char* scheme; member in struct:ReplaceCase
257 SetupReplacement(&GURL::Replacements::SetScheme, &repl, cur.scheme);
url_canon.h 286 // Scheme: Appends the scheme and colon to the URL. The output component will
289 // Canonical URLs always have a scheme. If the scheme is not present in the
290 // input, this will just write the colon to indicate an empty scheme. Does not
296 const url_parse::Component& scheme,
300 const url_parse::Component& scheme,
427 // Returns the default port for the given canonical scheme, or PORT_UNSPECIFIED
428 // if the scheme is unknown.
429 int DefaultPortForScheme(const char* scheme, int scheme_len)
613 const CHAR* scheme; member in struct:url_canon::URLComponentSource
    [all...]
  /frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DefaultContainerService.java 127 String scheme = fileUri.getScheme();
128 if (scheme != null && !scheme.equals("file")) {
336 String scheme = pPackageURI.getScheme(); local
337 if (scheme == null || scheme.equals("file")) {
346 } else if (scheme.equals("content")) {
  /external/bluetooth/glib/gio/
gdummyfile.c 43 char *scheme; member in struct:__anon2006
236 if (safe_strcmp (a->scheme, b->scheme) != 0)
394 return g_ascii_strcasecmp (uri_scheme, dummy->decoded_uri->scheme) == 0;
404 return g_strdup (dummy->decoded_uri->scheme);
505 g_free (decoded->scheme);
534 * URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ]
539 /* Decode scheme:
540 scheme = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." )
562 decoded->scheme = g_malloc (p - uri)
    [all...]
  /frameworks/base/core/java/android/content/
IntentFilter.java 42 * match against actions, categories, and data (either via its type, scheme,
63 * itself divided into three attributes: type, scheme, authority, and path.
65 * specified must match the contents of the Intent. If you specify a scheme
68 * that is supplied by their content provider. Specifying a type with no scheme
80 * <strong>data scheme+authority+path</strong> if specified) must match.
94 * <p><strong>Data Scheme</strong> matches if any of the given values match the
95 * Intent data's scheme.
96 * The Intent scheme is determined by calling {@link Intent#getData}
98 * <em>Note that scheme matching here is <b>case sensitive</b>, unlike
103 * the Intent's data authority <em>and</em> one of the data scheme's in the filte
    [all...]
  /cts/tests/tests/net/src/android/net/cts/
Uri_BuilderTest.java 45 method = "scheme",
152 .scheme("http")
167 .scheme("mailto")
  /external/apache-http/src/org/apache/http/impl/conn/
ProxySelectorRoutePlanner.java 50 import org.apache.http.conn.scheme.Scheme;
51 import org.apache.http.conn.scheme.SchemeRegistry;
68 /** The scheme registry. */
78 * @param schreg the scheme registry
145 final Scheme schm =
148 // a layered scheme implies a secure connection
203 // assume default scheme (http)
  /external/webkit/WebKit/mac/Misc/
WebNSPasteboardExtras.mm 125 NSString *scheme = [URLFromPasteboard scheme];
126 if ([scheme isEqualToString:@"http"] || [scheme isEqualToString:@"https"]) {
  /packages/apps/Email/src/com/android/email/mail/
Sender.java 42 throw new MessagingException("Sender.newInstance: Unknown scheme in " + uri);
80 String scheme = xml.getAttributeValue(null, "scheme"); local
81 if (uri.startsWith(scheme)) {
82 // found sender entry whose scheme is matched with uri.
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
PackageIconLoader.java 121 String scheme = uri.getScheme(); local
122 if (ContentResolver.SCHEME_ANDROID_RESOURCE.equals(scheme)) {
  /bootable/diskinstaller/libdiskconfig/
diskconfig.c 177 /* find the partition scheme */
178 if (!(tmp = config_str(devroot, "scheme", NULL))) {
179 LOGE("partition scheme is required");
182 dinfo->scheme = PART_SCHEME_MBR;
184 LOGE("'gpt' partition scheme not supported yet.");
187 LOGE("Unknown partition scheme specified: %s", tmp);
261 * though. If we use the pc-bios partitioning scheme, we must use extended
392 switch (dinfo->scheme) {
399 LOGE("Uknown partition scheme.");
463 printf("Scheme: ")
    [all...]
diskconfig.h 85 uint8_t scheme; member in struct:disk_info
  /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/net/proxy/
proxy_config_service_linux.h 150 ProxyServer::Scheme scheme,
152 // As above but with scheme set to HTTP, for convenience.
  /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/WebCore/html/
HTMLMetaElement.cpp 131 String HTMLMetaElement::scheme() const function in class:WebCore::HTMLMetaElement
  /system/core/include/diskconfig/
diskconfig.h 90 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 LOGE("partition scheme is required");
184 dinfo->scheme = PART_SCHEME_MBR;
186 LOGE("'gpt' partition scheme not supported yet.");
189 LOGE("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 LOGE("Uknown partition scheme.");
466 printf("Scheme: ")
    [all...]
  /external/chromium/net/http/
http_auth_sspi_win.cc 19 HttpAuthSSPI::HttpAuthSSPI(const std::string& scheme,
21 : scheme_(scheme),
53 // Verify the challenge's auth-scheme.
56 !LowerCaseEqualsASCII(challenge_tok.scheme(),
62 challenge_begin += scheme_.length(); // Skip over scheme name.
114 // Base64 encode data in output buffer and prepend the scheme.
  /external/chromium/net/url_request/
url_request.h 72 const std::string& scheme);
223 // Registers a new protocol handler for the given scheme. If the scheme is
228 // the scheme was first registered so that the caller can manually put it
231 // The scheme must be all-lowercase ASCII. See the ProtocolFactory
237 static ProtocolFactory* RegisterProtocolFactory(const std::string& scheme,
244 // Returns true if the scheme can be handled by URLRequest. False otherwise.
245 static bool IsHandledProtocol(const std::string& scheme);
url_request_new_ftp_job.cc 33 const std::string& scheme) {
34 DCHECK_EQ(scheme, "ftp");
88 auth_info->scheme = L"";

Completed in 394 milliseconds

1 2 3 45 6 7 8 91011