Home
last modified time | relevance | path

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

12

/external/cronet/components/metrics/debug/
Dbrowser_proxy.ts16 export interface KeyValue { interface
67 fetchVariationsSummary(): Promise<KeyValue[]>;
72 fetchUmaSummary(): Promise<KeyValue[]>;
87 fetchVariationsSummary(): Promise<KeyValue[]> {
91 fetchUmaSummary(): Promise<KeyValue[]> {
Dapp.ts12 import {KeyValue, Log, LogData, MetricsInternalsBrowserProxy, MetricsInternalsBrowserProxyImpl} fro…
112 private updateSummaryTable_(tableBody: HTMLElement, summary: KeyValue[]):
136 const summary: KeyValue[] =
155 const summary: KeyValue[] = await this.browserProxy_.fetchUmaSummary();
/external/llvm/lib/Transforms/Utils/
DSymbolRewriter.cpp317 StringRef KeyValue; in parseRewriteFunctionDescriptor() local
331 KeyValue = Key->getValue(KeyStorage); in parseRewriteFunctionDescriptor()
332 if (KeyValue.equals("source")) { in parseRewriteFunctionDescriptor()
340 } else if (KeyValue.equals("target")) { in parseRewriteFunctionDescriptor()
342 } else if (KeyValue.equals("transform")) { in parseRewriteFunctionDescriptor()
344 } else if (KeyValue.equals("naked")) { in parseRewriteFunctionDescriptor()
384 StringRef KeyValue; in parseRewriteGlobalVariableDescriptor() local
398 KeyValue = Key->getValue(KeyStorage); in parseRewriteGlobalVariableDescriptor()
399 if (KeyValue.equals("source")) { in parseRewriteGlobalVariableDescriptor()
407 } else if (KeyValue.equals("target")) { in parseRewriteGlobalVariableDescriptor()
[all …]
/external/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 …]
/external/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()
/external/flatbuffers/include/flatbuffers/
Dreflection_generated.h21 struct KeyValue;
259 struct KeyValue FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
268 bool KeyCompareLessThan(const KeyValue *o) const { in KeyCompareLessThan()
288 typedef KeyValue Table;
292 fbb_.AddOffset(KeyValue::VT_KEY, key); in add_key()
295 fbb_.AddOffset(KeyValue::VT_VALUE, value); in add_value()
301 flatbuffers::Offset<KeyValue> Finish() { in Finish()
303 auto o = flatbuffers::Offset<KeyValue>(end); in Finish()
304 fbb_.Required(o, KeyValue::VT_KEY); in Finish()
309 inline flatbuffers::Offset<KeyValue> CreateKeyValue(
[all …]
/external/oss-fuzz/projects/xerces-c/
DxmlProtoConverter.cpp57 void ProtoConverter::visit(KeyValue const& _x) in visit()
59 if (!KeyValue::XmlNamespace_IsValid(_x.type())) in visit()
64 case KeyValue::ATTRIBUTES: in visit()
67 case KeyValue::BASE: in visit()
70 case KeyValue::CATALOG: in visit()
73 case KeyValue::ID: in visit()
76 case KeyValue::LANG: in visit()
79 case KeyValue::LINK: in visit()
82 case KeyValue::SPACE: in visit()
85 case KeyValue::SPECIAL: in visit()
[all …]
Dxml.proto220 message KeyValue { message
240 repeated KeyValue kv = 2;
275 repeated KeyValue kv = 4;
/external/flatbuffers/tests/
Dmonster_test.afb174 table (reflection.KeyValue):
179 string (reflection.KeyValue.value):
187 string (reflection.KeyValue.key):
218 table (reflection.KeyValue):
223 string (reflection.KeyValue.value):
228 string (reflection.KeyValue.key):
259 table (reflection.KeyValue):
264 string (reflection.KeyValue.value):
269 string (reflection.KeyValue.key):
278 table (reflection.KeyValue):
[all …]
/external/flatbuffers/reflection/
Dreflection.fbs48 table KeyValue {
66 attributes:[KeyValue];
82 attributes:[KeyValue];
95 attributes:[KeyValue];
105 attributes:[KeyValue];
112 attributes:[KeyValue];
/external/clang/lib/Tooling/
DJSONCompilationDatabase.cpp272 StringRef KeyValue = KeyString->getValue(KeyStorage); in parse() local
282 if (KeyValue == "arguments" && !SequenceString) { in parse()
285 } else if (KeyValue != "arguments" && !ValueString) { in parse()
289 if (KeyValue == "directory") { in parse()
291 } else if (KeyValue == "arguments") { in parse()
301 } else if (KeyValue == "command") { in parse()
304 } else if (KeyValue == "file") { in parse()
/external/llvm/utils/TableGen/
DCodeGenMapTable.cpp243 std::vector<Init*> KeyValue; in buildRowInstrMap() local
247 KeyValue.push_back(CurInstrVal); in buildRowInstrMap()
256 RowInstrMap[KeyValue].push_back(CurInstr); in buildRowInstrMap()
310 std::vector<Init*> KeyValue; in getInstrForColumn() local
315 KeyValue.push_back(KeyInstrVal); in getInstrForColumn()
322 const std::vector<Record*> &RelatedInstrVec = RowInstrMap[KeyValue]; in getInstrForColumn()
344 for (Init *Value : KeyValue) { in getInstrForColumn()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/failing/
DRecursiveIgnoreProperties1755Test.java24 public List<KeyValue> metadata;
27 static class KeyValue { class in RecursiveIgnoreProperties1755Test
/external/rust/crates/itertools/src/
Dduplicates_impl.rs144 type Container = KeyValue<K, V>;
147 KeyValue((self.0)(&v), v) in make()
160 pub struct KeyValue<K, V>(K, V); struct
161 impl<K, V> KeyXorValue<K, V> for KeyValue<K, V> { implementation
/external/flatbuffers/python/flatbuffers/reflection/
DKeyValue.py9 class KeyValue(object): class
15 x = KeyValue()
DRPCCall.py67 from reflection.KeyValue import KeyValue
68 obj = KeyValue()
DService.py70 from reflection.KeyValue import KeyValue
71 obj = KeyValue()
DEnum.py88 from reflection.KeyValue import KeyValue
89 obj = KeyValue()
DObject.py91 from reflection.KeyValue import KeyValue
92 obj = KeyValue()
/external/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()
/external/llvm/include/llvm/ADT/
DStringMap.h344 bool insert(MapEntryTy *KeyValue) { in insert() argument
345 unsigned BucketNo = LookupBucketFor(KeyValue->getKey()); in insert()
352 Bucket = KeyValue; in insert()
410 void remove(MapEntryTy *KeyValue) { in remove() argument
411 RemoveKey(KeyValue); in remove()
/external/protobuf/src/google/protobuf/
Dextension_set.cc193 : Arena::CreateArray<KeyValue>(arena_, flat_capacity_)} {} in ExtensionSet()
207 void ExtensionSet::DeleteFlatMap(const ExtensionSet::KeyValue* flat, in DeleteFlatMap()
211 static_assert(std::is_trivially_destructible<KeyValue>::value, in DeleteFlatMap()
215 internal::SizedArrayDelete(const_cast<KeyValue*>(flat), in DeleteFlatMap()
1224 for (const KeyValue* it = flat_begin(); it != flat_end(); ++it) { in Swap()
1266 const KeyValue* end = flat_end(); in Swap()
1267 for (const KeyValue* it = std::lower_bound( in Swap()
1268 flat_begin(), end, start_field_number, KeyValue::FirstComparator()); in Swap()
1594 KeyValue::FirstComparator()); in Swap()
1627 KeyValue* end = flat_end(); in Swap()
[all …]
/external/cronet/third_party/protobuf/src/google/protobuf/
Dextension_set.cc213 : Arena::CreateArray<KeyValue>(arena_, flat_capacity_)} {} in ExtensionSet()
227 void ExtensionSet::DeleteFlatMap(const ExtensionSet::KeyValue* flat, in DeleteFlatMap()
231 static_assert(std::is_trivially_destructible<KeyValue>::value, in DeleteFlatMap()
235 internal::SizedArrayDelete(const_cast<KeyValue*>(flat), in DeleteFlatMap()
1232 for (const KeyValue* it = flat_begin(); it != flat_end(); ++it) { in Swap()
1308 const KeyValue* end = flat_end(); in Swap()
1309 for (const KeyValue* it = std::lower_bound( in Swap()
1310 flat_begin(), end, start_field_number, KeyValue::FirstComparator()); in Swap()
1636 KeyValue::FirstComparator()); in Swap()
1669 KeyValue* end = flat_end(); in Swap()
[all …]
/external/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()

12