HomeSort by relevance Sort by last modified time
    Searched refs:CXXForRangeStmt (Results 1 - 17 of 17) sorted by null

  /external/clang/include/clang/AST/
StmtCXX.h 122 /// CXXForRangeStmt - This represents C++0x [stmt.ranged]'s ranged for
128 class CXXForRangeStmt : public Stmt {
137 CXXForRangeStmt(DeclStmt *Range, DeclStmt *BeginEnd,
140 CXXForRangeStmt(EmptyShell Empty) : Stmt(CXXForRangeStmtClass, Empty) { }
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/AST/
Stmt.cpp 790 CXXForRangeStmt::CXXForRangeStmt(DeclStmt *Range, DeclStmt *BeginEndStmt,
803 Expr *CXXForRangeStmt::getRangeInit() {
810 const Expr *CXXForRangeStmt::getRangeInit() const {
811 return const_cast<CXXForRangeStmt*>(this)->getRangeInit();
814 VarDecl *CXXForRangeStmt::getLoopVariable() {
816 assert(LV && "No loop variable in CXXForRangeStmt");
820 const VarDecl *CXXForRangeStmt::getLoopVariable() const {
821 return const_cast<CXXForRangeStmt*>(this)->getLoopVariable();
    [all...]
StmtPrinter.cpp 324 void StmtPrinter::VisitCXXForRangeStmt(CXXForRangeStmt *Node) {
    [all...]
StmtProfile.cpp 195 void StmtProfiler::VisitCXXForRangeStmt(const CXXForRangeStmt *S) {
    [all...]
ExprConstant.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 423 if (cast<CXXForRangeStmt>(Parent)->getBody() == S)
    [all...]
CoreEngine.cpp 389 HandleBranch(cast<CXXForRangeStmt>(Term)->getCond(), Term, B, Pred);
  /external/clang/lib/CodeGen/
CGStmt.cpp 168 EmitCXXForRangeStmt(cast<CXXForRangeStmt>(*S));
709 void CodeGenFunction::EmitCXXForRangeStmt(const CXXForRangeStmt &S) {
    [all...]
CodeGenFunction.h 51 class CXXForRangeStmt;
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 365 CFGBlock *VisitCXXForRangeStmt(CXXForRangeStmt *S);
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 842 const internal::VariadicDynCastAllOfMatcher<Stmt, CXXForRangeStmt> forRangeStmt;
    [all...]
  /external/clang/tools/libclang/
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]
ASTWriterStmt.cpp     [all...]

Completed in 2365 milliseconds