Searched refs:DS (Results 1 – 6 of 6) sorted by relevance
/frameworks/compile/slang/ |
D | slang_rs_ast_replace.cpp | 90 void RSASTReplace::VisitDefaultStmt(clang::DefaultStmt *DS) { in VisitDefaultStmt() argument 91 if (matchesStmt(DS->getSubStmt())) { in VisitDefaultStmt() 92 DS->setSubStmt(mNewStmt); in VisitDefaultStmt() 94 VisitStmt(DS); in VisitDefaultStmt() 98 void RSASTReplace::VisitDoStmt(clang::DoStmt *DS) { in VisitDoStmt() argument 99 if (matchesExpr(DS->getCond())) { in VisitDoStmt() 100 DS->setCond(mNewExpr); in VisitDoStmt() 101 } else if (matchesStmt(DS->getBody())) { in VisitDoStmt() 102 DS->setBody(mNewStmt); in VisitDoStmt() 104 VisitStmt(DS); in VisitDoStmt()
|
D | slang_rs_ast_replace.h | 71 void VisitDefaultStmt(clang::DefaultStmt *DS); 72 void VisitDoStmt(clang::DoStmt *DS);
|
D | slang_rs_check_ast.cpp | 220 void RSCheckAST::VisitDeclStmt(clang::DeclStmt *DS) { in VisitDeclStmt() argument 221 if (!SlangRS::IsLocInRSHeaderFile(DS->getLocStart(), mSM)) { in VisitDeclStmt() 222 for (clang::DeclStmt::decl_iterator I = DS->decl_begin(), in VisitDeclStmt() 223 E = DS->decl_end(); in VisitDeclStmt()
|
D | slang_rs_object_ref_count.h | 63 clang::DeclStmt *DS, 144 void VisitDeclStmt(clang::DeclStmt *DS);
|
D | slang_rs_object_ref_count.cpp | 256 void VisitDefaultStmt(clang::DefaultStmt *DS); 257 void VisitDoStmt(clang::DoStmt *DS); 311 void DestructorVisitor::VisitDefaultStmt(clang::DefaultStmt *DS) { in VisitDefaultStmt() argument 312 VisitStmt(DS); in VisitDefaultStmt() 315 void DestructorVisitor::VisitDoStmt(clang::DoStmt *DS) { in VisitDoStmt() argument 317 VisitStmt(DS); in VisitDoStmt() 1124 clang::DeclStmt *DS, in AppendRSObjectInit() argument 1158 AppendAfterStmt(C, mCS, DS, StmtList); in AppendRSObjectInit() 1221 AppendAfterStmt(C, mCS, DS, StmtList); in AppendRSObjectInit() 1436 void RSObjectRefCount::VisitDeclStmt(clang::DeclStmt *DS) { in VisitDeclStmt() argument [all …]
|
D | slang_rs_check_ast.h | 68 void VisitDeclStmt(clang::DeclStmt *DS);
|