HomeSort by: relevance | last modified time | path
    Searched refs:ForStatement (Results 1 - 20 of 20) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Syntax/
Nodes.h 283 class ForStatement final : public Statement {
285 ForStatement() : Statement(NodeKind::ForStatement) {}
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
statement.h 147 ForStatement *isForStatement() { return stmt == STMTfor ? (ForStatement*)this : NULL; }
304 class ForStatement : public Statement
318 ForStatement *syntaxCopy();
sapply.d 100 override void visit(ForStatement s)
statement_rewrite_walker.d 96 override void visit(ForStatement s)
foreachvar.d 144 void visitFor(ForStatement s)
statement.d 390 inout(ForStatement) isForStatement() { return stmt == STMT.For ? cast(typeof(return))this : null; }
868 extern (C++) final class ForStatement : Statement
891 override ForStatement syntaxCopy()
893 return new ForStatement(loc,
908 //printf("ForStatement::hasBreak()\n");
blockexit.d 229 override void visit(ForStatement s)
visitor.h 27 class ForStatement;
398 virtual void visit(ForStatement *s) { visit((Statement *)s); }
statementsem.d 540 Statement s = new ForStatement(ws.loc, null, cond, null, _body, ws.endloc);
581 override void visit(ForStatement fs)
585 //printf("ForStatement::semantic %s\n", fs.toChars());
1045 /* Convert to a ForStatement
1156 Statement s = new ForStatement(loc, forinit, cond, increment, fs._body, fs.endloc);
1350 Statement s = new ForStatement(loc, _init, condition, increment, forbody, fs.endloc);
1860 auto s = new ForStatement(loc, forinit, cond, increment, fs._body, fs.endloc);
parsetimevisitor.d 104 void visit(AST.ForStatement s) { visit(cast(AST.Statement)s); }
transitivevisitor.d 128 override void visit(AST.ForStatement s)
130 //printf("Visiting ForStatement\n");
ob.d 478 void visitFor(ForStatement s)
480 //printf("visit(ForStatement)) %u..%u\n", s.loc.linnum, s.endloc.linnum);
cparse.d 450 s = new AST.ForStatement(loc, _init, condition, increment, _body, endloc);
hdrgen.d 287 override void visit(ForStatement s)
dinterpret.d 1124 assert(0); // rewritten to ForStatement
1188 override void visit(ForStatement s)
1192 printf("%s ForStatement::interpret()\n", s.loc.toChars());
1262 assert(0); // rewritten to ForStatement
1267 assert(0); // rewritten to ForStatement
parse.d 5982 s = new AST.ForStatement(loc, _init, condition, increment, _body, endloc);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
Synthesis.cpp 122 case syntax::NodeKind::ForStatement:
123 return new (A.getAllocator()) syntax::ForStatement;
Nodes.cpp 275 syntax::Leaf *syntax::ForStatement::getForKeyword() {
280 syntax::Statement *syntax::ForStatement::getBody() {
BuildTree.cpp 1475 new (allocator()) syntax::ForStatement, S);
  /src/external/gpl3/gcc.old/dist/gcc/d/
toir.cc 658 void visit (ForStatement *s)

Completed in 78 milliseconds