HomeSort by relevance Sort by last modified time
    Searched refs:schemes (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/chromium_org/content/common/
url_schemes.cc 44 // Prevent future modification of the standard schemes list. This is to
60 int schemes = static_cast<int>(additional_savable_schemes.size()); local
61 // The array, and the copied schemes won't be freed, but will remain
63 char **savable_schemes = new char*[schemes + default_schemes_count + 1];
67 for (int i = 0; i < schemes; ++i) {
71 savable_schemes[default_schemes_count + schemes] = 0;
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStoreIntentsTest.java 71 final String[] schemes = new String[] { local
76 for (String scheme : schemes) {
88 final String[] schemes = new String[] { local
94 for (String scheme : schemes) {
106 final String[] schemes = new String[] { local
112 for (String scheme : schemes) {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowIntentFilter.java 18 List<String> schemes = new ArrayList<String>(); field in class:ShadowIntentFilter
62 schemes.add(scheme);
67 return schemes.get(index);
  /external/chromium_org/third_party/WebKit/Source/modules/navigatorcontentutils/
NavigatorContentUtils.cpp 46 static const char* const schemes[] = { local
67 for (size_t i = 0; i < WTF_ARRAY_LENGTH(schemes); ++i)
68 schemeWhitelist->add(schemes[i]);
136 exceptionState.throwSecurityError("The scheme '" + scheme + "' doesn't belong to the scheme whitelist. Please prefix non-whitelisted schemes with the string 'web+'.");
  /external/chromium_org/chrome/browser/extensions/api/permissions/
permissions_apitest.cc 19 int schemes = URLPattern::SCHEME_ALL; local
20 extent->AddPattern(URLPattern(schemes, pattern));
permissions_api_helpers_unittest.cc 23 int schemes = URLPattern::SCHEME_ALL; local
24 extent->AddPattern(URLPattern(schemes, pattern));
  /external/chromium_org/extensions/common/
url_pattern.h 105 // Gets the bitmask of valid schemes.
128 // pattern matches all valid schemes (as defined by the valid_schemes_
209 // Returns true if any of the |schemes| items matches our scheme.
210 bool MatchesAnyScheme(const std::vector<std::string>& schemes) const;
212 // Returns true if all of the |schemes| items matches our scheme.
213 bool MatchesAllSchemes(const std::vector<std::string>& schemes) const;
221 // equivalent literal schemes, otherwise returns the current scheme.
224 // A bitmask containing the schemes which are considered valid for this
url_pattern.cc 24 // TODO(aa): What about more obscure schemes like data: and javascript: ?
542 const std::vector<std::string>& schemes) const {
543 for (std::vector<std::string>::const_iterator i = schemes.begin();
544 i != schemes.end(); ++i) {
553 const std::vector<std::string>& schemes) const {
554 for (std::vector<std::string>::const_iterator i = schemes.begin();
555 i != schemes.end(); ++i) {
manifest_test.cc 193 int schemes = URLPattern::SCHEME_ALL; local
194 extent->AddPattern(URLPattern(schemes, pattern));
url_pattern_set_unittest.cc 18 int schemes = URLPattern::SCHEME_ALL; local
19 set->AddPattern(URLPattern(schemes, pattern));
  /external/chromium_org/third_party/WebKit/Source/platform/weborigin/
SchemeRegistry.cpp 92 DEFINE_STATIC_LOCAL(HashSet<String>, schemes, ());
93 return schemes;
159 DEFINE_STATIC_LOCAL(URLSchemesMap, schemes, ());
160 return schemes;
  /external/apache-http/src/org/apache/http/impl/conn/
DefaultClientConnectionOperator.java 87 * @param schemes the scheme registry
89 public DefaultClientConnectionOperator(SchemeRegistry schemes) {
90 if (schemes == null) {
94 schemeRegistry = schemes;
  /external/chromium_org/chrome/browser/extensions/
user_script_loader_unittest.cc 30 int schemes = URLPattern::SCHEME_ALL; local
31 extent->AddPattern(URLPattern(schemes, pattern));
convert_user_script_unittest.cc 26 int schemes = URLPattern::SCHEME_ALL; local
27 extent->AddPattern(URLPattern(schemes, pattern));
permissions_updater_unittest.cc 170 int schemes = URLPattern::SCHEME_ALL; local
171 extent->AddPattern(URLPattern(schemes, pattern));
  /external/chromium_org/chrome/browser/profiles/
off_the_record_profile_io_data.cc 314 const char* const schemes[] = { local
318 extensions_cookie_store->SetCookieableSchemes(schemes, arraysize(schemes));
profile_impl_io_data.cc 626 const char* const schemes[] = { local
631 schemes, arraysize(schemes));
    [all...]
  /external/chromium_org/content/browser/webui/
url_data_manager_backend.cc 61 const std::vector<std::string>& schemes) {
62 return std::find(schemes.begin(), schemes.end(), scheme) != schemes.end();
  /external/chromium_org/components/history/core/browser/
url_database.cc 309 const char* schemes[] = { local
315 for (size_t i = 0; i < arraysize(schemes); ++i) {
316 std::string scheme_and_host(schemes[i]);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sysconfig.py 418 """Returns a tuple containing the schemes names."""
419 schemes = _INSTALL_SCHEMES.keys()
420 schemes.sort()
421 return tuple(schemes)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sysconfig.py 418 """Returns a tuple containing the schemes names."""
419 schemes = _INSTALL_SCHEMES.keys()
420 schemes.sort()
421 return tuple(schemes)
  /frameworks/base/core/java/android/text/util/
Linkify.java 429 Spannable s, Pattern pattern, String[] schemes,
439 String url = makeUrl(m.group(0), schemes, m, transformFilter);
  /cts/tests/tests/content/src/android/content/cts/
IntentFilterTest.java     [all...]
  /external/chromium_org/chrome/browser/resources/local_ntp/
most_visited_util.js 143 // working (those with schemes different from http and https). Therefore,
144 // navigateContentWindow is being used in order to get all schemes working.
  /frameworks/base/core/java/android/content/
IntentFilter.java 70 * you must also specify one or more schemes that it is associated with.
72 * one or more schemes it is associated with.
108 * formal RFC schemes!</em> You should thus always use lower case letters
109 * for your schemes.
112 * the Intent's data scheme specific part <em>and</em> one of the data schemes in the filter
119 * the Intent's data authority <em>and</em> one of the data schemes in the filter
594 * Add a new Intent data scheme to match against. If any schemes are
596 * one of these schemes <em>or</em> a matching data type. If no schemes
600 * case-sensitive, unlike formal RFC schemes. As a result
1080 final ArrayList<String> schemes = mDataSchemes; local
    [all...]

Completed in 968 milliseconds

1 2 3