Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp336 StringRef KeyValue; in parseRewriteFunctionDescriptor() local
350 KeyValue = Key->getValue(KeyStorage); in parseRewriteFunctionDescriptor()
351 if (KeyValue.equals("source")) { in parseRewriteFunctionDescriptor()
359 } else if (KeyValue.equals("target")) { in parseRewriteFunctionDescriptor()
363 } else if (KeyValue.equals("naked")) { in parseRewriteFunctionDescriptor()
405 StringRef KeyValue; in parseRewriteGlobalVariableDescriptor() local
419 KeyValue = Key->getValue(KeyStorage); in parseRewriteGlobalVariableDescriptor()
420 if (KeyValue.equals("source")) { in parseRewriteGlobalVariableDescriptor()
468 StringRef KeyValue; in parseRewriteGlobalAliasDescriptor() local
482 KeyValue = Key->getValue(KeyStorage); in parseRewriteGlobalAliasDescriptor()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMap.h269 for (const auto &KeyValue : *this) {
270 auto FindInRHS = RHS.find(KeyValue.getKey());
275 if (!(KeyValue.getValue() == FindInRHS->getValue()))
287 bool insert(MapEntryTy *KeyValue) { in insert() argument
288 unsigned BucketNo = LookupBucketFor(KeyValue->getKey()); in insert()
295 Bucket = KeyValue; in insert()
380 void remove(MapEntryTy *KeyValue) { RemoveKey(KeyValue); } in remove() argument
/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp233 std::vector<Init*> KeyValue; in buildRowInstrMap() local
242 KeyValue.push_back(CurInstrVal); in buildRowInstrMap()
251 RowInstrMap[KeyValue].push_back(CurInstr); in buildRowInstrMap()
305 std::vector<Init*> KeyValue; in getInstrForColumn() local
310 KeyValue.push_back(KeyInstrVal); in getInstrForColumn()
317 const std::vector<Record*> &RelatedInstrVec = RowInstrMap[KeyValue]; in getInstrForColumn()
338 for (Init *Value : KeyValue) { in getInstrForColumn()
/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DCOFFLinkGraphBuilder.cpp357 for (auto &KeyValue : AlternateNames) in handleAlternateNames() local
358 if (DefinedSymbols.count(KeyValue.second) && in handleAlternateNames()
359 ExternalSymbols.count(KeyValue.first)) { in handleAlternateNames()
360 auto *Target = DefinedSymbols[KeyValue.second]; in handleAlternateNames()
361 auto *Alias = ExternalSymbols[KeyValue.first]; in handleAlternateNames()