Home
last modified time | relevance | path

Searched refs:DecompositionDecl (Results 1 – 25 of 32) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp3339 void DecompositionDecl::anchor() {} in anchor()
3341 DecompositionDecl *DecompositionDecl::Create(ASTContext &C, DeclContext *DC, in Create()
3349 DecompositionDecl(C, DC, StartLoc, LSquareLoc, T, TInfo, SC, Bindings); in Create()
3352 DecompositionDecl *DecompositionDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
3357 DecompositionDecl(C, nullptr, SourceLocation(), SourceLocation(), in CreateDeserialized()
3367 void DecompositionDecl::printName(llvm::raw_ostream &OS, in printName()
H A DItaniumCXXABI.cpp166 if (auto *DD = dyn_cast<DecompositionDecl>(VD)) { in getManglingNumber()
H A DMicrosoftMangle.cpp531 if (VD && !isa<DecompositionDecl>(D)) { in shouldMangleCXXName()
1055 if (const DecompositionDecl *DD = dyn_cast<DecompositionDecl>(ND)) { in mangleUnqualifiedName()
H A DDeclBase.cpp148 if (auto *DD = dyn_cast<DecompositionDecl>(this)) { in setInvalidDecl()
H A DItaniumMangle.cpp780 if (isa<DecompositionDecl>(VD)) in shouldMangleCXXName()
1489 if (auto *DD = dyn_cast<DecompositionDecl>(ND)) { in mangleUnqualifiedName()
H A DASTImporter.cpp4477 if (auto *FromDecomp = dyn_cast<DecompositionDecl>(D)) { in VisitVarDecl()
4482 DecompositionDecl *ToDecomp; in VisitVarDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DLiveVariables.cpp72 if (const auto *DD = dyn_cast<DecompositionDecl>(D)) { in isLive()
398 if (const auto *DD = dyn_cast<DecompositionDecl>(DI)) { in VisitDeclStmt()
H A DCFG.cpp3004 if (const auto *DD = dyn_cast<DecompositionDecl>(VD)) { in VisitDeclSubExpr()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h66 class DecompositionDecl; variable
4157 class DecompositionDecl final
4159 private llvm::TrailingObjects<DecompositionDecl, BindingDecl *> {
4163 DecompositionDecl(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, in DecompositionDecl() function
4182 static DecompositionDecl *Create(ASTContext &C, DeclContext *DC,
4188 static DecompositionDecl *CreateDeserialized(ASTContext &C, unsigned ID,
H A DASTNodeTraverser.h469 void VisitDecompositionDecl(const DecompositionDecl *D) { in VisitDecompositionDecl()
H A DRecursiveASTVisitor.h2080 DEF_TRAVERSE_DECL(DecompositionDecl, {
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DTransfer.cpp226 if (const auto *Decomp = dyn_cast<DecompositionDecl>(&D)) { in ProcessVarDecl()
H A DDataflowEnvironment.cpp323 if (const auto *Decomp = dyn_cast<DecompositionDecl>(&D)) in getFieldsGlobalsAndFuncs()
/freebsd-14.2/contrib/llvm-project/clang/lib/Index/
H A DIndexDecl.cpp314 bool VisitDecompositionDecl(const DecompositionDecl *D) { in VisitDecompositionDecl()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h352 extern const internal::VariadicDynCastAllOfMatcher<Decl, DecompositionDecl>
8237 AST_MATCHER_P2(DecompositionDecl, hasBinding, unsigned, N, in AST_MATCHER_P2() argument
8261 AST_MATCHER_P(DecompositionDecl, hasAnyBinding, internal::Matcher<BindingDecl>, in AST_MATCHER_P() argument
/freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp736 const internal::VariadicDynCastAllOfMatcher<Decl, DecompositionDecl> decompositionDecl;
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExceptionSpec.cpp1091 if (auto *DD = dyn_cast<DecompositionDecl>(VD)) in canVarDeclThrow()
H A DSemaDecl.cpp2008 if (const auto *DD = dyn_cast<DecompositionDecl>(D)) { in ShouldDiagnoseUnusedDecl()
7805 NewVD = DecompositionDecl::Create(Context, DC, D.getBeginLoc(), in ActOnVariableDeclarator()
13097 if (VDecl && isa<DecompositionDecl>(VDecl) && in deduceVarTypeFromInitializer()
13672 if (isa<DecompositionDecl>(VDecl)) // Case 2) in AddInitializerToDecl()
13968 if (auto *DD = dyn_cast<DecompositionDecl>(D)) in ActOnInitializerError()
14010 if (isa<DecompositionDecl>(RealDecl)) { in ActOnUninitializedDecl()
14668 if (auto *DD = dyn_cast<DecompositionDecl>(var)) in CheckCompleteVariableDeclaration()
14762 if (auto *DD = dyn_cast<DecompositionDecl>(ThisDecl)) { in FinalizeDeclaration()
14896 DecompositionDecl *FirstDecompDeclaratorInGroup = nullptr; in FinalizeDeclaratorGroup()
14915 FirstDecompDeclaratorInGroup = dyn_cast<DecompositionDecl>(D); in FinalizeDeclaratorGroup()
H A DSemaTemplateInstantiateDecl.cpp1125 Decl *TemplateDeclInstantiator::VisitDecompositionDecl(DecompositionDecl *D) { in VisitDecompositionDecl()
1132 auto *NewDD = cast_or_null<DecompositionDecl>( in VisitDecompositionDecl()
1170 Var = DecompositionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(), in VisitVarDecl()
H A DSemaStmt.cpp2786 if (auto *DD = dyn_cast<DecompositionDecl>(LoopVar)) in BuildCXXForRangeStmt()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp393 void VisitDecompositionDecl(DecompositionDecl *DD);
1746 void ASTDeclReader::VisitDecompositionDecl(DecompositionDecl *DD) { in VisitDecompositionDecl()
4025 D = DecompositionDecl::CreateDeserialized(Context, ID, Record.readInt()); in ReadDeclRecord()
H A DASTWriterDecl.cpp104 void VisitDecompositionDecl(DecompositionDecl *D);
1218 void ASTDeclWriter::VisitDecompositionDecl(DecompositionDecl *D) { in VisitDecompositionDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp163 if (auto *DD = dyn_cast<DecompositionDecl>(&VD)) in EmitDecl()
H A DCGDebugInfo.cpp4903 if (auto *DD = dyn_cast<DecompositionDecl>(VD)) { in EmitDeclareOfAutoVariable()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp3128 const auto *DD = cast<DecompositionDecl>(BD->getDecomposedDecl()); in VisitCommonDeclRefExpr()

12