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.h356 const Stmt *getSubStmt() const { return SubStmt; } function in class:clang::ObjCAutoreleasePoolStmt
357 Stmt *getSubStmt() { return SubStmt; } function in class:clang::ObjCAutoreleasePoolStmt
H A DStmt.h648 Stmt *getSubStmt();
649 const Stmt *getSubStmt() const { function in class:clang::SwitchCase
650 return const_cast<SwitchCase*>(this)->getSubStmt();
689 Stmt *getSubStmt() { return SubExprs[SUBSTMT]; } function in class:clang::CaseStmt
697 const Stmt *getSubStmt() const { return SubExprs[SUBSTMT]; } function in class:clang::CaseStmt
707 while (const CaseStmt *CS2 = dyn_cast<CaseStmt>(CS->getSubStmt()))
710 return CS->getSubStmt()->getLocEnd();
733 Stmt *getSubStmt() { return SubStmt; } function in class:clang::DefaultStmt
734 const Stmt *getSubStmt() const { return SubStmt; } function in class:clang::DefaultStmt
778 Stmt *getSubStmt() { retur function in class:clang::LabelStmt
779 const Stmt *getSubStmt() const { return SubStmt; } function in class:clang::LabelStmt
828 Stmt *getSubStmt() { return SubStmt; } function in class:clang::AttributedStmt
829 const Stmt *getSubStmt() const { return SubStmt; } function in class:clang::AttributedStmt
[all...]
H A DExpr.h3376 CompoundStmt *getSubStmt() { return cast<CompoundStmt>(SubStmt); } function in class:clang::StringLiteral::OffsetOfExpr::StmtExpr
3377 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.cpp120 S = LS->getSubStmt();
122 S = SC->getSubStmt();
124 S = AS->getSubStmt();
911 Stmt *SwitchCase::getSubStmt() { function in class:SwitchCase
913 return cast<CaseStmt>(this)->getSubStmt();
914 return cast<DefaultStmt>(this)->getSubStmt();

Completed in 215 milliseconds