Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A 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()
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()
469 StringRef KeyValue; in parseRewriteGlobalAliasDescriptor() local
483 KeyValue = Key->getValue(KeyStorage); in parseRewriteGlobalAliasDescriptor()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp314 StringRef KeyValue = KeyString->getValue(KeyStorage); in parse() local
322 if (KeyValue == "arguments" && !SequenceString) { in parse()
325 } else if (KeyValue != "arguments" && !ValueString) { in parse()
329 if (KeyValue == "directory") { in parse()
331 } else if (KeyValue == "arguments") { in parse()
341 } else if (KeyValue == "command") { in parse()
344 } else if (KeyValue == "file") { in parse()
346 } else if (KeyValue == "output") { in parse()
/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp243 std::vector<Init*> KeyValue; in buildRowInstrMap() local
252 KeyValue.push_back(CurInstrVal); in buildRowInstrMap()
261 RowInstrMap[KeyValue].push_back(CurInstr); in buildRowInstrMap()
315 std::vector<Init*> KeyValue; in getInstrForColumn() local
320 KeyValue.push_back(KeyInstrVal); in getInstrForColumn()
327 const std::vector<Record*> &RelatedInstrVec = RowInstrMap[KeyValue]; in getInstrForColumn()
349 for (Init *Value : KeyValue) { in getInstrForColumn()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DEnvironment.h79 static std::string compose(const value_type &KeyValue) { in compose() argument
80 return (KeyValue.first() + "=" + KeyValue.second).str(); in compose()
/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DStringMap.h366 bool insert(MapEntryTy *KeyValue) { in insert() argument
367 unsigned BucketNo = LookupBucketFor(KeyValue->getKey()); in insert()
374 Bucket = KeyValue; in insert()
432 void remove(MapEntryTy *KeyValue) { in remove() argument
433 RemoveKey(KeyValue); in remove()
/freebsd-12.1/contrib/llvm/lib/ProfileData/
H A DGCOV.cpp765 std::pair<const GCOVFunction *, GCOVCoverage> KeyValue( in print() local
767 FuncCoverages.insert(KeyValue); in print()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInvocation.cpp3422 for (const auto &KeyValue : getCodeGenOpts().DebugPrefixMap) in getModuleHash() local
3423 code = hash_combine(code, KeyValue.first, KeyValue.second); in getModuleHash()