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

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
arraytypes.h 57 typedef Array<class GotoCaseStatement *> GotoCaseStatements;
arraytypes.d 50 alias GotoCaseStatements = Array!(GotoCaseStatement);
statement.h 141 GotoCaseStatement *isGotoCaseStatement() { return stmt == STMTgotoCase ? (GotoCaseStatement*)this : NULL; }
438 GotoCaseStatements gotoCases; // array of unresolved GotoCaseStatement's
499 class GotoCaseStatement : public Statement
505 GotoCaseStatement *syntaxCopy();
statement.d 383 inout(GotoCaseStatement) isGotoCaseStatement() { return stmt == STMT.GotoCase ? cast(typeof(return))this : null; }
1186 GotoCaseStatements gotoCases; /// array of unresolved GotoCaseStatement's
1366 extern (C++) final class GotoCaseStatement : Statement
1378 override GotoCaseStatement syntaxCopy()
1380 return new GotoCaseStatement(loc, exp ? exp.syntaxCopy() : null);
blockexit.d 349 override void visit(GotoCaseStatement s)
visitor.h 40 class GotoCaseStatement;
414 virtual void visit(GotoCaseStatement *s) { visit((Statement *)s); }
parsetimevisitor.d 120 void visit(AST.GotoCaseStatement s) { visit(cast(AST.Statement)s); }
transitivevisitor.d 241 override void visit(AST.GotoCaseStatement s)
243 //printf("Visiting GotoCaseStatement\n");
statementsem.d 2570 GotoCaseStatement gcs = sw.gotoCases[i];
2757 override void visit(GotoCaseStatement gcs)
ob.d 648 void visitGotoCase(GotoCaseStatement s)
hdrgen.d 573 override void visit(GotoCaseStatement s)
dinterpret.d 1391 override void visit(GotoCaseStatement s)
1395 printf("%s GotoCaseStatement::interpret()\n", s.loc.toChars());
parse.d 6304 s = new AST.GotoCaseStatement(loc, exp);
  /src/external/gpl3/gcc.old/dist/gcc/d/
toir.cc 936 void visit (GotoCaseStatement *s)

Completed in 53 milliseconds