Home
last modified time | relevance | path

Searched refs:KeyValue (Results 1 – 19 of 19) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSymbolRewriter.cpp337 StringRef KeyValue; in parseRewriteFunctionDescriptor() local
351 KeyValue = Key->getValue(KeyStorage); in parseRewriteFunctionDescriptor()
352 if (KeyValue.equals("source")) { in parseRewriteFunctionDescriptor()
360 } else if (KeyValue.equals("target")) { in parseRewriteFunctionDescriptor()
362 } else if (KeyValue.equals("transform")) { in parseRewriteFunctionDescriptor()
364 } else if (KeyValue.equals("naked")) { in parseRewriteFunctionDescriptor()
406 StringRef KeyValue; in parseRewriteGlobalVariableDescriptor() local
420 KeyValue = Key->getValue(KeyStorage); in parseRewriteGlobalVariableDescriptor()
421 if (KeyValue.equals("source")) { in parseRewriteGlobalVariableDescriptor()
429 } else if (KeyValue.equals("target")) { in parseRewriteGlobalVariableDescriptor()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceELFSection.cpp157 for (auto &KeyValue : LocalSymbols) { in updateIndices() local
158 GlobalString Name = KeyValue.first; in updateIndices()
159 ELFSection *Section = KeyValue.second.Section; in updateIndices()
160 Elf64_Sym &SymInfo = KeyValue.second.Sym; in updateIndices()
164 KeyValue.second.setNumber(SymNumber++); in updateIndices()
166 for (auto &KeyValue : GlobalSymbols) { in updateIndices() local
167 const std::string &Name = KeyValue.first.toString(); in updateIndices()
168 ELFSection *Section = KeyValue.second.Section; in updateIndices()
169 Elf64_Sym &SymInfo = KeyValue.second.Sym; in updateIndices()
173 KeyValue.second.setNumber(SymNumber++); in updateIndices()
DIceELFSection.h334 for (auto &KeyValue : Map) { in writeSymbolMap()
335 const Elf64_Sym &SymInfo = KeyValue.second.Sym; in writeSymbolMap()
344 for (auto &KeyValue : Map) { in writeSymbolMap()
345 const Elf64_Sym &SymInfo = KeyValue.second.Sym; in writeSymbolMap()
/third_party/flatbuffers/include/flatbuffers/
Dreflection_generated.h14 struct KeyValue;
226 struct KeyValue FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
235 bool KeyCompareLessThan(const KeyValue *o) const { in KeyCompareLessThan()
255 typedef KeyValue Table;
259 fbb_.AddOffset(KeyValue::VT_KEY, key); in add_key()
262 fbb_.AddOffset(KeyValue::VT_VALUE, value); in add_value()
268 flatbuffers::Offset<KeyValue> Finish() { in Finish()
270 auto o = flatbuffers::Offset<KeyValue>(end); in Finish()
271 fbb_.Required(o, KeyValue::VT_KEY); in Finish()
276 inline flatbuffers::Offset<KeyValue> CreateKeyValue(
[all …]
Didl.h272 flatbuffers::Vector<flatbuffers::Offset<reflection::KeyValue>>>
276 const Vector<Offset<reflection::KeyValue>> *attrs);
/third_party/flatbuffers/reflection/
Dreflection.fbs43 table KeyValue {
61 attributes:[KeyValue];
75 attributes:[KeyValue];
86 attributes:[KeyValue];
94 attributes:[KeyValue];
101 attributes:[KeyValue];
/third_party/typescript/tests/baselines/reference/
DdestructuringControlFlow.symbols127 type KeyValue = [string, string?];
128 >KeyValue : Symbol(KeyValue, Decl(destructuringControlFlow.ts, 33, 1))
130 let [key, value]: KeyValue = ["foo"];
133 >KeyValue : Symbol(KeyValue, Decl(destructuringControlFlow.ts, 33, 1))
DdestructuringControlFlow.types163 type KeyValue = [string, string?];
164 >KeyValue : KeyValue
166 let [key, value]: KeyValue = ["foo"];
DdestructuringControlFlow.js39 type KeyValue = [string, string?];
40 let [key, value]: KeyValue = ["foo"];
DdestructuringControlFlow.errors.txt51 type KeyValue = [string, string?];
52 let [key, value]: KeyValue = ["foo"];
/third_party/typescript/tests/cases/conformance/es6/destructuring/
DdestructuringControlFlow.ts40 type KeyValue = [string, string?]; alias
41 let [key, value]: KeyValue = ["foo"];
/third_party/protobuf/src/google/protobuf/
Dextension_set.cc193 : Arena::CreateArray<KeyValue>(arena_, flat_capacity_)} {} in ExtensionSet()
201 : Arena::CreateArray<KeyValue>(arena_, flat_capacity_)} {} in ExtensionSet()
215 void ExtensionSet::DeleteFlatMap(const ExtensionSet::KeyValue* flat, in DeleteFlatMap()
220 static_assert(std::is_trivially_destructible<KeyValue>::value, in DeleteFlatMap()
224 ::operator delete[](const_cast<ExtensionSet::KeyValue*>(flat), in DeleteFlatMap()
1144 for (const KeyValue* it = flat_begin(); it != flat_end(); ++it) { in IsInitialized()
1478 const KeyValue* end = flat_end(); in _InternalSerialize()
1479 for (const KeyValue* it = std::lower_bound( in _InternalSerialize()
1480 flat_begin(), end, start_field_number, KeyValue::FirstComparator()); in _InternalSerialize()
1802 const KeyValue* end = flat_end(); in FindOrNull()
[all …]
Dextension_set.h629 struct KeyValue { struct
634 bool operator()(const KeyValue& lhs, const KeyValue& rhs) const { in operator() argument
637 bool operator()(const KeyValue& lhs, int key) const { in operator()
640 bool operator()(int key, const KeyValue& rhs) const { in operator()
816 KeyValue* flat_begin() { in flat_begin()
820 const KeyValue* flat_begin() const { in flat_begin()
824 KeyValue* flat_end() { in flat_end()
828 const KeyValue* flat_end() const { in flat_end()
841 KeyValue* flat;
848 static void DeleteFlatMap(const KeyValue* flat, uint16 flat_capacity);
Dmap_field.h242 union KeyValue { union
243 KeyValue() {} in KeyValue() function
Dextension_set_heavy.cc407 size_t total_size = Size() * sizeof(KeyValue); in SpaceUsedExcludingSelfLong()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringMap.h348 bool insert(MapEntryTy *KeyValue) { in insert() argument
349 unsigned BucketNo = LookupBucketFor(KeyValue->getKey()); in insert()
356 Bucket = KeyValue; in insert()
414 void remove(MapEntryTy *KeyValue) { in remove() argument
415 RemoveKey(KeyValue); in remove()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DStringMap.h393 bool insert(MapEntryTy *KeyValue) { in insert() argument
394 unsigned BucketNo = LookupBucketFor(KeyValue->getKey()); in insert()
401 Bucket = KeyValue; in insert()
469 void remove(MapEntryTy *KeyValue) { in remove() argument
470 RemoveKey(KeyValue); in remove()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/
DGCOV.cpp773 std::pair<const GCOVFunction *, GCOVCoverage> KeyValue( in print() local
775 FuncCoverages.insert(KeyValue); in print()
/third_party/flatbuffers/src/
Didl_parser.cpp3804 flatbuffers::Vector<flatbuffers::Offset<reflection::KeyValue>>>
3807 std::vector<flatbuffers::Offset<reflection::KeyValue>> attrs; in SerializeAttributes()
3825 Parser &parser, const Vector<Offset<reflection::KeyValue>> *attrs) { in DeserializeAttributes()