Home | History | Annotate | Download | only in slang

Lines Matching refs:DS

90 void RSASTReplace::VisitDefaultStmt(clang::DefaultStmt *DS) {
91 if (matchesStmt(DS->getSubStmt())) {
92 DS->setSubStmt(mNewStmt);
94 VisitStmt(DS);
98 void RSASTReplace::VisitDoStmt(clang::DoStmt *DS) {
99 if (matchesExpr(DS->getCond())) {
100 DS->setCond(mNewExpr);
101 } else if (matchesStmt(DS->getBody())) {
102 DS->setBody(mNewStmt);
104 VisitStmt(DS);