Searched refs:CompoundDeclarationStatement (Results 1 – 19 of 19) sorted by relevance
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | statement.h | 160 …CompoundDeclarationStatement *isCompoundDeclarationStatement() { return stmt == STMTcompoundDeclar… in isCompoundDeclarationStatement() 229 class CompoundDeclarationStatement : public CompoundStatement 232 CompoundDeclarationStatement *syntaxCopy();
|
H A D | statement_rewrite_walker.d | 61 override void visit(CompoundDeclarationStatement s) in visit()
|
H A D | foreachvar.d | 188 void visitCompoundDeclaration(CompoundDeclarationStatement s) in foreachExpAndVar()
|
H A D | statement.d | 403 …inout(CompoundDeclarationStatement) isCompoundDeclarationStatement() { return stmt == STMT.Compoun… in isCompoundDeclarationStatement() 634 extern (C++) final class CompoundDeclarationStatement : CompoundStatement 641 override CompoundDeclarationStatement syntaxCopy() in syntaxCopy() 648 return new CompoundDeclarationStatement(loc, a); in syntaxCopy()
|
H A D | visitor.h | 21 class CompoundDeclarationStatement; variable 426 virtual void visit(CompoundDeclarationStatement *s) { visit((CompoundStatement *)s); } in visit()
|
H A D | parsetimevisitor.d | 132 void visit(AST.CompoundDeclarationStatement s) { visit(cast(AST.CompoundStatement)s); } in ParseTimeVisitor()
|
H A D | transitivevisitor.d | 83 override void visit(AST.CompoundDeclarationStatement s) in ParseVisitMethods()
|
H A D | ob.d | 411 void visitCompoundDeclaration(CompoundDeclarationStatement s) in toObNodes()
|
H A D | statementsem.d | 1104 Statement forinit = new CompoundDeclarationStatement(loc, cs); in package() 1794 Statement forinit = new CompoundDeclarationStatement(loc, cs); in package()
|
H A D | cparse.d | 324 s = new AST.CompoundDeclarationStatement(loc, as);
|
H A D | hdrgen.d | 199 override void visit(CompoundDeclarationStatement s) in visit()
|
H A D | parse.d | 5803 s = new AST.CompoundDeclarationStatement(loc, as);
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
H A D | statement.c | 613 CompoundDeclarationStatement::CompoundDeclarationStatement(Loc loc, Statements *s) in CompoundDeclarationStatement() function 619 Statement *CompoundDeclarationStatement::syntaxCopy() in syntaxCopy() 628 return new CompoundDeclarationStatement(loc, a); in syntaxCopy()
|
H A D | statement.h | 193 class CompoundDeclarationStatement : public CompoundStatement 196 CompoundDeclarationStatement(Loc loc, Statements *s);
|
H A D | visitor.h | 21 class CompoundDeclarationStatement; variable 315 virtual void visit(CompoundDeclarationStatement *s) { visit((CompoundStatement *)s); } in visit()
|
H A D | statementsem.c | 1170 Statement *forinit = new CompoundDeclarationStatement(loc, cs); in visit() 1863 Statement *forinit = new CompoundDeclarationStatement(loc, cs); in visit()
|
H A D | hdrgen.c | 141 void visit(CompoundDeclarationStatement *s) in visit()
|
H A D | func.c | 86 void visit(CompoundDeclarationStatement *s) { visit((CompoundStatement *)s); } in visit()
|
H A D | parse.c | 5086 s = new CompoundDeclarationStatement(loc, as); in parseStatement()
|