Home
last modified time | relevance | path

Searched refs:DS (Results 1 – 6 of 6) sorted by relevance

/frameworks/compile/slang/
Dslang_rs_ast_replace.cpp90 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()
Dslang_rs_ast_replace.h71 void VisitDefaultStmt(clang::DefaultStmt *DS);
72 void VisitDoStmt(clang::DoStmt *DS);
Dslang_rs_check_ast.cpp220 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()
Dslang_rs_object_ref_count.h63 clang::DeclStmt *DS,
144 void VisitDeclStmt(clang::DeclStmt *DS);
Dslang_rs_object_ref_count.cpp256 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 …]
Dslang_rs_check_ast.h68 void VisitDeclStmt(clang::DeclStmt *DS);