Searched defs:getSubStmt (Results 1 - 6 of 6) sorted by relevance

/external/clang/include/clang/AST/
H A DStmtObjC.h356 const Stmt *getSubStmt() const { return SubStmt; } function in class:clang::ObjCAutoreleasePoolStmt
357 Stmt *getSubStmt() { return SubStmt; } function in class:clang::ObjCAutoreleasePoolStmt
H A DStmtCXX.h275 CompoundStmt *getSubStmt() const { function in class:clang::MSDependentExistsStmt
H A DStmt.h663 Stmt *getSubStmt();
664 const Stmt *getSubStmt() const { function in class:clang::SwitchCase
665 return const_cast<SwitchCase*>(this)->getSubStmt();
704 Stmt *getSubStmt() { return SubExprs[SUBSTMT]; } function in class:clang::CaseStmt
712 const Stmt *getSubStmt() const { return SubExprs[SUBSTMT]; } function in class:clang::CaseStmt
722 while (const CaseStmt *CS2 = dyn_cast<CaseStmt>(CS->getSubStmt()))
725 return CS->getSubStmt()->getLocEnd();
748 Stmt *getSubStmt() { return SubStmt; } function in class:clang::DefaultStmt
749 const Stmt *getSubStmt() const { return SubStmt; } function in class:clang::DefaultStmt
797 Stmt *getSubStmt() { retur function in class:clang::LabelStmt
798 const Stmt *getSubStmt() const { return SubStmt; } function in class:clang::LabelStmt
853 Stmt *getSubStmt() { return SubStmt; } function in class:clang::AttributedStmt
854 const Stmt *getSubStmt() const { return SubStmt; } function in class:clang::AttributedStmt
[all...]
H A DExpr.h3462 CompoundStmt *getSubStmt() { return cast<CompoundStmt>(SubStmt); } function in class:clang::StringLiteral::OffsetOfExpr::StmtExpr
3463 const CompoundStmt *getSubStmt() const { return cast<CompoundStmt>(SubStmt); } function in class:clang::StringLiteral::OffsetOfExpr::StmtExpr
/external/clang/include/clang/Analysis/
H A DProgramPoint.h269 const Stmt *getSubStmt() const { return (const Stmt*) getData2(); } function in class:clang::PreStmt
/external/clang/lib/AST/
H A DStmt.cpp123 S = AS->getSubStmt();
142 S = LS->getSubStmt();
144 S = SC->getSubStmt();
146 S = AS->getSubStmt();
845 Stmt *SwitchCase::getSubStmt() { function in class:SwitchCase
847 return cast<CaseStmt>(this)->getSubStmt();
848 return cast<DefaultStmt>(this)->getSubStmt();

Completed in 166 milliseconds