| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/Syntax/ |
| H A D | Nodes.h | 283 class ForStatement final : public Statement { 285 ForStatement() : Statement(NodeKind::ForStatement) {} in ForStatement() function
|
| H A D | Syntax.td | 58 // Statement = IfStatement | ForStatement | ...
|
| H A D | Nodes.td | 229 def ForStatement : External<Statement> {}
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | statement.h | 147 …ForStatement *isForStatement() { return stmt == STMTfor ? (ForStatement*)t… in isForStatement() 304 class ForStatement : public Statement 318 ForStatement *syntaxCopy();
|
| H A D | statement_rewrite_walker.d | 96 override void visit(ForStatement s) in visit()
|
| H A D | sapply.d | 100 override void visit(ForStatement s) in visit()
|
| H A D | foreachvar.d | 144 void visitFor(ForStatement s) in foreachExpAndVar()
|
| H A D | statement.d | 390 …inout(ForStatement) isForStatement() { return stmt == STMT.For ? cast(type… in isForStatement() 868 extern (C++) final class ForStatement : Statement 891 override ForStatement syntaxCopy() in syntaxCopy() 893 return new ForStatement(loc, in syntaxCopy()
|
| H A D | blockexit.d | 229 override void visit(ForStatement s) in blockExit()
|
| H A D | visitor.h | 27 class ForStatement; variable 398 virtual void visit(ForStatement *s) { visit((Statement *)s); } in visit()
|
| H A D | statementsem.d | 540 Statement s = new ForStatement(ws.loc, null, cond, null, _body, ws.endloc); in package() 581 override void visit(ForStatement fs) in package() 1156 Statement s = new ForStatement(loc, forinit, cond, increment, fs._body, fs.endloc); in package() 1350 … Statement s = new ForStatement(loc, _init, condition, increment, forbody, fs.endloc); in package() 1860 auto s = new ForStatement(loc, forinit, cond, increment, fs._body, fs.endloc); in package()
|
| H A D | parsetimevisitor.d | 104 void visit(AST.ForStatement s) { visit(cast(AST.Statement)s); } in ParseTimeVisitor()
|
| H A D | transitivevisitor.d | 128 override void visit(AST.ForStatement s) in ParseVisitMethods()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | statement.c | 817 ForStatement::ForStatement(Loc loc, Statement *init, Expression *condition, Expression *increment, … in ForStatement() function 828 Statement *ForStatement::syntaxCopy() in syntaxCopy() 830 return new ForStatement(loc, in syntaxCopy() 838 Statement *ForStatement::scopeCode(Scope *sc, Statement **sentry, Statement **sexception, Statement… in scopeCode() 845 bool ForStatement::hasBreak() in hasBreak() 851 bool ForStatement::hasContinue() in hasContinue()
|
| H A D | sapply.c | 82 void visit(ForStatement *s) in visit()
|
| H A D | statement.h | 277 class ForStatement : public Statement 291 …ForStatement(Loc loc, Statement *init, Expression *condition, Expression *increment, Statement *bo…
|
| H A D | blockexit.c | 177 void visit(ForStatement *s) in blockExit()
|
| H A D | visitor.h | 27 class ForStatement; variable 321 virtual void visit(ForStatement *s) { visit((Statement *)s); } in visit()
|
| H A D | statementsem.c | 371 Statement *s = new ForStatement(ws->loc, NULL, ws->condition, NULL, ws->_body, ws->endloc); in visit() 410 void visit(ForStatement *fs) in visit() 1220 s = new ForStatement(loc, forinit, cond, increment, fs->_body, fs->endloc); in visit() 1399 s = new ForStatement(loc, init, condition, increment, forbody, fs->endloc); in visit() 1931 ForStatement *s = new ForStatement(loc, forinit, cond, increment, fs->_body, fs->endloc); in visit()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/ |
| H A D | Synthesis.cpp | 122 case syntax::NodeKind::ForStatement: in allocateTree() 123 return new (A.getAllocator()) syntax::ForStatement; in allocateTree()
|
| H A D | Nodes.cpp | 275 syntax::Leaf *syntax::ForStatement::getForKeyword() { in getForKeyword() 280 syntax::Statement *syntax::ForStatement::getBody() { in getBody()
|
| H A D | BuildTree.cpp | 1475 new (allocator()) syntax::ForStatement, S); in WalkUpFromForStmt()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/ |
| H A D | ChangeLog-2008 | 137 * d-glue.cc (ForStatement::toIR): condition may be NULL
|
| H A D | toir.cc | 658 void visit (ForStatement *s) in visit()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/ |
| H A D | toir.cc | 669 void visit (ForStatement *s) in visit()
|