Home | History | Annotate | Download | only in ASTMatchers

Lines Matching defs:declStmt

1059 /// declStmt()
1063 DeclStmt> declStmt;
1556 /// forStmt(hasLoopInit(declStmt()))
2982 /// \brief Matches the Decl of a DeclStmt which has a single declaration.
2989 /// declStmt(hasSingleDecl(anything()))
2991 AST_MATCHER_P(DeclStmt, hasSingleDecl, internal::Matcher<Decl>, InnerMatcher) {
3156 AST_MATCHER_P(DeclStmt, declCountIs, unsigned, N) {
3163 /// breaks up multiple-declaration DeclStmt's into multiple single-declaration
3164 /// DeclStmt's.
3171 /// declStmt(containsDeclaration(
3174 /// declStmt(containsDeclaration(1, varDecl()))
3179 AST_MATCHER_P2(DeclStmt, containsDeclaration, unsigned, N,
3184 DeclStmt::const_decl_iterator Iterator = Node.decl_begin();
3713 internal::Matcher<DeclStmt>, InnerMatcher) {
3714 const DeclStmt* const DeclarationStatement =
4572 /// declStmt(isInTemplateInstantiation())