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

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DEnvironment.h78 static std::string compose(const value_type &KeyValue) { argument
79 return (KeyValue.first() + "=" + KeyValue.second).str();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp337 StringRef KeyValue; local
351 KeyValue = Key->getValue(KeyStorage);
352 if (KeyValue.equals("source")) {
360 } else if (KeyValue.equals("target")) {
362 } else if (KeyValue.equals("transform")) {
364 } else if (KeyValue.equals("naked")) {
406 StringRef KeyValue; local
420 KeyValue = Key->getValue(KeyStorage);
421 if (KeyValue.equals("source")) {
429 } else if (KeyValue
469 StringRef KeyValue; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp364 StringRef KeyValue = KeyString->getValue(KeyStorage); local
372 if (KeyValue == "arguments" && !SequenceString) {
375 } else if (KeyValue != "arguments" && !ValueString) {
379 if (KeyValue == "directory") {
381 } else if (KeyValue == "arguments") {
391 } else if (KeyValue == "command") {
394 } else if (KeyValue == "file") {
396 } else if (KeyValue == "output") {
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenMapTable.cpp242 std::vector<Init*> KeyValue; local
251 KeyValue.push_back(CurInstrVal);
256 // their KeyValue in RowInstrMap.
260 RowInstrMap[KeyValue].push_back(CurInstr);
314 std::vector<Init*> KeyValue; local
316 // Construct KeyValue using KeyInstr's values for RowFields.
319 KeyValue.push_back(KeyInstrVal);
322 // Get all the instructions that share the same KeyValue as the KeyInstr
326 const std::vector<Record*> &RelatedInstrVec = RowInstrMap[KeyValue];
348 for (Init *Value : KeyValue) {
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMap.h393 bool insert(MapEntryTy *KeyValue) { argument
394 unsigned BucketNo = LookupBucketFor(KeyValue->getKey());
401 Bucket = KeyValue;
469 void remove(MapEntryTy *KeyValue) { argument
470 RemoveKey(KeyValue);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DGCOV.cpp773 std::pair<const GCOVFunction *, GCOVCoverage> KeyValue(
775 FuncCoverages.insert(KeyValue);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp3729 for (const auto &KeyValue : getCodeGenOpts().DebugPrefixMap)
3730 code = hash_combine(code, KeyValue.first, KeyValue.second);

Completed in 94 milliseconds