Home
last modified time | relevance | path

Searched refs:ObjCForCollectionStmt (Results 1 – 25 of 29) sorted by relevance

12

/minix3/external/bsd/llvm/dist/clang/test/Analysis/
H A Dtraversal-algorithm.mm55 // DFS-next:37 ObjCForCollectionStmt
61 // DFS-next:37 ObjCForCollectionStmt
62 // DFS-next:37 ObjCForCollectionStmt
68 // DFS-next:37 ObjCForCollectionStmt
69 // DFS-next:37 ObjCForCollectionStmt
71 // DFS-next:37 ObjCForCollectionStmt
72 // DFS-next:37 ObjCForCollectionStmt
74 // DFS-next:37 ObjCForCollectionStmt
76 // DFS-next:37 ObjCForCollectionStmt
82 // DFS-next:37 ObjCForCollectionStmt
[all …]
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DStmtObjC.h24 class ObjCForCollectionStmt : public Stmt {
30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
32 explicit ObjCForCollectionStmt(EmptyShell Empty) : in ObjCForCollectionStmt() function
H A DDataRecursiveASTVisitor.h1929 DEF_TRAVERSE_STMT(ObjCForCollectionStmt, {})
H A DRecursiveASTVisitor.h1946 DEF_TRAVERSE_STMT(ObjCForCollectionStmt, {})
/minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DTraversalChecker.cpp39 const Stmt *Parent = dyn_cast<ObjCForCollectionStmt>(Condition); in checkBranchCondition()
H A DBasicObjCFoundationChecks.cpp839 : public Checker<check::PostStmt<ObjCForCollectionStmt>,
850 void checkPostStmt(const ObjCForCollectionStmt *FCS, CheckerContext &C) const;
887 const ObjCForCollectionStmt *FCS) { in checkCollectionNonNil()
912 const ObjCForCollectionStmt *FCS) { in checkElementNonNil()
976 const ObjCForCollectionStmt *FCS, in assumeCollectionNonEmpty()
989 const ObjCForCollectionStmt *FCS) { in alreadyExecutedAtLeastOneLoopIteration()
1010 void ObjCLoopChecker::checkPostStmt(const ObjCForCollectionStmt *FCS, in checkPostStmt()
/minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp473 if (cast<ObjCForCollectionStmt>(Parent)->getBody() == S) in getEnclosingStmtLocation()
1372 const ObjCForCollectionStmt *FC = cast<ObjCForCollectionStmt>(Term); in isInLoopBody()
1616 if (const ObjCForCollectionStmt *FS = in getTerminatorCondition()
1617 dyn_cast_or_null<ObjCForCollectionStmt>(S)) in getTerminatorCondition()
1754 if (!isa<ObjCForCollectionStmt>(PS->getStmt())) { in GenerateAlternateExtensivePathDiagnostic()
1785 else if (const ObjCForCollectionStmt *OFS = in GenerateAlternateExtensivePathDiagnostic()
1786 dyn_cast<ObjCForCollectionStmt>(Loop)) { in GenerateAlternateExtensivePathDiagnostic()
1824 if (isa<ObjCForCollectionStmt>(Term)) { in GenerateAlternateExtensivePathDiagnostic()
1937 return cast<ObjCForCollectionStmt>(S)->getElement() == Cond; in isConditionForTerminator()
2097 isa<IfStmt>(s1Start) || isa<ObjCForCollectionStmt>(s1Start) || in simplifySimpleBranches()
[all …]
H A DExprEngineObjC.cpp45 void ExprEngine::VisitObjCForCollectionStmt(const ObjCForCollectionStmt *S, in VisitObjCForCollectionStmt()
/minix3/external/bsd/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExprEngine.h40 class ObjCForCollectionStmt; variable
394 void VisitObjCForCollectionStmt(const ObjCForCollectionStmt *S,
/minix3/external/bsd/llvm/dist/clang/lib/ARCMigrate/
H A DTransEmptyStatementsAndDealloc.cpp133 bool VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) { in VisitObjCForCollectionStmt()
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCodeGenPGO.cpp114 ObjCForCollectionStmt, enumerator
201 return PGOHash::ObjCForCollectionStmt; in getHashType()
473 void VisitObjCForCollectionStmt(const ObjCForCollectionStmt *S) { in VisitObjCForCollectionStmt()
H A DCoverageMappingGen.cpp780 void VisitObjCForCollectionStmt(const ObjCForCollectionStmt *S) { in VisitObjCForCollectionStmt()
H A DCodeGenFunction.h70 class ObjCForCollectionStmt; variable
1979 void EmitObjCForCollectionStmt(const ObjCForCollectionStmt &S);
H A DCGStmt.cpp161 EmitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(*S)); in EmitStmt()
/minix3/external/bsd/llvm/dist/clang/lib/Analysis/
H A DLiveVariables.cpp210 void VisitObjCForCollectionStmt(ObjCForCollectionStmt *OS);
384 void TransferFunctions::VisitObjCForCollectionStmt(ObjCForCollectionStmt *OS) { in VisitObjCForCollectionStmt()
H A DUninitializedValues.cpp482 void VisitObjCForCollectionStmt(ObjCForCollectionStmt *FS);
650 void TransferFunctions::VisitObjCForCollectionStmt(ObjCForCollectionStmt *FS) { in VisitObjCForCollectionStmt()
H A DCFG.cpp404 CFGBlock *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S);
1521 return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S)); in Visit()
2480 CFGBlock *CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) { in VisitObjCForCollectionStmt()
/minix3/external/bsd/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td43 def ObjCForCollectionStmt : Stmt;
/minix3/external/bsd/llvm/dist/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp305 Stmt *RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S,
1408 if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back())) in RewriteBreakStmt()
1425 if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back())) in RewriteContinueStmt()
1470 Stmt *RewriteObjC::RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S, in RewriteObjCForCollectionStmt()
1473 assert(isa<ObjCForCollectionStmt>(Stmts.back()) && in RewriteObjCForCollectionStmt()
4583 if (const ObjCForCollectionStmt * CS = in IsDeclStmtInForeachHeader()
4584 dyn_cast<ObjCForCollectionStmt>(Stmts.back())) in IsDeclStmtInForeachHeader()
4597 else if (isa<ObjCForCollectionStmt>(S)) { in RewriteFunctionBodyOrGlobalInitializer()
4704 if (ObjCForCollectionStmt *StmtForCollection = in RewriteFunctionBodyOrGlobalInitializer()
4705 dyn_cast<ObjCForCollectionStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
H A DRewriteModernObjC.cpp364 Stmt *RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S,
1628 if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back())) in RewriteBreakStmt()
1658 if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back())) in RewriteContinueStmt()
1703 Stmt *RewriteModernObjC::RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S, in RewriteObjCForCollectionStmt()
1706 assert(isa<ObjCForCollectionStmt>(Stmts.back()) && in RewriteObjCForCollectionStmt()
5540 if (const ObjCForCollectionStmt * CS = in IsDeclStmtInForeachHeader()
5541 dyn_cast<ObjCForCollectionStmt>(Stmts.back())) in IsDeclStmtInForeachHeader()
5554 else if (isa<ObjCForCollectionStmt>(S)) { in RewriteFunctionBodyOrGlobalInitializer()
5681 if (ObjCForCollectionStmt *StmtForCollection = in RewriteFunctionBodyOrGlobalInitializer()
5682 dyn_cast<ObjCForCollectionStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaStmt.cpp1827 return new (Context) ObjCForCollectionStmt(First, CollectionExprResult.get(), in ActOnObjCForCollectionStmt()
2365 ObjCForCollectionStmt * ForStmt = cast<ObjCForCollectionStmt>(S); in FinishObjCForCollectionStmt()
2379 if (isa<ObjCForCollectionStmt>(S)) in FinishCXXForRangeStmt()
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DStmt.cpp761 ObjCForCollectionStmt::ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, in ObjCForCollectionStmt() function in ObjCForCollectionStmt
H A DStmtProfile.cpp225 void StmtProfiler::VisitObjCForCollectionStmt(const ObjCForCollectionStmt *S) { in VisitObjCForCollectionStmt()
H A DStmtPrinter.cpp292 void StmtPrinter::VisitObjCForCollectionStmt(ObjCForCollectionStmt *Node) { in VisitObjCForCollectionStmt()
/minix3/external/bsd/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp1076 void ASTStmtReader::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) { in VisitObjCForCollectionStmt()
2572 S = new (Context) ObjCForCollectionStmt(Empty); in ReadStmtFromStream()

12