Home
last modified time | relevance | path

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

/trueos/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
HDBasicObjCFoundationChecks.cpp797 : public Checker<check::PostStmt<ObjCForCollectionStmt>,
808 void checkPostStmt(const ObjCForCollectionStmt *FCS, CheckerContext &C) const;
845 const ObjCForCollectionStmt *FCS) { in checkCollectionNonNil()
870 const ObjCForCollectionStmt *FCS) { in checkElementNonNil()
934 const ObjCForCollectionStmt *FCS, in assumeCollectionNonEmpty()
947 const ObjCForCollectionStmt *FCS) { in alreadyExecutedAtLeastOneLoopIteration()
968 void ObjCLoopChecker::checkPostStmt(const ObjCForCollectionStmt *FCS, in checkPostStmt()
HDTraversalChecker.cpp39 const Stmt *Parent = dyn_cast<ObjCForCollectionStmt>(Condition); in checkBranchCondition()
/trueos/contrib/llvm/tools/clang/include/clang/AST/
HDStmtObjC.h24 class ObjCForCollectionStmt : public Stmt {
30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
32 explicit ObjCForCollectionStmt(EmptyShell Empty) : in ObjCForCollectionStmt() function
HDRecursiveASTVisitor.h1960 DEF_TRAVERSE_STMT(ObjCForCollectionStmt, { })
/trueos/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
HDBugReporter.cpp472 if (cast<ObjCForCollectionStmt>(Parent)->getBody() == S) in getEnclosingStmtLocation()
1377 const ObjCForCollectionStmt *FC = cast<ObjCForCollectionStmt>(Term); in isInLoopBody()
1624 if (const ObjCForCollectionStmt *FS = in getTerminatorCondition()
1625 dyn_cast_or_null<ObjCForCollectionStmt>(S)) in getTerminatorCondition()
1764 if (!isa<ObjCForCollectionStmt>(PS->getStmt())) { in GenerateAlternateExtensivePathDiagnostic()
1795 else if (const ObjCForCollectionStmt *OFS = in GenerateAlternateExtensivePathDiagnostic()
1796 dyn_cast<ObjCForCollectionStmt>(Loop)) { in GenerateAlternateExtensivePathDiagnostic()
1834 if (isa<ObjCForCollectionStmt>(Term)) { in GenerateAlternateExtensivePathDiagnostic()
1949 return cast<ObjCForCollectionStmt>(S)->getElement() == Cond; in isConditionForTerminator()
2109 isa<IfStmt>(s1Start) || isa<ObjCForCollectionStmt>(s1Start) || in simplifySimpleBranches()
[all …]
HDExprEngineObjC.cpp45 void ExprEngine::VisitObjCForCollectionStmt(const ObjCForCollectionStmt *S, in VisitObjCForCollectionStmt()
HDExprEngine.cpp1095 VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S), Pred, Dst); in Visit()
/trueos/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
HDExprEngine.h40 class ObjCForCollectionStmt; variable
383 void VisitObjCForCollectionStmt(const ObjCForCollectionStmt *S,
/trueos/contrib/llvm/tools/clang/lib/ARCMigrate/
HDTransEmptyStatementsAndDealloc.cpp134 bool VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) { in VisitObjCForCollectionStmt()
/trueos/contrib/llvm/tools/clang/lib/Analysis/
HDLiveVariables.cpp225 void VisitObjCForCollectionStmt(ObjCForCollectionStmt *OS);
400 void TransferFunctions::VisitObjCForCollectionStmt(ObjCForCollectionStmt *OS) { in VisitObjCForCollectionStmt()
HDUninitializedValues.cpp457 void VisitObjCForCollectionStmt(ObjCForCollectionStmt *FS);
622 void TransferFunctions::VisitObjCForCollectionStmt(ObjCForCollectionStmt *FS) { in VisitObjCForCollectionStmt()
HDCFG.cpp397 CFGBlock *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S);
1195 return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S)); in Visit()
2153 CFGBlock *CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) { in VisitObjCForCollectionStmt()
/trueos/contrib/llvm/tools/clang/include/clang/Basic/
HDStmtNodes.td43 def ObjCForCollectionStmt : Stmt;
/trueos/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
HDRewriteObjC.cpp313 Stmt *RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S,
1439 if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back())) in RewriteBreakStmt()
1456 if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back())) in RewriteContinueStmt()
1501 Stmt *RewriteObjC::RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S, in RewriteObjCForCollectionStmt()
1504 assert(isa<ObjCForCollectionStmt>(Stmts.back()) && in RewriteObjCForCollectionStmt()
4650 if (const ObjCForCollectionStmt * CS = in IsDeclStmtInForeachHeader()
4651 dyn_cast<ObjCForCollectionStmt>(Stmts.back())) in IsDeclStmtInForeachHeader()
4664 else if (isa<ObjCForCollectionStmt>(S)) { in RewriteFunctionBodyOrGlobalInitializer()
4771 if (ObjCForCollectionStmt *StmtForCollection = in RewriteFunctionBodyOrGlobalInitializer()
4772 dyn_cast<ObjCForCollectionStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
HDRewriteModernObjC.cpp372 Stmt *RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S,
1660 if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back())) in RewriteBreakStmt()
1690 if (Stmts.empty() || !isa<ObjCForCollectionStmt>(Stmts.back())) in RewriteContinueStmt()
1735 Stmt *RewriteModernObjC::RewriteObjCForCollectionStmt(ObjCForCollectionStmt *S, in RewriteObjCForCollectionStmt()
1738 assert(isa<ObjCForCollectionStmt>(Stmts.back()) && in RewriteObjCForCollectionStmt()
5637 if (const ObjCForCollectionStmt * CS = in IsDeclStmtInForeachHeader()
5638 dyn_cast<ObjCForCollectionStmt>(Stmts.back())) in IsDeclStmtInForeachHeader()
5651 else if (isa<ObjCForCollectionStmt>(S)) { in RewriteFunctionBodyOrGlobalInitializer()
5778 if (ObjCForCollectionStmt *StmtForCollection = in RewriteFunctionBodyOrGlobalInitializer()
5779 dyn_cast<ObjCForCollectionStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
/trueos/contrib/llvm/tools/clang/lib/AST/
HDStmt.cpp708 ObjCForCollectionStmt::ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, in ObjCForCollectionStmt() function in ObjCForCollectionStmt
HDStmtProfile.cpp222 void StmtProfiler::VisitObjCForCollectionStmt(const ObjCForCollectionStmt *S) { in VisitObjCForCollectionStmt()
HDStmtPrinter.cpp305 void StmtPrinter::VisitObjCForCollectionStmt(ObjCForCollectionStmt *Node) { in VisitObjCForCollectionStmt()
/trueos/contrib/llvm/tools/clang/lib/Sema/
HDSemaStmt.cpp1732 return Owned(new (Context) ObjCForCollectionStmt(First, in ActOnObjCForCollectionStmt()
2273 ObjCForCollectionStmt * ForStmt = cast<ObjCForCollectionStmt>(S); in FinishObjCForCollectionStmt()
2287 if (isa<ObjCForCollectionStmt>(S)) in FinishCXXForRangeStmt()
HDTreeTransform.h5979 ObjCForCollectionStmt *S) { in TransformObjCForCollectionStmt()
/trueos/contrib/llvm/tools/clang/lib/CodeGen/
HDCodeGenFunction.h68 class ObjCForCollectionStmt; variable
1836 void EmitObjCForCollectionStmt(const ObjCForCollectionStmt &S);
HDCGStmt.cpp160 EmitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(*S)); in EmitStmt()
HDCGObjC.cpp1417 void CodeGenFunction::EmitObjCForCollectionStmt(const ObjCForCollectionStmt &S){ in EmitObjCForCollectionStmt()
/trueos/contrib/llvm/tools/clang/lib/Serialization/
HDASTReaderStmt.cpp1077 void ASTStmtReader::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) { in VisitObjCForCollectionStmt()
2190 S = new (Context) ObjCForCollectionStmt(Empty); in ReadStmtFromStream()
HDASTWriterStmt.cpp1027 void ASTStmtWriter::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) { in VisitObjCForCollectionStmt()