Searched defs:ForStmt (Results 1 - 3 of 3) sorted by relevance

/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp3.cpp94 constexpr int ForStmt() { function
/external/clang/lib/AST/
H A DStmt.cpp873 ForStmt::ForStmt(ASTContext &C, Stmt *Init, Expr *Cond, VarDecl *condVar, function in class:ForStmt
885 VarDecl *ForStmt::getConditionVariable() const {
893 void ForStmt::setConditionVariable(ASTContext &C, VarDecl *V) {
/external/clang/include/clang/AST/
H A DStmt.h443 /// and declarations (variables, types). Another example is ForStmt, where
1111 /// ForStmt - This represents a 'for (init;cond;inc)' stmt. Note that any of
1112 /// the init/cond/inc parts of the ForStmt will be null if they were not
1115 class ForStmt : public Stmt { class in namespace:clang
1122 ForStmt(ASTContext &C, Stmt *Init, Expr *Cond, VarDecl *condVar, Expr *Inc,
1126 explicit ForStmt(EmptyShell Empty) : Stmt(ForStmtClass, Empty) { } function in class:clang::ForStmt
1141 /// If this ForStmt has a condition variable, return the faux DeclStmt
1174 static bool classof(const ForStmt *) { return true; }

Completed in 268 milliseconds