Searched refs:Substitutions (Results 1 – 8 of 8) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | SimplifyConstraints.cpp | 19 const llvm::DenseMap<Atom, const Formula *> &Substitutions, in substitute() argument 23 if (auto iter = Substitutions.find(F.getAtom()); in substitute() 24 iter != Substitutions.end()) in substitute() 30 return arena.makeNot(substitute(*F.operands()[0], Substitutions, arena)); in substitute() 32 return arena.makeAnd(substitute(*F.operands()[0], Substitutions, arena), in substitute() 33 substitute(*F.operands()[1], Substitutions, arena)); in substitute() 35 return arena.makeOr(substitute(*F.operands()[0], Substitutions, arena), in substitute() 36 substitute(*F.operands()[1], Substitutions, arena)); in substitute() 39 substitute(*F.operands()[0], Substitutions, arena), in substitute() 40 substitute(*F.operands()[1], Substitutions, arena)); in substitute() [all …]
|
| /freebsd/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangBuiltinsEmitter.cpp | 428 auto Substitutions = R->getValueAsListOfStrings("Substitutions"); in getTemplateInsts() local 432 if (Substitutions.size() != Affixes.size()) in getTemplateInsts() 436 for (auto [Affix, Substitution] : zip(Affixes, Substitutions)) { in getTemplateInsts()
|
| H A D | ClangDiagnosticsEmitter.cpp | 586 Substitutions.try_emplace( in DiagnosticTextBuilder() 594 if (Substitutions.count(Name)) in DiagnosticTextBuilder() 610 auto It = Substitutions.find(S->Name); in getSubstitution() 611 if (It == Substitutions.end()) in getSubstitution() 683 StringMap<DiagText> Substitutions; member
|
| /freebsd/contrib/llvm-project/llvm/lib/FileCheck/ |
| H A D | FileCheckImpl.h | 467 std::vector<std::unique_ptr<Substitution>> Substitutions; variable 604 std::vector<Substitution *> Substitutions; variable 742 return !(Substitutions.empty() && VariableDefs.empty()); in hasVariable()
|
| H A D | FileCheck.cpp | 1072 Substitutions.push_back(Substitution); in parsePattern() 1137 if (!Substitutions.empty()) { in match() 1148 for (const auto &Substitution : Substitutions) { in match() 1249 if (!Substitutions.empty()) { in printSubstitutions() 1250 for (const auto &Substitution : Substitutions) { in printSubstitutions() 1417 Substitutions.push_back( in makeStringSubstitution() 1419 return Substitutions.back().get(); in makeStringSubstitution() 1425 Substitutions.push_back(std::make_unique<NumericSubstitution>( in makeNumericSubstitution() 1427 return Substitutions.back().get(); in makeNumericSubstitution()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | BuiltinsBase.td | 150 list<string> Substitutions = substitutions;
|
| H A D | DiagnosticCommonKinds.td | 15 // Substitutions.
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ItaniumMangle.cpp | 386 llvm::DenseMap<uintptr_t, unsigned> Substitutions; member in __anon01ebe6bc0111::CXXNameMangler 429 Substitutions(Outer.Substitutions), in CXXNameMangler() 7052 llvm::DenseMap<uintptr_t, unsigned>::iterator I = Substitutions.find(Ptr); in mangleSubstitution() 7053 if (I == Substitutions.end()) in mangleSubstitution() 7223 assert(!Substitutions.count(Ptr) && "Substitution already exists!"); in addSubstitution() 7224 Substitutions[Ptr] = SeqID++; in addSubstitution() 7230 Substitutions.swap(Other->Substitutions); in extendSubstitutions()
|