HomeSort by relevance Sort by last modified time
    Searched refs:CXXForRangeStmt (Results 1 - 19 of 19) 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) { }
DataRecursiveASTVisitor.h     [all...]
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/AST/
Stmt.cpp 788 CXXForRangeStmt::CXXForRangeStmt(DeclStmt *Range, DeclStmt *BeginEndStmt,
801 Expr *CXXForRangeStmt::getRangeInit() {
808 const Expr *CXXForRangeStmt::getRangeInit() const {
809 return const_cast<CXXForRangeStmt*>(this)->getRangeInit();
812 VarDecl *CXXForRangeStmt::getLoopVariable() {
814 assert(LV && "No loop variable in CXXForRangeStmt");
818 const VarDecl *CXXForRangeStmt::getLoopVariable() const {
819 return const_cast<CXXForRangeStmt*>(this)->getLoopVariable();
    [all...]
StmtPrinter.cpp 311 void StmtPrinter::VisitCXXForRangeStmt(CXXForRangeStmt *Node) {
    [all...]
StmtProfile.cpp 194 void StmtProfiler::VisitCXXForRangeStmt(const CXXForRangeStmt *S) {
    [all...]
ExprConstant.cpp     [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 937 const internal::VariadicDynCastAllOfMatcher<Stmt, CXXForRangeStmt> forRangeStmt;
947 AST_MATCHER_P(CXXForRangeStmt, hasLoopVariable, internal::Matcher<VarDecl>,
961 AST_MATCHER_P(CXXForRangeStmt, hasRangeInit, internal::Matcher<Expr>,
    [all...]
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 238 CXXForRangeStmt,
324 return PGOHash::CXXForRangeStmt;
562 void VisitCXXForRangeStmt(const CXXForRangeStmt *S) {
    [all...]
CGStmt.cpp 171 EmitCXXForRangeStmt(cast<CXXForRangeStmt>(*S));
435 EmitCXXForRangeStmt(cast<CXXForRangeStmt>(*SubStmt), S.getAttrs());
885 CodeGenFunction::EmitCXXForRangeStmt(const CXXForRangeStmt &S,
    [all...]
CodeGenFunction.h 53 class CXXForRangeStmt;
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 459 if (cast<CXXForRangeStmt>(Parent)->getBody() == S)
    [all...]
CoreEngine.cpp 389 HandleBranch(cast<CXXForRangeStmt>(Term)->getCond(), Term, B, Pred);
  /external/clang/lib/Analysis/
CFG.cpp 368 CFGBlock *VisitCXXForRangeStmt(CXXForRangeStmt *S);
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]
AnalysisBasedWarnings.cpp 793 Range = cast<CXXForRangeStmt>(Term)->getRangeInit()->getSourceRange();
    [all...]
TreeTransform.h     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]
ASTWriterStmt.cpp     [all...]

Completed in 1140 milliseconds