Home
last modified time | relevance | path

Searched refs:schemes (Results 1 – 25 of 193) sorted by relevance

12345678

/third_party/cef/libcef/common/net/
Dscheme_registration.cc19 void AddInternalSchemes(content::ContentClient::Schemes* schemes) { in AddInternalSchemes() argument
43 schemes->standard_schemes.push_back(internal_schemes[i].scheme_name); in AddInternalSchemes()
45 schemes->local_schemes.push_back(internal_schemes[i].scheme_name); in AddInternalSchemes()
47 schemes->secure_schemes.push_back(internal_schemes[i].scheme_name); in AddInternalSchemes()
49 schemes->cors_enabled_schemes.push_back(internal_schemes[i].scheme_name); in AddInternalSchemes()
51 schemes->csp_bypassing_schemes.push_back(internal_schemes[i].scheme_name); in AddInternalSchemes()
57 static const char* schemes[] = { in IsInternalHandledScheme() local
74 for (size_t i = 0; i < sizeof(schemes) / sizeof(schemes[0]); ++i) { in IsInternalHandledScheme()
75 if (scheme == schemes[i]) in IsInternalHandledScheme()
Dscheme_registration.h17 void AddInternalSchemes(content::ContentClient::Schemes* schemes);
/third_party/cef/libcef/common/
Dscheme_registrar_impl.cc69 content::ContentClient::Schemes* schemes) { in GetSchemes() argument
70 AppendArray(schemes_.standard_schemes, &schemes->standard_schemes); in GetSchemes()
71 AppendArray(schemes_.local_schemes, &schemes->local_schemes); in GetSchemes()
72 AppendArray(schemes_.secure_schemes, &schemes->secure_schemes); in GetSchemes()
73 AppendArray(schemes_.cors_enabled_schemes, &schemes->cors_enabled_schemes); in GetSchemes()
74 AppendArray(schemes_.csp_bypassing_schemes, &schemes->csp_bypassing_schemes); in GetSchemes()
Dapp_manager.cc78 content::ContentClient::Schemes* schemes) { in AddAdditionalSchemes() argument
85 schemeRegistrar.GetSchemes(schemes); in AddAdditionalSchemes()
88 scheme::AddInternalSchemes(schemes); in AddAdditionalSchemes()
Dscheme_registrar_impl.h26 void GetSchemes(content::ContentClient::Schemes* schemes);
Dapp_manager.h46 void AddAdditionalSchemes(content::ContentClient::Schemes* schemes);
/third_party/gstreamer/gstplugins_base/gst/gio/
Dgstgioelement.c94 const gchar *const *schemes; in _internal_get_supported_protocols() local
99 schemes = g_vfs_get_supported_uri_schemes (g_vfs_get_default ()); in _internal_get_supported_protocols()
101 if (schemes != NULL) in _internal_get_supported_protocols()
102 num = g_strv_length ((gchar **) schemes); in _internal_get_supported_protocols()
120 if (strcmp (schemes[i], "http") == 0 || strcmp (schemes[i], "https") == 0 in _internal_get_supported_protocols()
121 || strcmp (schemes[i], "cdda") == 0) in _internal_get_supported_protocols()
124 our_schemes[j] = g_strdup (schemes[i]); in _internal_get_supported_protocols()
/third_party/cef/libcef/common/chrome/
Dchrome_content_client_cef.cc13 void ChromeContentClientCef::AddAdditionalSchemes(Schemes* schemes) { in AddAdditionalSchemes() argument
14 ChromeContentClient::AddAdditionalSchemes(schemes); in AddAdditionalSchemes()
15 CefAppManager::Get()->AddAdditionalSchemes(schemes); in AddAdditionalSchemes()
Dchrome_content_client_cef.h17 void AddAdditionalSchemes(Schemes* schemes) override;
/third_party/cef/patch/patches/
Dservices_network_2622.patch53 + const std::vector<std::string>& schemes,
64 + if (!schemes.empty()) {
65 + cookieable_schemes_.insert(cookieable_schemes_.begin(), schemes.begin(),
66 + schemes.end());
80 void SetCookieableSchemes(const std::vector<std::string>& schemes,
82 + void AddCookieableSchemes(const std::vector<std::string>& schemes,
95 + // Adds to the list of cookieable schemes. Does nothing if called after first
97 + virtual void AddCookieableSchemes(const std::vector<std::string>& schemes,
/third_party/node/lib/internal/modules/esm/
Dload.js132 const schemes = ['file', 'data', 'node'];
134 ArrayPrototypePush(schemes, 'https', 'http');
136 throw new ERR_UNSUPPORTED_ESM_URL_SCHEME(parsed, schemes);
/third_party/python/Lib/test/
Dtest_sysconfig.py121 schemes = _get_preferred_schemes()
122 self.assertIsInstance(schemes, dict)
123 self.assertEqual(set(schemes), expected_schemes)
127 schemes = _get_preferred_schemes()
128 self.assertIsInstance(schemes, dict)
129 self.assertEqual(set(schemes), expected_schemes)
135 self.assertIsInstance(schemes, dict)
136 self.assertEqual(set(schemes), expected_schemes)
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/
DNumberingSchemes.java40 public static NumberingSchemes from(List<NumberingScheme> schemes) { in from() argument
42 schemes.stream().collect(toImmutableMap(NumberingScheme::getCallingCode, identity())); in from()
/third_party/cef/libcef/renderer/
Drender_manager.cc235 const CefAppManager::SchemeInfoList* schemes = in WebKitInitialized() local
237 if (!schemes->empty()) { in WebKitInitialized()
240 CefAppManager::SchemeInfoList::const_iterator it = schemes->begin(); in WebKitInitialized()
241 for (; it != schemes->end(); ++it) { in WebKitInitialized()
/third_party/curl/docs/
DNEW-PROTOCOL.md59 URLs work on registered 'schemes'. There is a register of [all officially
61 schemes](https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml). If
DURL-SYNTAX.md53 3. Such a URL might use other schemes than you thought of or planned for.
82 schemes curl supports, the colon must be followed by two slashes according to
133 many different schemes. You can limit what schemes curl should accept.
135 curl supports the following schemes on URLs specified to transfer. They are
144 schemes:
/third_party/cef/libcef/common/alloy/
Dalloy_content_client.cc106 void AlloyContentClient::AddAdditionalSchemes(Schemes* schemes) { in AddAdditionalSchemes() argument
107 CefAppManager::Get()->AddAdditionalSchemes(schemes); in AddAdditionalSchemes()
Dalloy_content_client.h25 void AddAdditionalSchemes(Schemes* schemes) override;
/third_party/python/Doc/library/
Dsysconfig.rst69 the installation options. These schemes are stored in :mod:`sysconfig` under
76 Python currently supports six schemes:
108 Return a tuple containing all schemes currently supported in
137 Python implementers and redistributors may add their preferred schemes to
139 to return those scheme names, to e.g. provide different schemes for system
/third_party/python/Misc/NEWS.d/next/Library/
D2022-11-12-15-45-51.gh-issue-99418.FxfAXS.rst1 Fix bug in :func:`urllib.parse.urlparse` that causes URL schemes that begin
/third_party/alsa-utils/alsactl/
Dalsa-restore.service.in2 # Note that two different ALSA card state management schemes exist and they
Dalsa-state.service.in2 # Note that two different ALSA card state management schemes exist and they
/third_party/icu/docs/userguide/icu/
Dunicode.md79 Various encoding schemes enable large character sets with thousands or tens of
84 Various character sets and encoding schemes have been developed independently,
134 schemes. With the inclusion of more characters, and following implementation
136 million characters. Several other encoding schemes were added. This introduced
147 and encoding schemes:
193 storage and protocols, some of these encoding forms have encoding schemes that
220 For input/output, character encoding schemes define a byte serialization of
225 (least significant byte first). The corresponding encoding schemes are called
231 IANA-registered charset names, i.e., to character encoding schemes or byte
428 character encoding schemes.
[all …]
/third_party/libwebsockets/READMEs/
DREADME.captive-portal-detection.md22 ## Detection schemes
35 Other schemes involve https connections going out and detecting that the cert
/third_party/cef/libcef/browser/
Dbrowser_context.cc427 static base::NoDestructor<CookieableSchemes> schemes( in GetGlobalCookieableSchemes() local
438 return *schemes; in GetGlobalCookieableSchemes()

12345678