Home
last modified time | relevance | path

Searched defs:WhileStmt (Results 1 – 9 of 9) sorted by relevance

/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/stmt/
DWhileStmt.java33 public final class WhileStmt extends Statement implements NodeWithBody<WhileStmt> { class
39 public WhileStmt() { in WhileStmt() method in WhileStmt
42 public WhileStmt(final Expression condition, final Statement body) { in WhileStmt() method in WhileStmt
47 public WhileStmt(Range range, final Expression condition, final Statement body) { in WhileStmt() method in WhileStmt
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/
DWhileStmt.java31 public final class WhileStmt extends Statement { class
37 public WhileStmt() { in WhileStmt() method in WhileStmt
40 public WhileStmt(final Expression condition, final Statement body) { in WhileStmt() method in WhileStmt
45 …public WhileStmt(final int beginLine, final int beginColumn, final int endLine, final int endColum… in WhileStmt() method in WhileStmt
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
DWhileStmt.java47 public class WhileStmt extends Statement implements NodeWithBody<WhileStmt>, NodeWithCondition<Whil… class
53 public WhileStmt() { in WhileStmt() method in WhileStmt
58 public WhileStmt(final Expression condition, final Statement body) { in WhileStmt() method in WhileStmt
66 public WhileStmt(TokenRange tokenRange, Expression condition, Statement body) { in WhileStmt() method in WhileStmt
/external/starlark-go/syntax/
Dsyntax.go335 type WhileStmt struct { struct
336 commentsRef
337 While Position
338 Cond Expr
339 Body []Stmt
342 func (x *WhileStmt) Span() (start, end Position) {
/external/clang/lib/CodeGen/
DCodeGenPGO.cpp81 WhileStmt, enumerator
/external/clang/lib/AST/
DStmt.cpp862 WhileStmt::WhileStmt(const ASTContext &C, VarDecl *Var, Expr *cond, Stmt *body, in WhileStmt() function in WhileStmt
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h3409 AST_POLYMORPHIC_SUPPORTED_TYPES(IfStmt, ForStmt, WhileStmt, DoStmt, in AST_POLYMORPHIC_MATCHER_P() argument
3540 WhileStmt, in AST_POLYMORPHIC_MATCHER_P() argument
/external/clang/unittests/ASTMatchers/
DASTMatchersTraversalTest.cpp972 StatementMatcher WhileStmt = in TEST() local
/external/clang/include/clang/AST/
DStmt.h1056 explicit WhileStmt(EmptyShell Empty) : Stmt(WhileStmtClass, Empty) { } in WhileStmt() function