Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangBuiltinsEmitter.cpp299 auto Substitutions = R->getValueAsListOfStrings("Substitutions"); in getTemplateInsts() local
303 if (Substitutions.size() != Affixes.size()) in getTemplateInsts()
307 for (auto [Affix, Substitution] : llvm::zip(Affixes, Substitutions)) { in getTemplateInsts()
H A DClangDiagnosticsEmitter.cpp590 Substitutions.try_emplace( in DiagnosticTextBuilder()
598 if (Substitutions.count(Name)) in DiagnosticTextBuilder()
611 auto It = Substitutions.find(S->Name); in getSubstitution()
612 if (It == Substitutions.end()) in getSubstitution()
683 StringMap<DiagText> Substitutions; member
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheckImpl.h445 std::vector<std::unique_ptr<Substitution>> Substitutions;
582 std::vector<Substitution *> Substitutions; in log()
717 return !(Substitutions.empty() && VariableDefs.empty());
471 std::vector<std::unique_ptr<Substitution>> Substitutions; global() variable
608 std::vector<Substitution *> Substitutions; global() variable
H A DFileCheck.cpp1033 Substitutions.push_back(Substitution); in parsePattern()
1098 if (!Substitutions.empty()) { in match()
1109 for (const auto &Substitution : Substitutions) { in match()
1210 if (!Substitutions.empty()) { in printSubstitutions()
1211 for (const auto &Substitution : Substitutions) { in printSubstitutions()
1377 Substitutions.push_back( in makeStringSubstitution()
1379 return Substitutions.back().get(); in makeStringSubstitution()
1385 Substitutions.push_back(std::make_unique<NumericSubstitution>( in makeNumericSubstitution()
1387 return Substitutions.back().get(); in makeNumericSubstitution()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltinsBase.td124 list<string> Substitutions = substitutions;
H A DDiagnosticCommonKinds.td15 // Substitutions.
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DItaniumMangle.cpp395 llvm::DenseMap<uintptr_t, unsigned> Substitutions; member in __anon01ebe6bc0111::CXXNameMangler
438 Substitutions(Outer.Substitutions), in CXXNameMangler()
6779 llvm::DenseMap<uintptr_t, unsigned>::iterator I = Substitutions.find(Ptr); in mangleSubstitution()
6780 if (I == Substitutions.end()) in mangleSubstitution()
6950 assert(!Substitutions.count(Ptr) && "Substitution already exists!"); in addSubstitution()
6951 Substitutions[Ptr] = SeqID++; in addSubstitution()
6957 Substitutions.swap(Other->Substitutions); in extendSubstitutions()