Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp3373 void DecompositionDecl::anchor() {} in anchor()
3375 DecompositionDecl *DecompositionDecl::Create(ASTContext &C, DeclContext *DC, in Create()
3383 DecompositionDecl(C, DC, StartLoc, LSquareLoc, T, TInfo, SC, Bindings); in Create()
3386 DecompositionDecl *DecompositionDecl::CreateDeserialized(ASTContext &C, in CreateDeserialized()
3391 DecompositionDecl(C, nullptr, SourceLocation(), SourceLocation(), in CreateDeserialized()
3401 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.cpp542 if (VD && !isa<DecompositionDecl>(D)) { in shouldMangleCXXName()
1146 if (const DecompositionDecl *DD = dyn_cast<DecompositionDecl>(ND)) { in mangleUnqualifiedName()
H A DDeclBase.cpp170 if (auto *DD = dyn_cast<DecompositionDecl>(this)) { in setInvalidDecl()
H A DItaniumMangle.cpp779 if (isa<DecompositionDecl>(VD)) in shouldMangleCXXName()
1490 if (auto *DD = dyn_cast<DecompositionDecl>(ND)) { in mangleUnqualifiedName()
H A DASTImporter.cpp4557 if (auto *FromDecomp = dyn_cast<DecompositionDecl>(D)) { in VisitVarDecl()
4562 DecompositionDecl *ToDecomp; in VisitVarDecl()
H A DExprConstant.cpp4998 if (const DecompositionDecl *DD = dyn_cast<DecompositionDecl>(D)) in EvaluateDecl()
/freebsd/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.cpp3001 if (const auto *DD = dyn_cast<DecompositionDecl>(VD)) { in VisitDeclSubExpr()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h66 class DecompositionDecl; variable
4171 class DecompositionDecl final
4173 private llvm::TrailingObjects<DecompositionDecl, BindingDecl *> {
4177 DecompositionDecl(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, in DecompositionDecl() function
4196 static DecompositionDecl *Create(ASTContext &C, DeclContext *DC,
4202 static DecompositionDecl *CreateDeserialized(ASTContext &C, GlobalDeclID ID,
H A DASTNodeTraverser.h560 void VisitDecompositionDecl(const DecompositionDecl *D) { in VisitDecompositionDecl()
H A DRecursiveASTVisitor.h2138 DEF_TRAVERSE_DECL(DecompositionDecl, {
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DTransfer.cpp250 if (const auto *Decomp = dyn_cast<DecompositionDecl>(&D)) { in ProcessVarDecl()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DIndexDecl.cpp314 bool VisitDecompositionDecl(const DecompositionDecl *D) { in VisitDecompositionDecl()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h352 extern const internal::VariadicDynCastAllOfMatcher<Decl, DecompositionDecl>
8267 AST_MATCHER_P2(DecompositionDecl, hasBinding, unsigned, N, in AST_MATCHER_P2() argument
8291 AST_MATCHER_P(DecompositionDecl, hasAnyBinding, internal::Matcher<BindingDecl>, in AST_MATCHER_P() argument
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExceptionSpec.cpp1071 if (auto *DD = dyn_cast<DecompositionDecl>(VD)) in canVarDeclThrow()
H A DSemaDecl.cpp1916 if (const auto *DD = dyn_cast<DecompositionDecl>(D)) { in ShouldDiagnoseUnusedDecl()
7633 NewVD = DecompositionDecl::Create(Context, DC, D.getBeginLoc(), in ActOnVariableDeclarator()
12896 if (VDecl && isa<DecompositionDecl>(VDecl) && in deduceVarTypeFromInitializer()
13484 if (isa<DecompositionDecl>(VDecl)) // Case 2) in AddInitializerToDecl()
13773 if (auto *DD = dyn_cast<DecompositionDecl>(D)) in ActOnInitializerError()
13815 if (isa<DecompositionDecl>(RealDecl)) { in ActOnUninitializedDecl()
14477 if (auto *DD = dyn_cast<DecompositionDecl>(var)) in CheckCompleteVariableDeclaration()
14567 if (auto *DD = dyn_cast<DecompositionDecl>(ThisDecl)) { in FinalizeDeclaration()
14701 DecompositionDecl *FirstDecompDeclaratorInGroup = nullptr; in FinalizeDeclaratorGroup()
14721 FirstDecompDeclaratorInGroup = dyn_cast<DecompositionDecl>(D); in FinalizeDeclaratorGroup()
H A DSemaTemplateInstantiateDecl.cpp1166 Decl *TemplateDeclInstantiator::VisitDecompositionDecl(DecompositionDecl *D) { in VisitDecompositionDecl()
1173 auto *NewDD = cast_or_null<DecompositionDecl>( in VisitDecompositionDecl()
1211 Var = DecompositionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(), in VisitVarDecl()
H A DSemaStmt.cpp2627 if (auto *DD = dyn_cast<DecompositionDecl>(LoopVar)) in BuildCXXForRangeStmt()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp388 void VisitDecompositionDecl(DecompositionDecl *DD);
1738 void ASTDeclReader::VisitDecompositionDecl(DecompositionDecl *DD) { in VisitDecompositionDecl()
4049 D = DecompositionDecl::CreateDeserialized(Context, ID, Record.readInt()); in ReadDeclRecord()
H A DASTWriterDecl.cpp107 void VisitDecompositionDecl(DecompositionDecl *D);
1256 void ASTDeclWriter::VisitDecompositionDecl(DecompositionDecl *D) { in VisitDecompositionDecl()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDecl.cpp166 if (auto *DD = dyn_cast<DecompositionDecl>(&VD)) in EmitDecl()
H A DCGDebugInfo.cpp5038 if (auto *DD = dyn_cast<DecompositionDecl>(VD)) { in EmitDeclareOfAutoVariable()
H A DCodeGenModule.cpp6899 if (auto *DD = dyn_cast<DecompositionDecl>(D)) in EmitTopLevelDecl()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp3140 const auto *DD = cast<DecompositionDecl>(BD->getDecomposedDecl()); in VisitCommonDeclRefExpr()

12