Home | History | Annotate | Download | only in slang

Lines Matching refs:CompoundStmt

95 // This function constructs a new CompoundStmt from the input StmtList.
96 static clang::CompoundStmt* BuildCompoundStmt(clang::ASTContext &C,
111 clang::CompoundStmt *CS = new(C) clang::CompoundStmt(
120 clang::CompoundStmt *CS,
124 clang::CompoundStmt::body_iterator bI = CS->body_begin();
125 clang::CompoundStmt::body_iterator bE = CS->body_end();
154 // When S is NULL, we are appending to the end of the CompoundStmt.
195 // This should always be a CompoundStmt.
219 // current outermost CompoundStmt.
237 clang::CompoundStmt *CS =
244 clang::CompoundStmt *CS =
245 llvm::dyn_cast<clang::CompoundStmt>(mOuterStmt);
251 void VisitCompoundStmt(clang::CompoundStmt *CS);
288 void DestructorVisitor::VisitCompoundStmt(clang::CompoundStmt *CS) {
457 // (CompoundStmt
592 clang::CompoundStmt *CS = new(C) clang::CompoundStmt(
758 clang::CompoundStmt *CS = new(C) clang::CompoundStmt(
977 clang::CompoundStmt *CS =
978 new(C) clang::CompoundStmt(C, StmtArray, StmtCtr, Loc, Loc);
1087 clang::CompoundStmt *CS = new(C) clang::CompoundStmt(
1459 void RSObjectRefCount::VisitCompoundStmt(clang::CompoundStmt *CS) {
1536 clang::CompoundStmt *CS = BuildCompoundStmt(mCtx, StmtList, loc);