/third_party/icu/docs/userguide/icu4j/ |
D | locale-service-provider.md | 3 title: ICU4J Locale Service Provider 12 # ICU4J Locale Service Provider 42 ICU4J Locale Service Provider is a component consists of classes implementing 56 ICU4J Locale Service Provider is designed to work as installed extensions in a 61 ## Using ICU4J Locale Service Provider 71 *JAVA_HOME* and you put ICU4J Locale Service Provider files in *ICU_SPI_DIR*, the 72 ICU4J Locale Service Provider is enabled by the following command: 84 Once the ICU4J Locale Service Provider is installed properly, factory methods in 89 from ICU4J Locale Service Provider and prints out the current date localized for 97 * `2008 Junie 19` \[With ICU4J Locale Service Provider enabled\] [all …]
|
/third_party/openssl/doc/man7/ |
D | openssl-glossary.pod | 31 =item Base Provider 33 An OpenSSL Provider that contains encoders and decoders for OpenSSL keys. All 34 the algorithm implementations in the Base Provider are also available in the 35 Default Provider. 46 =item Default Provider 48 An OpenSSL Provider that contains the most commmon OpenSSL algorithm 50 the algorithm implementations in the Base Provider are also available in the 51 Default Provider. 88 =item FIPS Provider 90 An OpenSSL Provider that contains OpenSSL algorithm implementations that have [all …]
|
/third_party/node/deps/openssl/openssl/ |
D | README-PROVIDERS.md | 5 - [The Default Provider](#the-default-provider) 6 - [The Legacy Provider](#the-legacy-provider) 7 - [The FIPS Provider](#the-fips-provider) 8 - [The Base Provider](#the-base-provider) 9 - [The Null Provider](#the-null-provider) 25 The Default Provider 40 The Legacy Provider 54 The FIPS Provider 65 The Base Provider 74 The Null Provider
|
/third_party/openssl/ |
D | README-PROVIDERS.md | 5 - [The Default Provider](#the-default-provider) 6 - [The Legacy Provider](#the-legacy-provider) 7 - [The FIPS Provider](#the-fips-provider) 8 - [The Base Provider](#the-base-provider) 9 - [The Null Provider](#the-null-provider) 25 The Default Provider 40 The Legacy Provider 54 The FIPS Provider 65 The Base Provider 74 The Null Provider
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
D | provider.rs | 13 pub struct Provider; 23 impl Provider { impl 36 Ok(Provider::from_ptr(p)) in load() 58 Ok(Provider::from_ptr(p)) in try_load()
|
D | symm.rs | 960 let _provider = crate::provider::Provider::try_load(None, "legacy", true).unwrap(); in test_rc4() 1158 let _provider = crate::provider::Provider::try_load(None, "legacy", true).unwrap(); in test_bf_cbc() 1175 let _provider = crate::provider::Provider::try_load(None, "legacy", true).unwrap(); in test_bf_ecb() 1190 let _provider = crate::provider::Provider::try_load(None, "legacy", true).unwrap(); in test_bf_cfb64() 1205 let _provider = crate::provider::Provider::try_load(None, "legacy", true).unwrap(); in test_bf_ofb() 1218 let _provider = crate::provider::Provider::try_load(None, "legacy", true).unwrap(); in test_des_cbc() 1231 let _provider = crate::provider::Provider::try_load(None, "legacy", true).unwrap(); in test_des_ecb() 1540 let _provider = crate::provider::Provider::try_load(None, "legacy", true).unwrap(); in test_seed_cbc() 1554 let _provider = crate::provider::Provider::try_load(None, "legacy", true).unwrap(); in test_seed_cfb128() 1568 let _provider = crate::provider::Provider::try_load(None, "legacy", true).unwrap(); in test_seed_ecb() [all …]
|
D | pkcs12.rs | 300 let _provider = crate::provider::Provider::try_load(None, "legacy", true).unwrap(); in parse() 322 let _provider = crate::provider::Provider::try_load(None, "legacy", true).unwrap(); in parse_empty_chain()
|
D | cms.rs | 293 let _provider = crate::provider::Provider::try_load(None, "legacy", true).unwrap(); in cms_encrypt_decrypt() 434 let _provider = crate::provider::Provider::try_load(None, "legacy", true).unwrap(); in cms_sign_verify_error()
|
/third_party/node/deps/v8/gni/ |
D | v8.cmx | 26 "fuchsia.fonts.Provider", 35 "fuchsia.memorypressure.Provider", 38 "fuchsia.posix.socket.Provider",
|
/third_party/node/src/crypto/ |
D | crypto_random.h | 26 static constexpr AsyncWrap::ProviderType Provider = member 63 static constexpr AsyncWrap::ProviderType Provider = member 99 static constexpr AsyncWrap::ProviderType Provider = member
|
D | crypto_keygen.h | 73 KeyGenTraits::Provider, in KeyGenJob() 128 static const AsyncWrap::ProviderType Provider = member 210 static const AsyncWrap::ProviderType Provider = member
|
D | crypto_pbkdf2.h | 49 static constexpr AsyncWrap::ProviderType Provider = member
|
D | crypto_hkdf.h | 36 static constexpr AsyncWrap::ProviderType Provider = member
|
D | crypto_scrypt.h | 51 static constexpr AsyncWrap::ProviderType Provider = member
|
D | crypto_hmac.h | 67 static constexpr AsyncWrap::ProviderType Provider = member
|
D | crypto_hash.h | 62 static constexpr AsyncWrap::ProviderType Provider = member
|
/third_party/icu/icu4j/main/tests/localespi/ |
D | manifest.stub | 4 Specification-Title: ICU for Java Locale Service Provider Tests 7 Implementation-Title: ICU for Java Locale Service Provider Tests
|
/third_party/node/src/ |
D | node_http2.h | 454 class Provider; variable 509 class Http2Stream::Provider { 511 Provider(Http2Stream* stream, int options); 512 explicit Provider(int options); 513 virtual ~Provider(); 528 class Http2Stream::Provider::Stream : public Http2Stream::Provider {
|
D | node_http2.cc | 1879 Http2Stream::Provider::Stream prov(options); in SubmitRequest() 2189 Http2Stream::Provider::Stream prov(this, options); in SubmitResponse() 2239 Http2Stream::Provider::Stream prov(this, 0); in SubmitTrailers() 2447 Http2Stream::Provider::Provider(Http2Stream* stream, int options) { in Provider() function in node::http2::Http2Stream::Provider 2453 Http2Stream::Provider::Provider(int options) { in Provider() function in node::http2::Http2Stream::Provider 2458 Http2Stream::Provider::~Provider() { in ~Provider() 2464 Http2Stream::Provider::Stream::Stream(int options) in Stream() 2465 : Http2Stream::Provider(options) { in Stream() 2466 provider_.read_callback = Http2Stream::Provider::Stream::OnRead; in Stream() 2469 Http2Stream::Provider::Stream::Stream(Http2Stream* stream, int options) in Stream() [all …]
|
/third_party/openssl/test/ |
D | provider_internal_test.cnf.in | 16 greeting = Hello OpenSSL, greetings from Test Provider
|
/third_party/node/deps/v8/src/debug/ |
D | debug-wasm-objects.cc | 129 template <typename T, DebugProxyId id, typename Provider> 133 static Handle<JSObject> Create(Isolate* isolate, Handle<Provider> provider, in Create() 170 static Handle<Provider> GetProvider(Handle<JSObject> holder, in GetProvider() 172 return handle(Provider::cast(holder->GetEmbedderField(kProviderField)), in GetProvider() 177 static Handle<Provider> GetProvider(const PropertyCallbackInfo<V>& info) { in GetProvider() 231 template <typename T, DebugProxyId id, typename Provider = WasmInstanceObject> 232 struct NamedDebugProxy : IndexedDebugProxy<T, id, Provider> { 234 auto templ = IndexedDebugProxy<T, id, Provider>::CreateTemplate(isolate); in CreateTemplate()
|
/third_party/libphonenumber/resources/carrier/en/ |
D | 358.txt | 25 3584547|SMS Provider Corp
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | Local.cpp | 2654 BitPart(Value *P, unsigned BW) : Provider(P) { in BitPart() 2659 Value *Provider; member 2720 if (!A->Provider || A->Provider != B->Provider) in collectBitParts() 2723 Result = BitPart(A->Provider, BitWidth); in collectBitParts() 2799 Result = BitPart(Res->Provider, BitWidth); in collectBitParts() 2882 Value *Provider = Res->Provider; in recognizeBSwapOrBitReverseIdiom() local 2883 IntegerType *ProviderTy = cast<IntegerType>(Provider->getType()); in recognizeBSwapOrBitReverseIdiom() 2886 auto *Trunc = CastInst::Create(Instruction::Trunc, Provider, DemandedTy, in recognizeBSwapOrBitReverseIdiom() 2889 Provider = Trunc; in recognizeBSwapOrBitReverseIdiom() 2891 auto *CI = CallInst::Create(F, Provider, "rev", I); in recognizeBSwapOrBitReverseIdiom() [all …]
|
/third_party/icu/tools/multi/proj/provider/ |
D | readme.txt | 39 ICU Provider Build 40 Targetting Provider against ICU 49 (49, major 49)
|
/third_party/python/Doc/howto/ |
D | instrumentation.rst | 105 Provider: python 110 Provider: python 115 Provider: python 120 Provider: python
|