/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/Syntax/ |
H A D | Nodes.h | 292 class WhileStatement final : public Statement { 294 WhileStatement() : Statement(NodeKind::WhileStatement) {} in WhileStatement() function
|
H A D | Nodes.td | 230 def WhileStatement : External<Statement> {}
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
H A D | statement.c | 761 WhileStatement::WhileStatement(Loc loc, Expression *c, Statement *b, Loc endloc) in WhileStatement() function 769 Statement *WhileStatement::syntaxCopy() in syntaxCopy() 771 return new WhileStatement(loc, in syntaxCopy() 777 bool WhileStatement::hasBreak() in hasBreak() 782 bool WhileStatement::hasContinue() in hasContinue()
|
H A D | sapply.c | 74 void visit(WhileStatement *s) in visit()
|
H A D | statement.h | 247 class WhileStatement : public Statement 254 WhileStatement(Loc loc, Expression *c, Statement *b, Loc endloc);
|
H A D | blockexit.c | 146 void visit(WhileStatement *) in blockExit()
|
H A D | visitor.h | 25 class WhileStatement; variable 319 virtual void visit(WhileStatement *s) { visit((Statement *)s); } in visit()
|
H A D | hdrgen.c | 196 void visit(WhileStatement *s) in visit()
|
H A D | dinterpret.c | 455 void visit(WhileStatement *) in visit() argument 1315 void visit(WhileStatement *) in visit() argument
|
H A D | func.c | 103 void visit(WhileStatement *s) in visit()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/ |
H A D | Synthesis.cpp | 124 case syntax::NodeKind::WhileStatement: in allocateTree() 125 return new (A.getAllocator()) syntax::WhileStatement; in allocateTree()
|
H A D | Nodes.cpp | 285 syntax::Leaf *syntax::WhileStatement::getWhileKeyword() { in getWhileKeyword() 290 syntax::Statement *syntax::WhileStatement::getBody() { in getBody()
|
H A D | BuildTree.cpp | 1484 new (allocator()) syntax::WhileStatement, S); in WalkUpFromWhileStmt()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | statement_rewrite_walker.d | 84 override void visit(WhileStatement s) in visit()
|
H A D | sapply.d | 90 override void visit(WhileStatement s) in visit()
|
H A D | statement.h | 275 class WhileStatement : public Statement 283 WhileStatement *syntaxCopy();
|
H A D | statement.d | 389 …inout(WhileStatement) isWhileStatement() { return stmt == STMT.While ? cast(type… in isWhileStatement() 784 extern (C++) final class WhileStatement : Statement 800 override WhileStatement syntaxCopy() in syntaxCopy() 802 return new WhileStatement(loc, in syntaxCopy()
|
H A D | blockexit.d | 198 override void visit(WhileStatement s) in blockExit()
|
H A D | visitor.h | 25 class WhileStatement; variable 397 virtual void visit(WhileStatement *s) { visit((Statement *)s); } in visit()
|
H A D | parsetimevisitor.d | 103 void visit(AST.WhileStatement s) { visit(cast(AST.Statement)s); } in ParseTimeVisitor()
|
H A D | transitivevisitor.d | 112 override void visit(AST.WhileStatement s) in ParseVisitMethods()
|
H A D | cparse.d | 387 s = new AST.WhileStatement(loc, condition, _body, endloc, null);
|
H A D | hdrgen.d | 251 override void visit(WhileStatement s) in visit()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/d/ |
H A D | toir.cc | 621 void visit (WhileStatement *) in visit() argument
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/ |
H A D | toir.cc | 632 void visit (WhileStatement *) in visit() argument
|