Home
last modified time | relevance | path

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

12345678910>>...31

/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> { argument
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/skqp/src/pdf/
DSkPDFGradientShader.h25 struct Key { struct
37 uint32_t operator()(const Key& k) const { return k.fHash; } in operator() argument
/external/skia/src/pdf/
DSkPDFGradientShader.h25 struct Key { struct
37 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
42 TEST(Key, ConstructorString) { in TEST() argument
52 TEST(Key, ConstructorStringView) { in TEST() argument
61 TEST(Key, ConstructorNullTermString) { in TEST() argument
70 TEST(Key, ConstructorCharPtrLength) { in TEST() argument
79 TEST(Key, ConstructorCopy) { in TEST() argument
89 TEST(Key, Access) { in TEST() argument
97 TEST(Key, Iterator) { in TEST() argument
104 TEST(Key, Same) { in TEST() argument
110 TEST(Key, Different) { in TEST() argument
[all …]
/external/skia/src/gpu/vk/
DGrVkSamplerYcbcrConversion.h24 struct Key { struct
25 Key() : fVkFormat(VK_FORMAT_UNDEFINED), fExternalFormat(0), fConversionKey(0) {} in Key() argument
26 Key(VkFormat vkFormat, uint64_t externalFormat, uint8_t conversionKey) { in Key() argument
35 uint8_t fConversionKey; argument
37 bool operator==(const Key& that) const { argument
DGrVkSampler.h27 struct Key { struct
28 Key(uint8_t samplerKey, const GrVkSamplerYcbcrConversion::Key& ycbcrKey) { in Key() function
35 uint8_t fSamplerKey; argument
36 GrVkSamplerYcbcrConversion::Key fYcbcrKey; argument
/external/llvm-project/clang/include/clang/Basic/
DTypeTraits.h22 #define TYPE_TRAIT_1(Spelling, Name, Key) UTT_##Name, argument
25 #define TYPE_TRAIT_1(Spelling, Name, Key) +1 argument
28 #define TYPE_TRAIT_2(Spelling, Name, Key) BTT_##Name, argument
31 #define TYPE_TRAIT_2(Spelling, Name, Key) +1 argument
34 #define TYPE_TRAIT_N(Spelling, Name, Key) TT_##Name, argument
37 #define TYPE_TRAIT_N(Spelling, Name, Key) +1 argument
43 #define ARRAY_TYPE_TRAIT(Spelling, Name, Key) ATT_##Name, argument
46 #define ARRAY_TYPE_TRAIT(Spelling, Name, Key) +1 argument
52 #define UNARY_EXPR_OR_TYPE_TRAIT(Spelling, Name, Key) UETT_##Name, argument
53 #define CXX11_UNARY_EXPR_OR_TYPE_TRAIT(Spelling, Name, Key) UETT_##Name, argument
[all …]
/external/skia/src/core/
DSkResourceCache.h31 struct Key { struct
51 bool operator==(const Key& other) const { argument
75 typedef SkResourceCache::Key Key; argument
/external/skqp/src/core/
DSkResourceCache.h31 struct Key { struct
51 bool operator==(const Key& other) const { argument
75 typedef SkResourceCache::Key Key; argument
/external/skqp/src/gpu/vk/
DGrVkSamplerYcbcrConversion.h24 struct Key { struct
25 Key() : fExternalFormat(0), fConversionKey(0) {} in Key() argument
26 Key(uint64_t externalFormat, uint8_t conversionKey) { in Key() argument
33 uint8_t fConversionKey; argument
35 bool operator==(const Key& that) const { argument
DGrVkSampler.h27 struct Key { struct
28 Key(uint16_t samplerKey, const GrVkSamplerYcbcrConversion::Key& ycbcrKey) { in Key() argument
35 uint16_t fSamplerKey; argument
36 GrVkSamplerYcbcrConversion::Key fYcbcrKey; argument
/external/llvm-project/clang/lib/Basic/
DTypeTraits.cpp19 #define TYPE_TRAIT_1(Spelling, Name, Key) #Name, argument
21 #define TYPE_TRAIT_2(Spelling, Name, Key) #Name, argument
23 #define TYPE_TRAIT_N(Spelling, Name, Key) #Name, argument
28 #define TYPE_TRAIT_1(Spelling, Name, Key) #Spelling, argument
30 #define TYPE_TRAIT_2(Spelling, Name, Key) #Spelling, argument
32 #define TYPE_TRAIT_N(Spelling, Name, Key) #Spelling, argument
37 #define ARRAY_TYPE_TRAIT(Spelling, Name, Key) #Name, argument
42 #define ARRAY_TYPE_TRAIT(Spelling, Name, Key) #Spelling, argument
47 #define UNARY_EXPR_OR_TYPE_TRAIT(Spelling, Name, Key) #Name, argument
48 #define CXX11_UNARY_EXPR_OR_TYPE_TRAIT(Spelling, Name, Key) #Name, argument
[all …]
/external/skia/src/gpu/text/
DGrTextBlob.h175 struct Key { struct
200 bool operator==(const Key& other) const; argument
/external/skqp/tools/gpu/
DMemoryCache.h37 struct Key { struct
39 Key(const SkData& key) : fKey(SkData::MakeWithCopy(key.data(), key.size())) {} in Key() argument
41 Key& operator=(const Key&) = default; argument
46 sk_sp<const SkData> fKey; argument
/external/pigweed/pw_kvs/public/pw_kvs/
Dkey.h34 constexpr Key() : str_{nullptr}, length_{0} {} in Key() function
36 constexpr Key(const char* str) in Key() function
39 constexpr Key(const char* str, size_t len) : str_{str}, length_{len} {} in Key() function
40 Key(const std::string& str) : str_{str.data()}, length_{str.length()} {} in Key() function
43 constexpr Key(const std::string_view& str) in Key() function
/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/unord/unord.map/
Dcompare.pass.cpp22 struct Key { struct
23 template <typename T> Key(const T&) {} in Key() argument
24 bool operator== (const Key&) const { return true; } in operator ==() argument
/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/llvm-project/libcxx/test/std/containers/unord/unord.map/
Dcompare.pass.cpp23 struct Key { struct
24 template <typename T> Key(const T&) {} in Key() function
25 bool operator== (const Key&) const { return true; } in operator ==() argument
/external/llvm-project/libcxx/test/std/containers/associative/map/
Dcompare.pass.cpp24 struct Key { struct
25 template <typename T> Key(const T&) {} in Key() function
26 bool operator< (const Key&) const { return false; } in operator <() argument
/external/rust/crates/ring/src/aead/
Dpoly1305.rs22 pub(super) struct Key { struct
29 impl Key { implementation
125 pub(super) fn sign(key: Key, input: &[u8]) -> Tag { in sign()
Dchacha20_poly1305_openssh.rs148 struct Key { struct
149 k_1: chacha::Key, argument
150 k_2: chacha::Key, argument
154 impl Key { impl
155 fn new(key_material: &[u8; KEY_LEN], cpu_features: cpu::Features) -> Key { in new()
186 fn verify(key: poly1305::Key, msg: &[u8], tag: &[u8; TAG_LEN]) -> Result<(), error::Unspecified> { in verify()
/external/bcc/examples/networking/http_filter/
Dhttp-parse-complete.c8 struct Key { struct
20 //map <Key, Leaf> argument
/external/skia/tools/gpu/
DMemoryCache.h54 struct Key { struct
56 Key(const SkData& key) : fKey(SkData::MakeWithCopy(key.data(), key.size())) {} in Key() function
58 Key& operator=(const Key&) = default; argument
63 sk_sp<const SkData> fKey; argument
/external/llvm-project/llvm/lib/IR/
DProfileSummary.cpp27 static Metadata *getKeyValMD(LLVMContext &Context, const char *Key, in getKeyValMD()
35 static Metadata *getKeyFPValMD(LLVMContext &Context, const char *Key, in getKeyFPValMD()
45 static Metadata *getKeyValMD(LLVMContext &Context, const char *Key, in getKeyValMD()
105 static ConstantAsMetadata *getValMD(MDTuple *MD, const char *Key) { in getValMD()
120 static bool getVal(MDTuple *MD, const char *Key, uint64_t &Val) { in getVal()
128 static bool getVal(MDTuple *MD, const char *Key, double &Val) { in getVal()
137 static bool isKeyValuePair(MDTuple *MD, const char *Key, const char *Val) { in isKeyValuePair()
182 static bool getOptionalVal(MDTuple *Tuple, unsigned &Idx, const char *Key, in getOptionalVal()

12345678910>>...31