Home | History | Annotate | Download | only in ASTMatchers

Lines Matching refs:declStmt

580 /// declStmt()
584 DeclStmt> declStmt;
862 /// forStmt(hasLoopInit(declStmt()))
2044 /// \brief Matches the Decl of a DeclStmt which has a single declaration.
2051 /// declStmt(hasSingleDecl(anything()))
2053 AST_MATCHER_P(DeclStmt, hasSingleDecl, internal::Matcher<Decl>, InnerMatcher) {
2119 AST_MATCHER_P(DeclStmt, declCountIs, unsigned, N) {
2126 /// breaks up multiple-declaration DeclStmt's into multiple single-declaration
2127 /// DeclStmt's.
2134 /// declStmt(containsDeclaration(
2137 /// declStmt(containsDeclaration(1, varDecl()))
2142 AST_MATCHER_P2(DeclStmt, containsDeclaration, unsigned, N,
2147 DeclStmt::const_decl_iterator Iterator = Node.decl_begin();
2409 internal::Matcher<DeclStmt>, InnerMatcher) {
2410 const DeclStmt* const DeclarationStatement =