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.cpp851 ForStmt::ForStmt(const ASTContext &C, Stmt *Init, Expr *Cond, VarDecl *condVar, function in class:ForStmt
863 VarDecl *ForStmt::getConditionVariable() const {
871 void ForStmt::setConditionVariable(const ASTContext &C, VarDecl *V) {
/external/clang/include/clang/AST/
H A DStmt.h440 /// and declarations (variables, types). Another example is ForStmt, where
1131 /// ForStmt - This represents a 'for (init;cond;inc)' stmt. Note that any of
1132 /// the init/cond/inc parts of the ForStmt will be null if they were not
1135 class ForStmt : public Stmt { class in namespace:clang
1142 ForStmt(const ASTContext &C, Stmt *Init, Expr *Cond, VarDecl *condVar,
1147 explicit ForStmt(EmptyShell Empty) : Stmt(ForStmtClass, Empty) { } function in class:clang::ForStmt
1162 /// If this ForStmt has a condition variable, return the faux DeclStmt

Completed in 254 milliseconds