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

/external/clang/include/clang/AST/
H A DStmtCXX.h274 CompoundStmt *getSubStmt() const { function in class:clang::MSDependentExistsStmt
H A DStmtObjC.h355 const Stmt *getSubStmt() const { return SubStmt; } function in class:clang::ObjCAutoreleasePoolStmt
356 Stmt *getSubStmt() { return SubStmt; } function in class:clang::ObjCAutoreleasePoolStmt
H A DStmt.h667 Stmt *getSubStmt();
668 const Stmt *getSubStmt() const { function in class:clang::SwitchCase
669 return const_cast<SwitchCase*>(this)->getSubStmt();
708 Stmt *getSubStmt() { return SubExprs[SUBSTMT]; } function in class:clang::CaseStmt
716 const Stmt *getSubStmt() const { return SubExprs[SUBSTMT]; } function in class:clang::CaseStmt
726 while (const CaseStmt *CS2 = dyn_cast<CaseStmt>(CS->getSubStmt()))
729 return CS->getSubStmt()->getLocEnd();
752 Stmt *getSubStmt() { return SubStmt; } function in class:clang::DefaultStmt
753 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
851 Stmt *getSubStmt() { return SubStmt; } function in class:clang::AttributedStmt
852 const Stmt *getSubStmt() const { return SubStmt; } function in class:clang::AttributedStmt
[all...]
H A DExpr.h3406 CompoundStmt *getSubStmt() { return cast<CompoundStmt>(SubStmt); } function in class:clang::StringLiteral::OffsetOfExpr::StmtExpr
3407 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.cpp115 S = LS->getSubStmt();
117 S = SC->getSubStmt();
119 S = AS->getSubStmt();
909 Stmt *SwitchCase::getSubStmt() { function in class:SwitchCase
911 return cast<CaseStmt>(this)->getSubStmt();
912 return cast<DefaultStmt>(this)->getSubStmt();

Completed in 103 milliseconds