Searched refs:decl_begin (Results 1 – 9 of 9) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtDataCollectors.td | 211 auto numDecls = std::distance(S->decl_begin(), S->decl_end());
|
| H A D | Stmt.h | 1339 decl_range decls() { return decl_range(decl_begin(), decl_end()); } in decls() 1342 return decl_const_range(decl_begin(), decl_end()); in decls() 1345 decl_iterator decl_begin() { return DG.begin(); } in decl_begin() function 1347 const_decl_iterator decl_begin() const { return DG.begin(); } in decl_begin() function 1357 return reverse_decl_iterator(decl_begin()); in decl_rend()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | ExprEngineC.cpp | 569 if (isa<TypedefNameDecl>(*DS->decl_begin())) { in VisitDeclStmt() 582 const VarDecl *VD = dyn_cast_or_null<VarDecl>(*DS->decl_begin()); in VisitDeclStmt()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 4384 return std::distance(Node.decl_begin(), Node.decl_end()) == (ptrdiff_t)N; in AST_MATCHER_P() 4408 const unsigned NumDecls = std::distance(Node.decl_begin(), Node.decl_end()); in AST_MATCHER_P2() 4411 DeclStmt::const_decl_iterator Iterator = Node.decl_begin(); in AST_MATCHER_P2()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 423 Decl *D = *cast<DeclStmt>(Elts[i])->decl_begin(); in ActOnCompoundStmt() 2257 return StmtError(Diag((*DS->decl_begin())->getLocation(), in ActOnObjCForCollectionStmt()
|
| H A D | SemaOpenMP.cpp | 12688 PreInits.append(PI->decl_begin(), PI->decl_end()); in ActOnOpenMPTileDirective() 12691 PreInits.append(PI->decl_begin(), PI->decl_end()); in ActOnOpenMPTileDirective() 12931 PreInits.append(PI->decl_begin(), PI->decl_end()); in ActOnOpenMPUnrollDirective() 12934 PreInits.append(PI->decl_begin(), PI->decl_end()); in ActOnOpenMPUnrollDirective()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteModernObjC.cpp | 5583 RewriteObjCQualifiedInterfaceTypes(*DS->decl_begin()); in RewriteFunctionBodyOrGlobalInitializer() 5586 for (DeclStmt::decl_iterator DI = DS->decl_begin(), DE = DS->decl_end(); in RewriteFunctionBodyOrGlobalInitializer() 5600 RewriteByRefVar(VD, (DI == DS->decl_begin()), ((DI+1) == DE)); in RewriteFunctionBodyOrGlobalInitializer()
|
| H A D | RewriteObjC.cpp | 4688 RewriteObjCQualifiedInterfaceTypes(*DS->decl_begin()); in RewriteFunctionBodyOrGlobalInitializer()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | CFG.cpp | 2815 if (isa<LabelDecl>(*DS->decl_begin())) in VisitDeclStmt()
|