HomeSort by relevance Sort by last modified time
    Searched refs:SCHEME (Results 1 - 13 of 13) sorted by null

  /development/samples/NotePad/src/com/example/android/notepad/
NotePad.java 53 * The scheme part for this provider's URI
55 private static final String SCHEME = "content://";
84 public static final Uri CONTENT_URI = Uri.parse(SCHEME + AUTHORITY + PATH_NOTES);
91 = Uri.parse(SCHEME + AUTHORITY + PATH_NOTE_ID);
98 = Uri.parse(SCHEME + AUTHORITY + PATH_NOTE_ID + "/#");
104 = Uri.parse(SCHEME + AUTHORITY + PATH_LIVE_FOLDER);
  /development/samples/training/threadsample/src/com/example/android/threadsample/
DataProviderContract.java 16 // The URI scheme used for content URIs
17 public static final String SCHEME = "content";
25 public static final Uri CONTENT_URI = Uri.parse(SCHEME + "://" + AUTHORITY);
  /external/chromium/googleurl/src/
url_parse.h 98 // url_parse::Component scheme;
99 // if (!url_parse::ExtractScheme(url, url_len, &scheme))
102 // if (IsStandardScheme(url, scheme)) // Not provided by this component
104 // else if (IsFileURL(url, scheme)) // Not provided by this component
112 SCHEME,
129 // contain an entry for the four-character scheme, and it doesn't know about
150 // SCHEME: 0 0
162 // Scheme without the colon: "http://foo"/ would have a scheme of "http".
163 // The length will be -1 if no scheme is specified ("foo.com"), or 0 if ther
167 Component scheme; member in struct:url_parse::Parsed
    [all...]
url_parse_unittest.cc 77 const char* scheme; member in struct:__anon5334::URLParseCase
91 const char* scheme; member in struct:__anon5334::PathURLParseCase
99 const char* scheme; member in struct:__anon5334::MailtoURLParseCase
176 {"http://u:p@h:8/p?q#r", Parsed::SCHEME, true, 0},
177 {"http://u:p@h:8/p?q#r", Parsed::SCHEME, false, 0},
206 {"", Parsed::SCHEME, true, 0},
233 // Input Scheme Usrname Passwd Host Port Path Query Ref
338 EXPECT_TRUE(ComponentMatches(url, cases[i].scheme, parsed.scheme));
372 EXPECT_TRUE(ComponentMatches(url, path_cases[i].scheme, parsed.scheme))
    [all...]
url_parse.cc 247 Component* scheme) {
258 *scheme = MakeRange(begin, i);
262 return false; // No colon found: no scheme
265 // Fills in all members of the Parsed structure except for the scheme.
268 // |after_scheme| is the character immediately following the scheme (after the
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 no colon. We could also say that
328 // everything is the scheme. Both would produce an invalid URL, but this wa
    [all...]
  /external/chromium_org/url/third_party/mozilla/
url_parse.h 73 // url_parse::Component scheme;
74 // if (!url_parse::ExtractScheme(url, url_len, &scheme))
77 // if (IsStandardScheme(url, scheme)) // Not provided by this component
79 // else if (IsFileURL(url, scheme)) // Not provided by this component
87 SCHEME,
108 // contain an entry for the four-character scheme, and it doesn't know about
129 // SCHEME: 0 0
140 // Scheme without the colon: "http://foo"/ would have a scheme of "http".
141 // The length will be -1 if no scheme is specified ("foo.com"), or 0 if ther
145 Component scheme; member in struct:url_parse::Parsed
    [all...]
url_parse.cc 249 Component* scheme) {
260 *scheme = MakeRange(begin, i);
264 return false; // No colon found: no scheme
267 // Fills in all members of the Parsed structure except for the scheme.
270 // |after_scheme| is the character immediately following the scheme (after the
315 // The main parsing function for standard URLs. Standard URLs have a scheme,
326 if (DoExtractScheme(spec, spec_len, &parsed->scheme)) {
327 after_scheme = parsed->scheme.end() + 1; // Skip past the colon.
329 // Say there's no scheme when there is no colon. We could also say that
330 // everything is the scheme. Both would produce an invalid URL, but this wa
    [all...]
  /external/chromium_org/url/
url_parse_unittest.cc 55 const char* scheme; member in struct:url_parse::__anon17007::URLParseCase
69 const char* scheme; member in struct:url_parse::__anon17007::PathURLParseCase
77 const char* scheme; member in struct:url_parse::__anon17007::MailtoURLParseCase
165 {"http://u:p@h:8/p?q#r", Parsed::SCHEME, true, 0},
166 {"http://u:p@h:8/p?q#r", Parsed::SCHEME, false, 0},
195 {"", Parsed::SCHEME, true, 0},
222 // Input Scheme Usrname Passwd Host Port Path Query Ref
327 EXPECT_TRUE(ComponentMatches(url, cases[i].scheme, parsed.scheme));
361 EXPECT_TRUE(ComponentMatches(url, path_cases[i].scheme, parsed.scheme))
    [all...]
url_canon_relative.cc 23 // don't have to worry about invalid scheme characters since we are comparing
24 // against the canonical scheme of the base.
89 // as relative, as this will just replace the path when the base scheme
99 // See if we've got a scheme, if not, we know this is a relative URL.
100 // BUT: Just because we have a scheme, doesn't make it absolute.
101 // "http:foo.html" is a relative URL with path "foo.html". If the scheme is
105 const url_parse::Component& scheme = url_parsed.scheme; local
106 const bool scheme_is_empty = !scheme.is_nonempty();
108 // No scheme. See if is a bare fragment
    [all...]
  /frameworks/base/services/java/com/android/server/firewall/
StringFilter.java 291 public static final ValueProvider SCHEME = new ValueProvider("scheme") {
303 public static final ValueProvider SSP = new ValueProvider("scheme-specific-part") {
IntentFirewall.java 91 StringFilter.SCHEME,
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar 

Completed in 1289 milliseconds