Home
last modified time | relevance | path

Searched refs:ForStatement (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Syntax/
H A DNodes.h278 class ForStatement final : public Statement {
280 ForStatement() : Statement(NodeKind::ForStatement) {} in ForStatement() function
H A DSyntax.td58 // Statement = IfStatement | ForStatement | ...
H A DNodes.td229 def ForStatement : External<Statement> {}
/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DSynthesis.cpp129 case syntax::NodeKind::ForStatement: in allocateTree()
130 return new (A.getAllocator()) syntax::ForStatement; in allocateTree()
H A DNodes.cpp275 syntax::Leaf *syntax::ForStatement::getForKeyword() { in getForKeyword()
280 syntax::Statement *syntax::ForStatement::getBody() { in getBody()
H A DBuildTree.cpp1481 new (allocator()) syntax::ForStatement, S); in WalkUpFromForStmt()