Searched refs:ForStmt (Results 1 - 25 of 32) sorted by relevance

12

/external/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp355 const ForStmt *ForStmt1 = cast<ForStmt>(Stmt1);
356 const ForStmt *ForStmt2 = cast<ForStmt>(Stmt2);
H A DCheckSecuritySyntaxOnly.cpp79 void VisitForStmt(ForStmt *S);
92 void checkLoopConditionForFloat(const ForStmt *FS);
172 void WalkAST::VisitForStmt(ForStmt *FS) {
219 void WalkAST::checkLoopConditionForFloat(const ForStmt *FS) {
H A DMallocOverflowSecurityChecker.cpp178 void VisitForStmt(ForStmt *S) {
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp3.cpp154 constexpr int ForStmt() { function
/external/clang/lib/AST/
H A DParentMap.cpp183 return DirectChild == cast<ForStmt>(P)->getCond();
H A DStmt.cpp851 ForStmt::ForStmt(const ASTContext &C, Stmt *Init, Expr *Cond, VarDecl *condVar, function in class:ForStmt
863 VarDecl *ForStmt::getConditionVariable() const {
871 void ForStmt::setConditionVariable(const ASTContext &C, VarDecl *V) {
H A DStmtPrinter.cpp263 void StmtPrinter::VisitForStmt(ForStmt *Node) {
H A DStmtProfile.cpp135 void StmtProfiler::VisitForStmt(const ForStmt *S) {
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h899 const internal::VariadicDynCastAllOfMatcher<Stmt, ForStmt> forStmt;
909 AST_MATCHER_P(ForStmt, hasIncrement, internal::Matcher<Stmt>,
924 AST_MATCHER_P(ForStmt, hasLoopInit, internal::Matcher<Stmt>,
2372 IfStmt, ForStmt, WhileStmt, DoStmt, ConditionalOperator),
2500 AST_POLYMORPHIC_SUPPORTED_TYPES_4(DoStmt, ForStmt,
/external/clang/lib/Analysis/
H A DReachableCode.cpp595 if (const ForStmt *FS = dyn_cast<ForStmt>(LoopTarget)) {
H A DCFG.cpp380 CFGBlock *VisitForStmt(ForStmt *F);
1411 return VisitForStmt(cast<ForStmt>(S));
2237 CFGBlock *CFGBuilder::VisitForStmt(ForStmt *F) {
3839 const VarDecl *var = cast<ForStmt>(stmt)->getConditionVariable();
3943 void VisitForStmt(ForStmt *F) {
4395 E = cast<ForStmt>(Terminator)->getCond();
/external/clang/lib/CodeGen/
H A DCodeGenPGO.cpp237 ForStmt,
322 return PGOHash::ForStmt;
523 void VisitForStmt(const ForStmt *S) {
H A DCGStmt.cpp133 case Stmt::ForStmtClass: EmitForStmt(cast<ForStmt>(*S)); break;
429 EmitForStmt(cast<ForStmt>(*SubStmt), S.getAttrs());
779 void CodeGenFunction::EmitForStmt(const ForStmt &S,
H A DCodeGenFunction.cpp910 isa<ForStmt>(S))
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp465 if (cast<ForStmt>(Parent)->getBody() == S)
1371 const ForStmt *FS = cast<ForStmt>(Term);
1504 if (const ForStmt *FS = dyn_cast<ForStmt>(Loop))
1792 if (const ForStmt *FS = dyn_cast<ForStmt>(Loop))
1930 return cast<ForStmt>(S)->getCond() == Cond;
1961 if (const ForStmt *FS = dyn_cast<ForStmt>(F
[all...]
H A DCoreEngine.cpp393 HandleBranch(cast<ForStmt>(Term)->getCond(), Term, B, Pred);
/external/clang/lib/ARCMigrate/
H A DTransforms.cpp288 bool VisitForStmt(ForStmt *S) {
/external/chromium_org/v8/tools/gcmole/
H A Dgcmole.cc875 VISIT(ForStmt);
1022 DECL_VISIT_STMT(ForStmt) {
/external/clang/lib/Sema/
H A DSemaStmt.cpp1631 return new (Context) ForStmt(Context, First, SecondResult.get(), ConditionVar,
2337 ObjCForCollectionStmt * ForStmt = cast<ObjCForCollectionStmt>(S);
2339 ForStmt->setBody(B);
2354 CXXForRangeStmt *ForStmt = cast<CXXForRangeStmt>(S);
2355 ForStmt->setBody(B);
2357 DiagnoseEmptyStmtBody(ForStmt->getRParenLoc(), B,
H A DAnalysisBasedWarnings.cpp777 Range = cast<ForStmt>(Term)->getCond()->getSourceRange();
H A DSemaOpenMP.cpp1594 auto For = dyn_cast_or_null<ForStmt>(S);
1738 CurStmt = IgnoreContainerStmts(cast<ForStmt>(CurStmt)->getBody(), false);
/external/clang/include/clang/AST/
H A DStmt.h440 /// and declarations (variables, types). Another example is ForStmt, where
1131 /// ForStmt - This represents a 'for (init;cond;inc)' stmt. Note that any of
1132 /// the init/cond/inc parts of the ForStmt will be null if they were not
1135 class ForStmt : public Stmt { class in namespace:clang
1142 ForStmt(const ASTContext &C, Stmt *Init, Expr *Cond, VarDecl *condVar,
1147 explicit ForStmt(EmptyShell Empty) : Stmt(ForStmtClass, Empty) { } function in class:clang::ForStmt
1162 /// If this ForStmt has a condition variable, return the faux DeclStmt
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp236 void ASTStmtReader::VisitForStmt(ForStmt *S) {
2091 S = new (Context) ForStmt(Empty);
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp5569 isa<DoStmt>(S) || isa<ForStmt>(S))
5758 isa<DoStmt>(S) || isa<ForStmt>(S)) {
5761 isa<DoStmt>(Stmts.back()) || isa<ForStmt>(Stmts.back()))
H A DRewriteObjC.cpp4611 isa<DoStmt>(S) || isa<ForStmt>(S))
4778 isa<DoStmt>(S) || isa<ForStmt>(S)) {
4781 isa<DoStmt>(Stmts.back()) || isa<ForStmt>(Stmts.back()))

Completed in 384 milliseconds

12