HomeSort by: relevance | last modified time | path
    Searched defs:ForStmt (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp 1006 ForStmt::ForStmt(const ASTContext &C, Stmt *Init, Expr *Cond, VarDecl *condVar,
1019 VarDecl *ForStmt::getConditionVariable() const {
1027 void ForStmt::setConditionVariable(const ASTContext &C, VarDecl *V) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 222 friend class ForStmt;
1289 /// and declarations (variables, types). Another example is ForStmt, where
2502 /// ForStmt - This represents a 'for (init;cond;inc)' stmt. Note that any of
2503 /// the init/cond/inc parts of the ForStmt will be null if they were not
2505 class ForStmt : public Stmt {
2511 ForStmt(const ASTContext &C, Stmt *Init, Expr *Cond, VarDecl *condVar,
2516 explicit ForStmt(EmptyShell Empty) : Stmt(ForStmtClass, Empty) {}
2531 /// If this ForStmt has a condition variable, return the faux DeclStmt

Completed in 70 milliseconds