Home
last modified time | relevance | path

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

/src/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 == "source") { in parseRewriteFunctionDescriptor()
359 } else if (KeyValue == "target") { in parseRewriteFunctionDescriptor()
361 } else if (KeyValue == "transform") { in parseRewriteFunctionDescriptor()
363 } else if (KeyValue == "naked") { in parseRewriteFunctionDescriptor()
405 StringRef KeyValue; in parseRewriteGlobalVariableDescriptor() local
419 KeyValue = Key->getValue(KeyStorage); in parseRewriteGlobalVariableDescriptor()
420 if (KeyValue == "source") { in parseRewriteGlobalVariableDescriptor()
428 } else if (KeyValue == "target") { in parseRewriteGlobalVariableDescriptor()
[all …]
/src/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()
/src/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMap.h288 for (const auto &KeyValue : *this) {
289 auto FindInRHS = RHS.find(KeyValue.getKey());
295 if (!(KeyValue.getValue() == FindInRHS->getValue()))
308 bool insert(MapEntryTy *KeyValue) { in insert() argument
309 unsigned BucketNo = LookupBucketFor(KeyValue->getKey()); in insert()
316 Bucket = KeyValue; in insert()
414 void remove(MapEntryTy *KeyValue) { RemoveKey(KeyValue); } in remove() argument
/src/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp230 std::vector<Init *> KeyValue; in buildRowInstrMap() local
240 KeyValue.push_back(CurInstrVal); in buildRowInstrMap()
249 RowInstrMap[KeyValue].push_back(CurInstr); in buildRowInstrMap()
303 std::vector<Init *> KeyValue; in getInstrForColumn() local
308 KeyValue.push_back(KeyInstrVal); in getInstrForColumn()
315 const std::vector<Record *> &RelatedInstrVec = RowInstrMap[KeyValue]; in getInstrForColumn()
336 for (Init *Value : KeyValue) { in getInstrForColumn()
/src/contrib/llvm-project/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp361 StringRef KeyValue = KeyString->getValue(KeyStorage); in parse() local
369 if (KeyValue == "arguments") { in parse()
388 if (KeyValue == "directory") { in parse()
390 } else if (KeyValue == "command") { in parse()
393 } else if (KeyValue == "file") { in parse()
395 } else if (KeyValue == "output") { in parse()
/src/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()
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp1513 unsigned KeyValue; in checkPointerAuthKey() local
1514 return S.checkConstantPointerAuthKey(Arg, KeyValue); in checkPointerAuthKey()
1519 std::optional<llvm::APSInt> KeyValue = Arg->getIntegerConstantExpr(Context); in checkConstantPointerAuthKey() local
1520 if (!KeyValue) { in checkConstantPointerAuthKey()
1527 if (!Context.getTargetInfo().validatePointerAuthKey(*KeyValue)) { in checkConstantPointerAuthKey()
1531 Str << *KeyValue; in checkConstantPointerAuthKey()
1539 Result = KeyValue->getZExtValue(); in checkConstantPointerAuthKey()