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

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
arraytypes.h 55 typedef Array<class ScopeStatement *> ScopeStatements;
arraytypes.d 49 alias ScopeStatements = Array!(ScopeStatement);
statement.h 35 class ScopeStatement;
130 ScopeStatement *isScopeStatement() { return stmt == STMTscope ? (ScopeStatement*)this : NULL; }
251 class ScopeStatement : public Statement
257 ScopeStatement *syntaxCopy();
sapply.d 85 override void visit(ScopeStatement s)
statement_rewrite_walker.d 78 override void visit(ScopeStatement s)
foreachvar.d 201 void visitScope(ScopeStatement s)
statement.d 311 override void visit(ScopeStatement s)
371 inout(ScopeStatement) isScopeStatement() { return stmt == STMT.Scope ? cast(typeof(return))this : null; }
699 extern (C++) class ScopeStatement : Statement
711 override ScopeStatement syntaxCopy()
713 return new ScopeStatement(loc, statement ? statement.syntaxCopy() : null, endloc);
725 //printf("ScopeStatement::hasBreak() %s\n", toChars());
blockexit.d 192 override void visit(ScopeStatement s)
194 //printf("ScopeStatement::blockExit(%p)\n", s.statement);
visitor.h 23 class ScopeStatement;
392 virtual void visit(ScopeStatement *s) { visit((Statement *)s); }
statementsem.d 333 _body = new ScopeStatement(Loc.initial, _body, Loc.initial);
455 override void visit(ScopeStatement ss)
457 //printf("ScopeStatement::semantic(sc = %p)\n", sc);
607 s = new ScopeStatement(fs.loc, s, fs.endloc);
881 foreach (ScopeStatement ss; *fs.gotos)
3521 Statement ss = new ScopeStatement(ws.loc, new CompoundStatement(ws.loc, es, ws), ws.endloc);
3847 auto ss = new ScopeStatement(gs.loc, gs, gs.loc);
4551 s = new ScopeStatement(loc, s, fs.endloc);
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)
    [all...]
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);
parsetimevisitor.d 98 void visit(AST.ScopeStatement s) { visit(cast(AST.Statement)s); }
transitivevisitor.d 105 override void visit(AST.ScopeStatement s)
107 //printf("Visiting ScopeStatement\n");
func.d 2410 s.push(new ScopeStatement(r.loc, r, r.loc));
2437 s.push(new ScopeStatement(rloc, new CompoundStatement(rloc, sdecl, r.ensure), rloc));
semantic3.d 1410 auto ss = new ScopeStatement(ctor.loc, sexp, ctor.loc);
ob.d 438 void visitScope(ScopeStatement s)
hdrgen.d 239 override void visit(ScopeStatement s)
dinterpret.d 926 override void visit(ScopeStatement s)
930 printf("%s ScopeStatement::interpret()\n", s.loc.toChars());
1559 // and jump inside will be handled by the ScopeStatement == finalbody.
  /src/external/gpl3/gcc.old/dist/gcc/d/
toir.cc 1131 void visit (ScopeStatement *s)

Completed in 111 milliseconds