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

/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp3.cpp154 constexpr int ForStmt() { function
/external/clang/lib/AST/
H A DStmt.cpp853 ForStmt::ForStmt(ASTContext &C, Stmt *Init, Expr *Cond, VarDecl *condVar, function in class:ForStmt
865 VarDecl *ForStmt::getConditionVariable() const {
873 void ForStmt::setConditionVariable(ASTContext &C, VarDecl *V) {
/external/clang/include/clang/AST/
H A DStmt.h438 /// and declarations (variables, types). Another example is ForStmt, where
1107 /// ForStmt - This represents a 'for (init;cond;inc)' stmt. Note that any of
1108 /// the init/cond/inc parts of the ForStmt will be null if they were not
1111 class ForStmt : public Stmt { class in namespace:clang
1118 ForStmt(ASTContext &C, Stmt *Init, Expr *Cond, VarDecl *condVar, Expr *Inc,
1122 explicit ForStmt(EmptyShell Empty) : Stmt(ForStmtClass, Empty) { } function in class:clang::ForStmt
1137 /// If this ForStmt has a condition variable, return the faux DeclStmt

Completed in 68 milliseconds