Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp338 StringRef KeyValue; in parseRewriteFunctionDescriptor() local
352 KeyValue = Key->getValue(KeyStorage); in parseRewriteFunctionDescriptor()
353 if (KeyValue.equals("source")) { in parseRewriteFunctionDescriptor()
361 } else if (KeyValue.equals("target")) { in parseRewriteFunctionDescriptor()
363 } else if (KeyValue.equals("transform")) { in parseRewriteFunctionDescriptor()
365 } else if (KeyValue.equals("naked")) { in parseRewriteFunctionDescriptor()
407 StringRef KeyValue; in parseRewriteGlobalVariableDescriptor() local
421 KeyValue = Key->getValue(KeyStorage); in parseRewriteGlobalVariableDescriptor()
422 if (KeyValue.equals("source")) { in parseRewriteGlobalVariableDescriptor()
430 } else if (KeyValue.equals("target")) { in parseRewriteGlobalVariableDescriptor()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DStringMap.h257 for (const auto &KeyValue : *this) {
258 auto FindInRHS = RHS.find(KeyValue.getKey());
263 if (!(KeyValue.getValue() == FindInRHS->getValue()))
275 bool insert(MapEntryTy *KeyValue) { in insert() argument
276 unsigned BucketNo = LookupBucketFor(KeyValue->getKey()); in insert()
283 Bucket = KeyValue; in insert()
368 void remove(MapEntryTy *KeyValue) { RemoveKey(KeyValue); } in remove() argument
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dtemplate1.C18 struct KeyValue { struct
24 Art<KeyValue> data; argument
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DEnvironment.h80 static std::string compose(const value_type &KeyValue) { in compose() argument
81 return (KeyValue.first() + "=" + KeyValue.second).str(); in compose()
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp232 std::vector<Init*> KeyValue; in buildRowInstrMap() local
241 KeyValue.push_back(CurInstrVal); in buildRowInstrMap()
250 RowInstrMap[KeyValue].push_back(CurInstr); in buildRowInstrMap()
304 std::vector<Init*> KeyValue; in getInstrForColumn() local
309 KeyValue.push_back(KeyInstrVal); in getInstrForColumn()
316 const std::vector<Record*> &RelatedInstrVec = RowInstrMap[KeyValue]; in getInstrForColumn()
337 for (Init *Value : KeyValue) { in getInstrForColumn()
/openbsd-src/gnu/llvm/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp362 StringRef KeyValue = KeyString->getValue(KeyStorage); in parse() local
370 if (KeyValue == "arguments") { in parse()
389 if (KeyValue == "directory") { in parse()
391 } else if (KeyValue == "command") { in parse()
394 } else if (KeyValue == "file") { in parse()
396 } else if (KeyValue == "output") { in parse()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
H A DCOFFLinkGraphBuilder.cpp347 for (auto &KeyValue : AlternateNames) in handleAlternateNames() local
348 if (DefinedSymbols.count(KeyValue.second) && in handleAlternateNames()
349 ExternalSymbols.count(KeyValue.first)) { in handleAlternateNames()
350 auto *Target = DefinedSymbols[KeyValue.second]; in handleAlternateNames()
351 auto *Alias = ExternalSymbols[KeyValue.first]; in handleAlternateNames()