/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | scope.h | 16 class SwitchStatement; variable 79 SwitchStatement *sw; // enclosing switch statement
|
H A D | statement.h | 149 …SwitchStatement *isSwitchStatement() { return stmt == STMTswitch ? (SwitchStatement… in isSwitchStatement() 428 class SwitchStatement : public Statement 444 SwitchStatement *syntaxCopy(); 492 SwitchStatement *sw;
|
H A D | statement_rewrite_walker.d | 124 override void visit(SwitchStatement s) in visit()
|
H A D | sapply.d | 125 override void visit(SwitchStatement s) in visit()
|
H A D | statement.d | 392 …inout(SwitchStatement) isSwitchStatement() { return stmt == STMT.Switch ? cast(type… in isSwitchStatement() 1177 extern (C++) final class SwitchStatement : Statement 1200 override SwitchStatement syntaxCopy() in syntaxCopy() 1202 return new SwitchStatement(loc, condition.syntaxCopy(), _body.syntaxCopy(), isFinal); in syntaxCopy() 1345 SwitchStatement sw;
|
H A D | foreachvar.d | 154 void visitSwitch(SwitchStatement s) in foreachExpAndVar()
|
H A D | blockexit.d | 316 override void visit(SwitchStatement s) in blockExit()
|
H A D | visitor.h | 35 class SwitchStatement; variable 407 virtual void visit(SwitchStatement *s) { visit((Statement *)s); } in visit()
|
H A D | dscope.d | 88 SwitchStatement sw; /// enclosing switch statement
|
H A D | parsetimevisitor.d | 113 void visit(AST.SwitchStatement s) { visit(cast(AST.Statement)s); } in ParseTimeVisitor()
|
H A D | transitivevisitor.d | 212 override void visit(AST.SwitchStatement s) in ParseVisitMethods()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
H A D | scope.h | 18 class SwitchStatement; variable 80 SwitchStatement *sw; // enclosing switch statement
|
H A D | statement.c | 1090 SwitchStatement::SwitchStatement(Loc loc, Expression *c, Statement *b, bool isFinal) in SwitchStatement() function 1104 Statement *SwitchStatement::syntaxCopy() in syntaxCopy() 1106 return new SwitchStatement(loc, in syntaxCopy() 1112 bool SwitchStatement::hasBreak() in hasBreak() 1117 static bool checkVar(SwitchStatement *s, VarDeclaration *vd) in checkVar() 1147 bool SwitchStatement::checkLabel() in checkLabel()
|
H A D | sapply.c | 102 void visit(SwitchStatement *s) in visit()
|
H A D | statement.h | 416 class SwitchStatement : public Statement 431 SwitchStatement(Loc loc, Expression *c, Statement *b, bool isFinal); 486 SwitchStatement *sw;
|
H A D | blockexit.c | 275 void visit(SwitchStatement *s) in blockExit()
|
H A D | visitor.h | 35 class SwitchStatement; variable 329 virtual void visit(SwitchStatement *s) { visit((Statement *)s); } in visit()
|
H A D | statementsem.c | 1730 s = new SwitchStatement(loc, e, s, false); in visit() 2186 void visit(SwitchStatement *ss) in visit() 2384 SwitchStatement *sw = sc->sw; in visit() 2517 SwitchStatement *sw = sc->sw; in visit()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/Syntax/ |
H A D | Nodes.h | 243 class SwitchStatement final : public Statement { 245 SwitchStatement() : Statement(NodeKind::SwitchStatement) {} in SwitchStatement() function
|
H A D | Nodes.td | 225 def SwitchStatement : External<Statement> {}
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/ |
H A D | Synthesis.cpp | 114 case syntax::NodeKind::SwitchStatement: in allocateTree() 115 return new (A.getAllocator()) syntax::SwitchStatement; in allocateTree()
|
H A D | Nodes.cpp | 221 syntax::Leaf *syntax::SwitchStatement::getSwitchKeyword() { in getSwitchKeyword() 226 syntax::Statement *syntax::SwitchStatement::getBody() { in getBody()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/ |
H A D | ChangeLog-2016 | 300 * toir.cc (IRVisitor::visit(SwitchStatement)): Likewise. 757 * toir.cc (IRVisitor::visit(SwitchStatement)): Set correct type for the 797 * toir.cc (IRVisitor::visit(SwitchStatement)): Build array of indexes
|
H A D | ChangeLog-2012 | 743 (SwitchStatement::toIR): Likewise. 824 * d-glue.cc (SwitchStatement::toIR): Update call to endCase.
|
H A D | toir.cc | 791 void visit (SwitchStatement *s) in visit()
|