Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDeclCXX.cpp3286 void DecompositionDecl::anchor() {} in anchor()
3288 DecompositionDecl *DecompositionDecl::Create(ASTContext &C, DeclContext *DC, in Create()
3296 DecompositionDecl(C, DC, StartLoc, LSquareLoc, T, TInfo, SC, Bindings); in Create()
3299 DecompositionDecl *DecompositionDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
3304 DecompositionDecl(C, nullptr, SourceLocation(), SourceLocation(), in CreateDeserialized()
3314 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.cpp526 if (VD && !isa<DecompositionDecl>(D)) { in shouldMangleCXXName()
997 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.cpp735 if (isa<DecompositionDecl>(VD)) in shouldMangleCXXName()
1421 if (auto *DD = dyn_cast<DecompositionDecl>(ND)) { in mangleUnqualifiedName()
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCursorVisitor.h251 bool VisitDecompositionDecl(DecompositionDecl *D);
/openbsd-src/gnu/llvm/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.cpp2997 if (const auto *DD = dyn_cast<DecompositionDecl>(VD)) { in VisitDeclSubExpr()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DDeclCXX.h66 class DecompositionDecl; variable
4077 class DecompositionDecl final
4079 private llvm::TrailingObjects<DecompositionDecl, BindingDecl *> {
4083 DecompositionDecl(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, in DecompositionDecl() function
4102 static DecompositionDecl *Create(ASTContext &C, DeclContext *DC,
4108 static DecompositionDecl *CreateDeserialized(ASTContext &C, unsigned ID,
H A DASTNodeTraverser.h458 void VisitDecompositionDecl(const DecompositionDecl *D) { in VisitDecompositionDecl()
H A DRecursiveASTVisitor.h2104 DEF_TRAVERSE_DECL(DecompositionDecl, {
/openbsd-src/gnu/llvm/clang/lib/AST/Interp/
H A DByteCodeStmtGen.cpp216 if (auto *DD = dyn_cast<DecompositionDecl>(D)) { in visitDeclStmt()
/openbsd-src/gnu/llvm/clang/lib/Analysis/FlowSensitive/
H A DTransfer.cpp267 if (const auto *Decomp = dyn_cast<DecompositionDecl>(&D)) { in VisitDeclStmt()
H A DDataflowEnvironment.cpp170 if (const auto *Decomp = dyn_cast<DecompositionDecl>(&D)) in getFieldsAndGlobalVars()
/openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/
H A DASTMatchers.h351 extern const internal::VariadicDynCastAllOfMatcher<Decl, DecompositionDecl>
7961 AST_MATCHER_P2(DecompositionDecl, hasBinding, unsigned, N, in AST_MATCHER_P2() argument
7985 AST_MATCHER_P(DecompositionDecl, hasAnyBinding, internal::Matcher<BindingDecl>, in AST_MATCHER_P() argument
/openbsd-src/gnu/llvm/clang/lib/Index/
H A DIndexDecl.cpp314 bool VisitDecompositionDecl(const DecompositionDecl *D) { in VisitDecompositionDecl()
/openbsd-src/gnu/llvm/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp736 const internal::VariadicDynCastAllOfMatcher<Decl, DecompositionDecl> decompositionDecl;
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderDecl.cpp382 void VisitDecompositionDecl(DecompositionDecl *DD);
1671 void ASTDeclReader::VisitDecompositionDecl(DecompositionDecl *DD) { in VisitDecompositionDecl()
3860 D = DecompositionDecl::CreateDeserialized(Context, ID, Record.readInt()); in ReadDeclRecord()
H A DASTWriterDecl.cpp106 void VisitDecompositionDecl(DecompositionDecl *D);
1158 void ASTDeclWriter::VisitDecompositionDecl(DecompositionDecl *D) { in VisitDecompositionDecl()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaExceptionSpec.cpp1083 if (auto *DD = dyn_cast<DecompositionDecl>(VD)) in canVarDeclThrow()
H A DSemaDecl.cpp1972 if (auto *DD = dyn_cast<DecompositionDecl>(D)) { in ShouldDiagnoseUnusedDecl()
7647 NewVD = DecompositionDecl::Create(Context, DC, D.getBeginLoc(), in ActOnVariableDeclarator()
12651 if (VDecl && isa<DecompositionDecl>(VDecl) && in deduceVarTypeFromInitializer()
13494 if (auto *DD = dyn_cast<DecompositionDecl>(D)) in ActOnInitializerError()
13536 if (isa<DecompositionDecl>(RealDecl)) { in ActOnUninitializedDecl()
14187 if (auto *DD = dyn_cast<DecompositionDecl>(var)) in CheckCompleteVariableDeclaration()
14285 if (auto *DD = dyn_cast<DecompositionDecl>(ThisDecl)) { in FinalizeDeclaration()
14419 DecompositionDecl *FirstDecompDeclaratorInGroup = nullptr; in FinalizeDeclaratorGroup()
14432 FirstDecompDeclaratorInGroup = dyn_cast<DecompositionDecl>(D); in FinalizeDeclaratorGroup()
H A DSemaTemplateInstantiateDecl.cpp1085 Decl *TemplateDeclInstantiator::VisitDecompositionDecl(DecompositionDecl *D) { in VisitDecompositionDecl()
1092 auto *NewDD = cast_or_null<DecompositionDecl>( in VisitDecompositionDecl()
1130 Var = DecompositionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(), in VisitVarDecl()
H A DSemaStmt.cpp2776 if (auto *DD = dyn_cast<DecompositionDecl>(LoopVar)) in BuildCXXForRangeStmt()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGDecl.cpp164 if (auto *DD = dyn_cast<DecompositionDecl>(&VD)) in EmitDecl()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp3109 const auto *DD = cast<DecompositionDecl>(BD->getDecomposedDecl()); in VisitCommonDeclRefExpr()

12