Home
last modified time | relevance | path

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

12

/external/clang/include/clang/Analysis/
DProgramPoint.h302 class PostStmt : public StmtPoint {
304 PostStmt() {} in PostStmt() function
305 PostStmt(const Stmt *S, const void *data, Kind k, const LocationContext *L,
310 explicit PostStmt(const Stmt *S, Kind k, const LocationContext *L,
314 explicit PostStmt(const Stmt *S, const LocationContext *L,
327 class PostCondition : public PostStmt {
331 : PostStmt(S, PostConditionKind, L, tag) {} in PostStmt() function
384 class PostLoad : public PostStmt {
388 : PostStmt(S, PostLoadKind, L, tag) {} in PostStmt() function
399 class PostStore : public PostStmt {
[all …]
/external/clang/lib/StaticAnalyzer/Checkers/
DUndefBranchChecker.cpp92 if (Optional<PostStmt> PS = P.getAs<PostStmt>()) in checkBranchCondition()
DPointerArithChecker.cpp49 check::PostStmt<CastExpr>, check::PostStmt<CXXNewExpr>,
50 check::PostStmt<CallExpr>, check::DeadSymbols> {
DTaintTesterChecker.cpp23 class TaintTesterChecker : public Checker< check::PostStmt<Expr> > {
DBasicObjCFoundationChecks.cpp97 check::PostStmt<ObjCDictionaryLiteral>,
98 check::PostStmt<ObjCArrayLiteral> > {
837 : public Checker<check::PostStmt<ObjCForCollectionStmt>,
1172 check::PostStmt<ObjCArrayLiteral>,
1173 check::PostStmt<ObjCDictionaryLiteral>,
1174 check::PostStmt<ObjCBoxedExpr> > {
DUndefResultChecker.cpp29 : public Checker< check::PostStmt<BinaryOperator> > {
DTestAfterDivZeroChecker.cpp106 if (Optional<PostStmt> P = Succ->getLocationAs<PostStmt>()) in REGISTER_SET_WITH_PROGRAMSTATE()
DUndefCapturedBlockVarChecker.cpp29 : public Checker< check::PostStmt<BlockExpr> > {
DMacOSKeychainAPIChecker.cpp30 check::PostStmt<CallExpr>,
531 else if (Optional<clang::PostStmt> PS = P.getAs<clang::PostStmt>()) in generateAllocatedDataNotReleasedReport()
DCheckerDocumentation.cpp38 check::PostStmt<DeclStmt>,
DObjCContainersChecker.cpp32 check::PostStmt<CallExpr>,
DDebugCheckers.cpp221 class BugHashDumper : public Checker<check::PostStmt<Stmt>> {
DDynamicTypeChecker.cpp33 class DynamicTypeChecker : public Checker<check::PostStmt<ImplicitCastExpr>> {
DObjCSelfInitChecker.cpp59 check::PostStmt<ObjCIvarRefExpr>,
DPthreadLockChecker.cpp52 class PthreadLockChecker : public Checker< check::PostStmt<CallExpr> > {
DDynamicTypePropagation.cpp54 check::PostStmt<CastExpr>,
55 check::PostStmt<CXXNewExpr>,
DRetainCountChecker.cpp2425 AllocStmt = P.castAs<PostStmt>().getStmt(); in CFRefLeakReport()
2467 check::PostStmt<BlockExpr>,
2468 check::PostStmt<CastExpr>,
2469 check::PostStmt<ObjCArrayLiteral>,
2470 check::PostStmt<ObjCDictionaryLiteral>,
2471 check::PostStmt<ObjCBoxedExpr>,
2472 check::PostStmt<ObjCIvarRefExpr>,
DGenericTaintChecker.cpp31 class GenericTaintChecker : public Checker< check::PostStmt<CallExpr>,
/external/clang/lib/StaticAnalyzer/Core/
DBugReporterVisitors.cpp94 const Stmt *S = N->getLocationAs<PostStmt>()->getStmt(); in GetRetValExpr()
187 while (Node && Node->getLocation().getAs<PostStmt>()) in addVisitorIfNecessary()
424 Optional<PostStmt> P = N->getLocationAs<PostStmt>(); in isInitializationOfVar()
499 if (Optional<PostStmt> P = Succ->getLocationAs<PostStmt>()) in VisitNode()
551 if (Optional<PostStmt> PS = StoreSite->getLocationAs<PostStmt>()) { in VisitNode()
1011 if (Optional<PostStmt> P = LVNode->getLocation().getAs<PostStmt>()) { in trackNullOrUndefValue()
1244 if (Optional<PostStmt> PS = progPoint.getAs<PostStmt>()) { in VisitNodeImpl()
DExplodedGraph.cpp117 if (!progPoint.getAs<PostStmt>() || progPoint.getAs<PostStore>()) in shouldCollect()
133 const Expr *Ex = dyn_cast<Expr>(progPoint.castAs<PostStmt>().getStmt()); in shouldCollect()
DCoreEngine.cpp275 assert(Loc.getAs<PostStmt>() || in dispatchWorkItem()
576 PostStmt Loc(CS.getStmt(), N->getLocationContext()); in enqueueStmtNode()
DExprEngineCXX.cpp73 PostStmt PS(CallExpr, LCtx); in performTrivialCopy()
/external/clang/lib/Analysis/
DProgramPoint.cpp30 return PostStmt(S, LC, tag); in getProgramPoint()
/external/clang/test/Analysis/
Dblocks.m111 // PreStmtPurgeDeadSymbols point but only knew how to deal with PostStmt
/external/clang/include/clang/StaticAnalyzer/Core/
DChecker.h101 class PostStmt {

12