Home
last modified time | relevance | path

Searched defs:Key (Results 1 – 25 of 1090) sorted by relevance

12345678910>>...44

/external/rust/crates/log/src/kv/
Dkey.rs11 fn to_key(&self) -> Key; in to_key()
18 fn to_key(&self) -> Key { in to_key()
23 impl<'k> ToKey for Key<'k> { implementation
24 fn to_key(&self) -> Key { in to_key()
30 fn to_key(&self) -> Key { in to_key()
37 pub struct Key<'k> { struct
41 impl<'k> Key<'k> { implementation
53 impl<'k> fmt::Debug for Key<'k> { implementation
59 impl<'k> fmt::Display for Key<'k> { implementation
65 impl<'k> hash::Hash for Key<'k> { implementation
[all …]
/external/skia/src/text/gpu/
DTextBlob.h58 struct Key { struct
81 bool operator==(const Key& other) const; argument
/external/skia/src/pdf/
DSkPDFGradientShader.h33 struct Key { struct
45 uint32_t operator()(const Key& k) const { return k.fHash; } in operator() argument
/external/pigweed/pw_kvs/
Dkey_test.cc33 TEST(Key, ConstructorEmpty) { in TEST() argument
41 TEST(Key, ConstructorString) { in TEST() argument
51 TEST(Key, ConstructorStringView) { in TEST() argument
60 TEST(Key, ConstructorNullTermString) { in TEST() argument
69 TEST(Key, ConstructorCharPtrLength) { in TEST() argument
78 TEST(Key, ConstructorCopy) { in TEST() argument
88 TEST(Key, Access) { in TEST() argument
96 TEST(Key, Iterator) { in TEST() argument
103 TEST(Key, Same) { in TEST() argument
109 TEST(Key, Different) { in TEST() argument
[all …]
/external/skia/src/core/
DSkResourceCache.h33 struct Key { struct
53 bool operator==(const Key& other) const { argument
77 typedef SkResourceCache::Key Key; typedef
/external/rust/beto-rust/nearby/crypto/crypto_provider_test/src/aes/
Dmod.rs26 pub fn aes_128_test_encrypt<A: AesEncryptCipher<Key = Aes128Key>>(_marker: marker::PhantomData<A>) { in aes_128_test_encrypt()
50 pub fn aes_128_test_decrypt<A: AesDecryptCipher<Key = Aes128Key>>(_marker: marker::PhantomData<A>) { in aes_128_test_decrypt()
74 pub fn aes_256_test_encrypt<A: AesEncryptCipher<Key = Aes256Key>>(_marker: marker::PhantomData<A>) { in aes_256_test_encrypt()
99 pub fn aes_256_test_decrypt<A: AesDecryptCipher<Key = Aes256Key>>(_marker: marker::PhantomData<A>) { in aes_256_test_decrypt()
140 fn aes_128_encrypt_test_cases<A: AesFactory<Key = Aes128Key>>( in aes_128_encrypt_test_cases()
162 fn aes_128_decrypt_test_cases<F: AesFactory<Key = Aes128Key>>( in aes_128_decrypt_test_cases()
184 fn aes_256_encrypt_test_cases<F: AesFactory<Key = Aes256Key>>( in aes_256_encrypt_test_cases()
206 fn aes_256_decrypt_test_cases<F: AesFactory<Key = Aes256Key>>( in aes_256_decrypt_test_cases()
Dctr.rs22 pub fn aes_128_ctr_test_encrypt<A: AesCtr<Key = Aes128Key>>(_marker: marker::PhantomData<A>) { in aes_128_ctr_test_encrypt()
51 pub fn aes_128_ctr_test_decrypt<A: AesCtr<Key = Aes128Key>>(_marker: marker::PhantomData<A>) { in aes_128_ctr_test_decrypt()
80 pub fn aes_256_ctr_test_encrypt<A: AesCtr<Key = Aes256Key>>(_marker: marker::PhantomData<A>) { in aes_256_ctr_test_encrypt()
110 pub fn aes_256_ctr_test_decrypt<A: AesCtr<Key = Aes256Key>>(_marker: marker::PhantomData<A>) { in aes_256_ctr_test_decrypt()
157 fn aes_128_ctr_test_cases<F: AesCtrFactory<Key = Aes128Key>>( in aes_128_ctr_test_cases()
180 fn aes_256_ctr_test_cases<F: AesCtrFactory<Key = Aes256Key>>( in aes_256_ctr_test_cases()
/external/cronet/net/ssl/
Dssl_client_session_cache.h42 struct NET_EXPORT Key { struct
47 Key& operator=(const Key& other); argument
48 Key& operator=(Key&& other); argument
55 NetworkAnonymizationKey network_anonymization_key; argument
74 bssl::UniquePtr<SSL_SESSION> Lookup(const Key& cache_key); argument
/external/rust/crates/toml_edit/src/
Dkey.rs30 pub struct Key { struct
37 impl Key { argument
169 fn try_parse_simple(s: &str) -> Result<Key, crate::TomlError> { in try_parse_simple()
176 fn try_parse_path(s: &str) -> Result<Vec<Key>, crate::TomlError> { in try_parse_path()
185 impl Clone for Key { implementation
197 impl std::ops::Deref for Key { implementation
205 impl std::hash::Hash for Key { implementation
211 impl Ord for Key { implementation
217 impl PartialOrd for Key { implementation
223 impl Eq for Key {} implementation
[all …]
/external/skia/src/gpu/ganesh/vk/
DGrVkSamplerYcbcrConversion.h27 struct Key { struct
29 Key(VkFormat vkFormat, uint64_t externalFormat, uint32_t conversionKey) { in Key() argument
36 uint32_t fConversionKey = 0; argument
39 bool operator==(const Key& that) const { argument
DGrVkSampler.h30 struct Key { struct
31 Key(uint32_t samplerKey, const GrVkSamplerYcbcrConversion::Key& ycbcrKey) { in Key() argument
35 GrVkSamplerYcbcrConversion::Key fYcbcrKey; argument
36 uint32_t fSamplerKey; argument
39 bool operator==(const Key& that) const { argument
/external/libchrome/mojo/public/cpp/bindings/
Dmap.h18 base::flat_map<Key, Value> MapToFlatMap(const std::map<Key, Value>& input) { in MapToFlatMap()
23 base::flat_map<Key, Value> MapToFlatMap(std::map<Key, Value>&& input) { in MapToFlatMap()
29 std::map<Key, Value> FlatMapToMap(const base::flat_map<Key, Value>& input) { in FlatMapToMap()
34 std::map<Key, Value> FlatMapToMap(base::flat_map<Key, Value>&& input) { in FlatMapToMap()
/external/libcxx/test/std/containers/associative/map/
Dcompare.pass.cpp23 struct Key { struct
24 template <typename T> Key(const T&) {} in Key() argument
25 bool operator< (const Key&) const { return false; } in operator <() argument
/external/libcxx/test/std/containers/unord/unord.map/
Dcompare.pass.cpp22 struct Key { struct
23 template <typename T> Key(const T&) {} in Key() function
24 bool operator== (const Key&) const { return true; } in operator ==() argument
/external/rust/crates/ring/src/aead/
Dpoly1305.rs22 pub(super) struct Key { struct
30 impl Key { argument
126 pub(super) fn sign(key: Key, input: &[u8]) -> Tag { in sign()
Dchacha.rs35 pub struct Key { struct
40 impl Key { argument
54 impl Key { impl
108 key: &Key, in encrypt_less_safe()
261 f: impl for<'k, 'i> Fn(&'k Key, Counter, &'i mut [u8], RangeFrom<usize>), in chacha20_test()
299 key: &Key, in chacha20_test_case_inner()
306 f: &impl for<'k, 'i> Fn(&'k Key, Counter, &'i mut [u8], RangeFrom<usize>), in chacha20_test_case_inner()
/external/cronet/third_party/libc++/src/test/std/containers/associative/map/
Dcompare.pass.cpp24 struct Key { struct
25 template <typename T> Key(const T&) {} in Key() argument
26 bool operator< (const Key&) const { return false; } in operator <() argument
/external/cronet/third_party/libc++/src/test/std/containers/unord/unord.map/
Dcompare.pass.cpp23 struct Key { struct
24 template <typename T> Key(const T&) {} in Key() argument
25 bool operator== (const Key&) const { return true; } in operator ==() argument
/external/bcc/examples/networking/http_filter/
Dhttp-parse-complete.c8 struct Key { struct
20 //map <Key, Leaf> argument
/external/sdv/vsomeip/third_party/boost/serialization/include/boost/serialization/
Dunordered_set.hpp39 inline void save( in save()
68 std::unordered_set<Key, HashFcn, EqualKey, Allocator>, in load()
87 inline void serialize( in serialize()
105 inline void save( in save()
134 std::unordered_multiset<Key, HashFcn, EqualKey, Allocator>, in load()
153 std::unordered_multiset<Key, HashFcn, EqualKey, Allocator> &t, in serialize()
Dboost_unordered_set.hpp41 const boost::unordered_set<Key, HashFcn, EqualKey, Allocator> &t, in save()
59 boost::unordered_set<Key, HashFcn, EqualKey, Allocator> &t, in load()
83 boost::unordered_set<Key, HashFcn, EqualKey, Allocator> &t, in serialize()
99 const boost::unordered_multiset<Key, HashFcn, EqualKey, Allocator> &t, in save()
117 boost::unordered_multiset<Key, HashFcn, EqualKey, Allocator> &t, in load()
141 boost::unordered_multiset<Key, HashFcn, EqualKey, Allocator> &t, in serialize()
Dunordered_map.hpp44 const std::unordered_map<Key, T, HashFcn, EqualKey, Allocator> &t, in save()
63 std::unordered_map<Key, T, HashFcn, EqualKey, Allocator> &t, in load()
88 std::unordered_map<Key, T, HashFcn, EqualKey, Allocator> &t, in serialize()
105 const std::unordered_multimap<Key, T, HashFcn, EqualKey, Allocator> &t, in save()
124 std::unordered_multimap<Key, T, HashFcn, EqualKey, Allocator> &t, in load()
149 std::unordered_multimap<Key, T, HashFcn, EqualKey, Allocator> &t, in serialize()
Dset.hpp69 const std::set<Key, Compare, Allocator> &t, in save()
80 std::set<Key, Compare, Allocator> &t, in load()
91 std::set<Key, Compare, Allocator> & t, in serialize()
101 const std::multiset<Key, Compare, Allocator> &t, in save()
113 std::multiset<Key, Compare, Allocator> &t, in load()
124 std::multiset<Key, Compare, Allocator> & t, in serialize()
/external/rust/crates/h2/src/proto/streams/
Dstream.rs376 fn next(stream: &Stream) -> Option<store::Key> { in next()
380 fn set_next(stream: &mut Stream, key: Option<store::Key>) { in set_next()
384 fn take_next(stream: &mut Stream) -> Option<store::Key> { in take_next()
398 fn next(stream: &Stream) -> Option<store::Key> { in next()
402 fn set_next(stream: &mut Stream, key: Option<store::Key>) { in set_next()
406 fn take_next(stream: &mut Stream) -> Option<store::Key> { in take_next()
425 fn next(stream: &Stream) -> Option<store::Key> { in next()
429 fn set_next(stream: &mut Stream, key: Option<store::Key>) { in set_next()
433 fn take_next(stream: &mut Stream) -> Option<store::Key> { in take_next()
447 fn next(stream: &Stream) -> Option<store::Key> { in next()
[all …]
/external/rust/crates/indexmap/src/
Dmutable_keys.rs20 type Key; typedef
27 ) -> Option<(usize, &mut Self::Key, &mut Self::Value)> in get_full_mut2()
29 Q: Hash + Equivalent<Self::Key>; in get_full_mut2()
40 F: FnMut(&mut Self::Key, &mut Self::Value) -> bool; in retain2()
56 type Key = K; typedef

12345678910>>...44