Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp339 StringRef KeyValue; in parseRewriteFunctionDescriptor() local
353 KeyValue = Key->getValue(KeyStorage); in parseRewriteFunctionDescriptor()
354 if (KeyValue.equals("source")) { in parseRewriteFunctionDescriptor()
362 } else if (KeyValue.equals("target")) { in parseRewriteFunctionDescriptor()
366 } else if (KeyValue.equals("naked")) { in parseRewriteFunctionDescriptor()
408 StringRef KeyValue; in parseRewriteGlobalVariableDescriptor() local
422 KeyValue = Key->getValue(KeyStorage); in parseRewriteGlobalVariableDescriptor()
423 if (KeyValue.equals("source")) { in parseRewriteGlobalVariableDescriptor()
471 StringRef KeyValue; in parseRewriteGlobalAliasDescriptor() local
485 KeyValue = Key->getValue(KeyStorage); in parseRewriteGlobalAliasDescriptor()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMap.h258 for (const auto &KeyValue : *this) {
259 auto FindInRHS = RHS.find(KeyValue.getKey());
264 if (!(KeyValue.getValue() == FindInRHS->getValue()))
276 bool insert(MapEntryTy *KeyValue) { in insert() argument
277 unsigned BucketNo = LookupBucketFor(KeyValue->getKey()); in insert()
284 Bucket = KeyValue; in insert()
353 void remove(MapEntryTy *KeyValue) { RemoveKey(KeyValue); } in remove() argument
/freebsd-13.1/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-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp365 StringRef KeyValue = KeyString->getValue(KeyStorage); in parse() local
373 if (KeyValue == "arguments") { in parse()
392 if (KeyValue == "directory") { in parse()
394 } else if (KeyValue == "command") { in parse()
397 } else if (KeyValue == "file") { in parse()
399 } else if (KeyValue == "output") { in parse()
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp4562 for (const auto &KeyValue : getCodeGenOpts().DebugPrefixMap) in getModuleHash() local
4563 code = hash_combine(code, KeyValue.first, KeyValue.second); in getModuleHash()