Searched refs:DoStmt (Results 1 - 25 of 26) sorted by relevance

12

/external/clang/lib/ARCMigrate/
H A DTransEmptyStatementsAndDealloc.cpp124 bool VisitDoStmt(DoStmt *S) {
H A DTransforms.cpp278 bool VisitDoStmt(DoStmt *S) {
/external/clang/lib/AST/
H A DParentMap.cpp187 return DirectChild == cast<DoStmt>(P)->getCond();
H A DStmtPrinter.cpp260 void StmtPrinter::VisitDoStmt(DoStmt *Node) {
H A DStmtProfile.cpp132 void StmtProfiler::VisitDoStmt(const DoStmt *S) {
H A DExprConstant.cpp3261 const DoStmt *DS = cast<DoStmt>(S);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocOverflowSecurityChecker.cpp181 void VisitDoStmt(DoStmt *S) {
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h891 const internal::VariadicDynCastAllOfMatcher<Stmt, DoStmt> doStmt;
2347 IfStmt, ForStmt, WhileStmt, DoStmt, ConditionalOperator),
2461 hasBody, AST_POLYMORPHIC_SUPPORTED_TYPES_3(DoStmt, ForStmt, WhileStmt),
/external/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp385 HandleBranch(cast<DoStmt>(Term)->getCond(), Term, B, Pred);
H A DBugReporter.cpp1888 return cast<DoStmt>(S)->getCond() == Cond;
/external/chromium_org/v8/tools/gcmole/
H A Dgcmole.cc891 VISIT(DoStmt);
1031 DECL_VISIT_STMT(DoStmt) {
/external/v8/tools/gcmole/
H A Dgcmole.cc893 VISIT(DoStmt);
1033 DECL_VISIT_STMT(DoStmt) {
/external/clang/lib/Analysis/
H A DCFG.cpp375 CFGBlock *VisitDoStmt(DoStmt *D);
1141 return VisitDoStmt(cast<DoStmt>(S));
1391 // containing a DoStmt, and the LHS doesn't create a new block, then we should
2469 CFGBlock *CFGBuilder::VisitDoStmt(DoStmt *D) {
3603 void VisitDoStmt(DoStmt *D) {
3990 E = cast<DoStmt>(Terminator)->getCond();
/external/clang/include/clang/AST/
H A DStmt.h1058 /// DoStmt - This represents a 'do/while' stmt.
1060 class DoStmt : public Stmt { class in namespace:clang
1068 DoStmt(Stmt *body, Expr *cond, SourceLocation DL, SourceLocation WL, function in class:clang::DoStmt
1076 explicit DoStmt(EmptyShell Empty) : Stmt(DoStmtClass, Empty) { } function in class:clang::DoStmt
H A DRecursiveASTVisitor.h2015 DEF_TRAVERSE_STMT(DoStmt, { })
/external/clang/lib/CodeGen/
H A DCGStmt.cpp131 case Stmt::DoStmtClass: EmitDoStmt(cast<DoStmt>(*S)); break;
569 void CodeGenFunction::EmitDoStmt(const DoStmt &S) {
H A DCodeGenFunction.cpp783 if (isa<SwitchStmt>(S) || isa<WhileStmt>(S) || isa<DoStmt>(S) ||
H A DCodeGenFunction.h1822 void EmitDoStmt(const DoStmt &S);
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp590 Range = cast<DoStmt>(Term)->getCond()->getSourceRange();
979 const Expr *Cond = cast<DoStmt>(S)->getCond();
H A DSemaStmt.cpp1210 return Owned(new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen));
/external/clang/tools/libclang/
H A DRecursiveASTVisitor.h1930 DEF_TRAVERSE_STMT(DoStmt, { })
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp227 void ASTStmtReader::VisitDoStmt(DoStmt *S) {
1863 S = new (Context) DoStmt(Empty);
H A DASTWriterStmt.cpp153 void ASTStmtWriter::VisitDoStmt(DoStmt *S) {
/external/clang/lib/Rewrite/Frontend/
H A DRewriteObjC.cpp4662 isa<DoStmt>(S) || isa<ForStmt>(S))
4831 isa<DoStmt>(S) || isa<ForStmt>(S)) {
4834 isa<DoStmt>(Stmts.back()) || isa<ForStmt>(Stmts.back()))
H A DRewriteModernObjC.cpp5642 isa<DoStmt>(S) || isa<ForStmt>(S))
5831 isa<DoStmt>(S) || isa<ForStmt>(S)) {
5834 isa<DoStmt>(Stmts.back()) || isa<ForStmt>(Stmts.back()))

Completed in 2864 milliseconds

12