Home | History | Annotate | Download | only in slang

Lines Matching full:clang

26     clang::Stmt *OuterStmt,
27 clang::Stmt *OldStmt,
28 clang::Stmt *NewStmt) {
35 mOldExpr = llvm::dyn_cast<clang::Expr>(OldStmt);
37 mNewExpr = llvm::dyn_cast<clang::Expr>(NewStmt);
42 void RSASTReplace::ReplaceInCompoundStmt(clang::CompoundStmt *CS) {
43 clang::Stmt **UpdatedStmtList = new clang::Stmt*[CS->size()];
46 clang::CompoundStmt::body_iterator bI = CS->body_begin();
47 clang::CompoundStmt::body_iterator bE = CS->body_end();
62 void RSASTReplace::VisitStmt(clang::Stmt *S) {
66 for (clang::Stmt::child_iterator I = S->child_begin(), E = S->child_end();
69 if (clang::Stmt *Child = *I) {
77 void RSASTReplace::VisitCompoundStmt(clang::CompoundStmt *CS) {
82 void RSASTReplace::VisitCaseStmt(clang::CaseStmt *CS) {
90 void RSASTReplace::VisitDefaultStmt(clang::DefaultStmt *DS) {
98 void RSASTReplace::VisitDoStmt(clang::DoStmt *DS) {
108 void RSASTReplace::VisitForStmt(clang::ForStmt *FS) {
122 void RSASTReplace::VisitIfStmt(clang::IfStmt *IS) {
134 void RSASTReplace::VisitSwitchCase(clang::SwitchCase *SC) {
139 void RSASTReplace::VisitSwitchStmt(clang::SwitchStmt *SS) {
147 void RSASTReplace::VisitWhileStmt(clang::WhileStmt *WS) {