| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | statement.h | 35 class ScopeStatement; variable 130 …ScopeStatement *isScopeStatement() { return stmt == STMTscope ? (ScopeStatement*… in isScopeStatement() 251 class ScopeStatement : public Statement 257 ScopeStatement *syntaxCopy();
|
| H A D | arraytypes.h | 55 typedef Array<class ScopeStatement *> ScopeStatements;
|
| H A D | arraytypes.d | 49 alias ScopeStatements = Array!(ScopeStatement);
|
| H A D | statement_rewrite_walker.d | 78 override void visit(ScopeStatement s) in visit()
|
| H A D | sapply.d | 85 override void visit(ScopeStatement s) in visit()
|
| H A D | statement.d | 311 override void visit(ScopeStatement s) in hasCode() 371 …inout(ScopeStatement) isScopeStatement() { return stmt == STMT.Scope ? cast(type… in isScopeStatement() 699 extern (C++) class ScopeStatement : Statement 711 override ScopeStatement syntaxCopy() in syntaxCopy() 713 return new ScopeStatement(loc, statement ? statement.syntaxCopy() : null, endloc); in syntaxCopy()
|
| H A D | foreachvar.d | 201 void visitScope(ScopeStatement s) in foreachExpAndVar()
|
| H A D | blockexit.d | 192 override void visit(ScopeStatement s) in blockExit()
|
| H A D | visitor.h | 23 class ScopeStatement; variable 392 virtual void visit(ScopeStatement *s) { visit((Statement *)s); } in visit()
|
| H A D | statementsem.d | 333 _body = new ScopeStatement(Loc.initial, _body, Loc.initial); in package() 455 override void visit(ScopeStatement ss) in package() 607 s = new ScopeStatement(fs.loc, s, fs.endloc); in package() 881 foreach (ScopeStatement ss; *fs.gotos) in package() 3521 … Statement ss = new ScopeStatement(ws.loc, new CompoundStatement(ws.loc, es, ws), ws.endloc); in package() 3847 auto ss = new ScopeStatement(gs.loc, gs, gs.loc); in package() 4551 s = new ScopeStatement(loc, s, fs.endloc); in makeTupleForeach()
|
| H A D | parse.d | 5718 s = new AST.ScopeStatement(loc, s, token.loc); 5726 s = new AST.ScopeStatement(loc, s, token.loc); 5813 s = new AST.ScopeStatement(loc, s, token.loc); 5837 s = new AST.ScopeStatement(loc, s, token.loc); 5863 s = new AST.ScopeStatement(loc, s, token.loc); 5889 s = new AST.ScopeStatement(loc, s, token.loc); 6117 s = new AST.ScopeStatement(loc, s, token.loc); 6215 s = new AST.ScopeStatement(loc, s, token.loc); 6248 s = new AST.ScopeStatement(loc, s, token.loc); 6454 s = new AST.ScopeStatement(loc, s, token.loc);
|
| H A D | cparse.d | 336 s = new AST.ScopeStatement(loc, s, token.loc); 374 s = new AST.ScopeStatement(loc, s, token.loc); 520 s = new AST.ScopeStatement(loc, s, token.loc); 541 s = new AST.ScopeStatement(loc, s, token.loc);
|
| H A D | parsetimevisitor.d | 98 void visit(AST.ScopeStatement s) { visit(cast(AST.Statement)s); } in ParseTimeVisitor()
|
| H A D | transitivevisitor.d | 105 override void visit(AST.ScopeStatement s) in ParseVisitMethods()
|
| H A D | func.d | 2410 s.push(new ScopeStatement(r.loc, r, r.loc)); in buildEnsureRequire() 2437 … s.push(new ScopeStatement(rloc, new CompoundStatement(rloc, sdecl, r.ensure), rloc)); in buildEnsureRequire()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | statement.h | 39 class ScopeStatement; variable 95 virtual ScopeStatement *isScopeStatement() { return NULL; } in isScopeStatement() 217 class ScopeStatement : public Statement 223 ScopeStatement(Loc loc, Statement *s, Loc endloc); 225 ScopeStatement *isScopeStatement() { return this; } in isScopeStatement()
|
| H A D | statement.c | 223 void visit(ScopeStatement *) {} in hasCode() 663 ScopeStatement::ScopeStatement(Loc loc, Statement *s, Loc endloc) in ScopeStatement() function 670 Statement *ScopeStatement::syntaxCopy() in syntaxCopy() 672 return new ScopeStatement(loc, statement ? statement->syntaxCopy() : NULL, endloc); in syntaxCopy() 675 ReturnStatement *ScopeStatement::isReturnStatement() in isReturnStatement() 682 bool ScopeStatement::hasBreak() in hasBreak() 688 bool ScopeStatement::hasContinue() in hasContinue()
|
| H A D | arraytypes.h | 54 typedef Array<class ScopeStatement *> ScopeStatements;
|
| H A D | sapply.c | 70 void visit(ScopeStatement *s) in visit()
|
| H A D | blockexit.c | 140 void visit(ScopeStatement *s) in blockExit()
|
| H A D | parse.c | 5013 s = new ScopeStatement(loc, s, token.loc); in parseStatement() 5021 s = new ScopeStatement(loc, s, token.loc); in parseStatement() 5096 s = new ScopeStatement(loc, s, token.loc); in parseStatement() 5121 s = new ScopeStatement(loc, s, token.loc); in parseStatement() 5145 s = new ScopeStatement(loc, s, token.loc); in parseStatement() 5171 s = new ScopeStatement(loc, s, token.loc); in parseStatement() 5439 s = new ScopeStatement(loc, s, token.loc); in parseStatement() 5525 s = new ScopeStatement(loc, s, token.loc); in parseStatement() 5562 s = new ScopeStatement(loc, s, token.loc); in parseStatement() 5852 s = new ScopeStatement(loc, s, token.loc); in parseStatement()
|
| H A D | statementsem.c | 180 body = new ScopeStatement(Loc(), body, Loc()); in visit() 305 void visit(ScopeStatement *ss) in visit() 434 s = new ScopeStatement(fs->loc, s, fs->endloc); in visit() 727 fwdstmt = new ScopeStatement(loc, fwdstmt, fs->endloc); in makeTupleForeachBody() 3370 … Statement *ss = new ScopeStatement(ws->loc, new CompoundStatement(ws->loc, es, ws), ws->endloc); in visit() 3654 ScopeStatement *ss = new ScopeStatement(gs->loc, gs, gs->loc); in visit()
|
| H A D | visitor.h | 23 class ScopeStatement; variable 317 virtual void visit(ScopeStatement *s) { visit((Statement *)s); } in visit()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/ |
| H A D | toir.cc | 1131 void visit (ScopeStatement *s) in visit()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/ |
| H A D | toir.cc | 1118 void visit (ScopeStatement *s) in visit()
|