/external/clang/lib/ARCMigrate/ |
H A D | TransEmptyStatementsAndDealloc.cpp | 124 bool VisitDoStmt(DoStmt *S) {
|
H A D | Transforms.cpp | 278 bool VisitDoStmt(DoStmt *S) {
|
/external/clang/lib/AST/ |
H A D | ParentMap.cpp | 187 return DirectChild == cast<DoStmt>(P)->getCond();
|
H A D | StmtPrinter.cpp | 260 void StmtPrinter::VisitDoStmt(DoStmt *Node) {
|
H A D | StmtProfile.cpp | 132 void StmtProfiler::VisitDoStmt(const DoStmt *S) {
|
H A D | ExprConstant.cpp | 3261 const DoStmt *DS = cast<DoStmt>(S);
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
H A D | MallocOverflowSecurityChecker.cpp | 181 void VisitDoStmt(DoStmt *S) {
|
/external/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchers.h | 891 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 D | CoreEngine.cpp | 385 HandleBranch(cast<DoStmt>(Term)->getCond(), Term, B, Pred);
|
H A D | BugReporter.cpp | 1888 return cast<DoStmt>(S)->getCond() == Cond;
|
/external/chromium_org/v8/tools/gcmole/ |
H A D | gcmole.cc | 891 VISIT(DoStmt); 1031 DECL_VISIT_STMT(DoStmt) {
|
/external/v8/tools/gcmole/ |
H A D | gcmole.cc | 893 VISIT(DoStmt); 1033 DECL_VISIT_STMT(DoStmt) {
|
/external/clang/lib/Analysis/ |
H A D | CFG.cpp | 375 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 D | Stmt.h | 1058 /// 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 D | RecursiveASTVisitor.h | 2015 DEF_TRAVERSE_STMT(DoStmt, { })
|
/external/clang/lib/CodeGen/ |
H A D | CGStmt.cpp | 131 case Stmt::DoStmtClass: EmitDoStmt(cast<DoStmt>(*S)); break; 569 void CodeGenFunction::EmitDoStmt(const DoStmt &S) {
|
H A D | CodeGenFunction.cpp | 783 if (isa<SwitchStmt>(S) || isa<WhileStmt>(S) || isa<DoStmt>(S) ||
|
H A D | CodeGenFunction.h | 1822 void EmitDoStmt(const DoStmt &S);
|
/external/clang/lib/Sema/ |
H A D | AnalysisBasedWarnings.cpp | 590 Range = cast<DoStmt>(Term)->getCond()->getSourceRange(); 979 const Expr *Cond = cast<DoStmt>(S)->getCond();
|
H A D | SemaStmt.cpp | 1210 return Owned(new (Context) DoStmt(Body, Cond, DoLoc, WhileLoc, CondRParen));
|
/external/clang/tools/libclang/ |
H A D | RecursiveASTVisitor.h | 1930 DEF_TRAVERSE_STMT(DoStmt, { })
|
/external/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 227 void ASTStmtReader::VisitDoStmt(DoStmt *S) { 1863 S = new (Context) DoStmt(Empty);
|
H A D | ASTWriterStmt.cpp | 153 void ASTStmtWriter::VisitDoStmt(DoStmt *S) {
|
/external/clang/lib/Rewrite/Frontend/ |
H A D | RewriteObjC.cpp | 4662 isa<DoStmt>(S) || isa<ForStmt>(S)) 4831 isa<DoStmt>(S) || isa<ForStmt>(S)) { 4834 isa<DoStmt>(Stmts.back()) || isa<ForStmt>(Stmts.back()))
|
H A D | RewriteModernObjC.cpp | 5642 isa<DoStmt>(S) || isa<ForStmt>(S)) 5831 isa<DoStmt>(S) || isa<ForStmt>(S)) { 5834 isa<DoStmt>(Stmts.back()) || isa<ForStmt>(Stmts.back()))
|