Home
last modified time | relevance | path

Searched refs:DeclarationStatement (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Syntax/
H A DNodes.h224 class DeclarationStatement final : public Statement {
226 DeclarationStatement() : Statement(NodeKind::DeclarationStatement) {} in DeclarationStatement() function
H A DNodes.td223 def DeclarationStatement : External<Statement> {}
/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DSynthesis.cpp117 case syntax::NodeKind::DeclarationStatement: in allocateTree()
118 return new (A.getAllocator()) syntax::DeclarationStatement; in allocateTree()
H A DBuildTree.cpp1424 new (allocator()) syntax::DeclarationStatement, S); in WalkUpFromDeclStmt()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h5662 const DeclStmt* const DeclarationStatement = in AST_MATCHER_P() local
5664 return DeclarationStatement != nullptr && in AST_MATCHER_P()
5665 InnerMatcher.matches(*DeclarationStatement, Finder, Builder); in AST_MATCHER_P()