Home | History | Annotate | Download | only in AST

Lines Matching refs:CompoundStmt

65     void PrintRawCompoundStmt(CompoundStmt *S);
115 void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) {
142 void StmtPrinter::VisitCompoundStmt(CompoundStmt *Node) {
186 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(If->getThen())) {
199 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Else)) {
226 // Pretty print compoundstmt bodies (very common).
227 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
249 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
283 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
302 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
453 if (CompoundStmt *TS = dyn_cast<CompoundStmt>(Node->getTryBody())) {
466 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(catchStmt->getCatchBody())) {
475 PrintRawCompoundStmt(dyn_cast<CompoundStmt>(FS->getFinallyBody()));
506 PrintRawCompoundStmt(dyn_cast<CompoundStmt>(Node->getSubStmt()));
517 PrintRawCompoundStmt(cast<CompoundStmt>(Node->getHandlerBlock()));
1704 CompoundStmt *Body = Node->getBody();