Home | History | Annotate | Download | only in AST

Lines Matching refs:CompoundStmt

67     void PrintRawCompoundStmt(CompoundStmt *S);
117 void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) {
144 void StmtPrinter::VisitCompoundStmt(CompoundStmt *Node) {
188 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(If->getThen())) {
201 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Else)) {
228 // Pretty print compoundstmt bodies (very common).
229 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
251 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
285 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
304 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
457 if (CompoundStmt *TS = dyn_cast<CompoundStmt>(Node->getTryBody())) {
470 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(catchStmt->getCatchBody())) {
479 PrintRawCompoundStmt(dyn_cast<CompoundStmt>(FS->getFinallyBody()));
510 PrintRawCompoundStmt(dyn_cast<CompoundStmt>(Node->getSubStmt()));
521 PrintRawCompoundStmt(cast<CompoundStmt>(Node->getHandlerBlock()));
2130 CompoundStmt *Body = Node->getBody();