HomeSort by relevance Sort by last modified time
    Searched defs:WhileStmt (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/AST/
Stmt.cpp 703 WhileStmt::WhileStmt(ASTContext &C, VarDecl *Var, Expr *cond, Stmt *body,
712 VarDecl *WhileStmt::getConditionVariable() const {
720 void WhileStmt::setConditionVariable(ASTContext &C, VarDecl *V) {
  /external/clang/include/clang/AST/
Stmt.h 867 /// WhileStmt - This represents a 'while' stmt.
869 class WhileStmt : public Stmt {
874 WhileStmt(ASTContext &C, VarDecl *Var, Expr *cond, Stmt *body,
878 explicit WhileStmt(EmptyShell Empty) : Stmt(WhileStmtClass, Empty) { }
891 /// If this WhileStmt has a condition variable, return the faux DeclStmt
913 static bool classof(const WhileStmt *) { return true; }
    [all...]

Completed in 135 milliseconds