/third_party/cef/libcef/common/net/ |
D | scheme_registration.cc | 19 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()
|
D | scheme_registration.h | 17 void AddInternalSchemes(content::ContentClient::Schemes* schemes);
|
/third_party/glib/gio/tests/ |
D | vfs.c | 59 const gchar * const *schemes; in test_register_scheme() local 66 schemes = g_vfs_get_supported_uri_schemes (vfs); in test_register_scheme() 67 g_assert_false (g_strv_contains (schemes, "test")); in test_register_scheme() 77 schemes = g_vfs_get_supported_uri_schemes (vfs); in test_register_scheme() 78 g_assert_true (g_strv_contains (schemes, "test")); in test_register_scheme() 106 gchar **schemes; in test_local() local 115 schemes = (gchar **)g_vfs_get_supported_uri_schemes (vfs); in test_local() 117 g_assert (g_strv_length (schemes) > 0); in test_local() 118 g_assert_cmpstr (schemes[0], ==, "file"); in test_local()
|
/third_party/cef/libcef/common/ |
D | scheme_registrar_impl.cc | 69 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()
|
D | app_manager.cc | 78 content::ContentClient::Schemes* schemes) { in AddAdditionalSchemes() argument 85 schemeRegistrar.GetSchemes(schemes); in AddAdditionalSchemes() 88 scheme::AddInternalSchemes(schemes); in AddAdditionalSchemes()
|
D | scheme_registrar_impl.h | 26 void GetSchemes(content::ContentClient::Schemes* schemes);
|
/third_party/gstreamer/gstplugins_base/gst/gio/ |
D | gstgioelement.c | 94 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/ |
D | chrome_content_client_cef.cc | 13 void ChromeContentClientCef::AddAdditionalSchemes(Schemes* schemes) { in AddAdditionalSchemes() argument 14 ChromeContentClient::AddAdditionalSchemes(schemes); in AddAdditionalSchemes() 15 CefAppManager::Get()->AddAdditionalSchemes(schemes); in AddAdditionalSchemes()
|
D | chrome_content_client_cef.h | 17 void AddAdditionalSchemes(Schemes* schemes) override;
|
/third_party/cef/patch/patches/ |
D | services_network_2622.patch | 53 + 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/flutter/flutter/packages/flutter_tools/lib/src/ios/ |
D | xcodeproj.dart | 301 XcodeProjectInfo(this.targets, this.buildConfigurations, this.schemes); 306 final List<String> schemes = <String>[]; 319 collector = schemes; 324 if (schemes.isEmpty) 325 schemes.add('Runner'); 326 return XcodeProjectInfo(targets, buildConfigurations, schemes); 331 final List<String> schemes; 334 bool get definesCustomSchemes => !(schemes.contains('Runner') && schemes.length == 1); 370 if (schemes.contains(expectedScheme)) 372 return _uniqueMatch(schemes, (String candidate) { [all …]
|
/third_party/python/Lib/test/ |
D | test_sysconfig.py | 121 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/ |
D | NumberingSchemes.java | 40 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/ |
D | render_manager.cc | 235 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/cef/libcef/common/alloy/ |
D | alloy_content_client.cc | 106 void AlloyContentClient::AddAdditionalSchemes(Schemes* schemes) { in AddAdditionalSchemes() argument 107 CefAppManager::Get()->AddAdditionalSchemes(schemes); in AddAdditionalSchemes()
|
/third_party/curl/docs/ |
D | NEW-PROTOCOL.md | 59 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
|
/third_party/grpc/src/core/ext/filters/client_channel/resolver/sockaddr/ |
D | README.md | 1 Support for resolving ipv4:, ipv6:, unix: schemes
|
/third_party/grpc/doc/ |
D | naming.md | 25 Most gRPC implementations support the following URI schemes: 44 The following schemes are supported by the gRPC C-core implementation, 59 In the future, additional schemes such as `etcd` could be added.
|
/third_party/flutter/flutter/dev/integration_tests/flavors/ |
D | README.md | 3 Integration test of build flavors (Android product flavors, Xcode schemes).
|
/third_party/grpc/src/core/ext/filters/client_channel/resolver/ |
D | README.md | 3 Implementations of various name resolution schemes.
|
/third_party/python/Doc/library/ |
D | sysconfig.rst | 69 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/openssl/crypto/store/ |
D | store_lib.c | 45 char scheme_copy[256], *p, *schemes[2]; in OSSL_STORE_open() local 54 schemes[schemes_n++] = "file"; in OSSL_STORE_open() 69 schemes[schemes_n++] = scheme_copy; in OSSL_STORE_open() 77 if ((loader = ossl_store_get0_loader_int(schemes[i])) != NULL) in OSSL_STORE_open()
|
/third_party/alsa-utils/alsactl/ |
D | alsa-restore.service.in | 2 # Note that two different ALSA card state management schemes exist and they
|
/third_party/node/deps/npm/node_modules/uri-js/dist/esnext/schemes/ |
D | wss.js.map | 1 {"version":3,"file":"wss.js","sourceRoot":"","sources":["../../../src/schemes/wss.ts"],"names":[],"…
|
D | https.js.map | 1 {"version":3,"file":"https.js","sourceRoot":"","sources":["../../../src/schemes/https.ts"],"names":…
|