Home | History | Annotate | Download | only in AST

Lines Matching refs:CompoundStmt

66     void PrintRawCompoundStmt(CompoundStmt *S);
116 void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) {
143 void StmtPrinter::VisitCompoundStmt(CompoundStmt *Node) {
187 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(If->getThen())) {
200 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Else)) {
227 // Pretty print compoundstmt bodies (very common).
228 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
250 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
284 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
303 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
456 if (CompoundStmt *TS = dyn_cast<CompoundStmt>(Node->getTryBody())) {
469 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(catchStmt->getCatchBody())) {
478 PrintRawCompoundStmt(dyn_cast<CompoundStmt>(FS->getFinallyBody()));
509 PrintRawCompoundStmt(dyn_cast<CompoundStmt>(Node->getSubStmt()));
520 PrintRawCompoundStmt(cast<CompoundStmt>(Node->getHandlerBlock()));
2000 CompoundStmt *Body = Node->getBody();