/external/clang/include/clang/Analysis/ |
D | ProgramPoint.h | 302 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/ |
D | UndefBranchChecker.cpp | 92 if (Optional<PostStmt> PS = P.getAs<PostStmt>()) in checkBranchCondition()
|
D | PointerArithChecker.cpp | 49 check::PostStmt<CastExpr>, check::PostStmt<CXXNewExpr>, 50 check::PostStmt<CallExpr>, check::DeadSymbols> {
|
D | TaintTesterChecker.cpp | 23 class TaintTesterChecker : public Checker< check::PostStmt<Expr> > {
|
D | BasicObjCFoundationChecks.cpp | 97 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> > {
|
D | UndefResultChecker.cpp | 29 : public Checker< check::PostStmt<BinaryOperator> > {
|
D | TestAfterDivZeroChecker.cpp | 106 if (Optional<PostStmt> P = Succ->getLocationAs<PostStmt>()) in REGISTER_SET_WITH_PROGRAMSTATE()
|
D | UndefCapturedBlockVarChecker.cpp | 29 : public Checker< check::PostStmt<BlockExpr> > {
|
D | MacOSKeychainAPIChecker.cpp | 30 check::PostStmt<CallExpr>, 531 else if (Optional<clang::PostStmt> PS = P.getAs<clang::PostStmt>()) in generateAllocatedDataNotReleasedReport()
|
D | CheckerDocumentation.cpp | 38 check::PostStmt<DeclStmt>,
|
D | ObjCContainersChecker.cpp | 32 check::PostStmt<CallExpr>,
|
D | DebugCheckers.cpp | 221 class BugHashDumper : public Checker<check::PostStmt<Stmt>> {
|
D | DynamicTypeChecker.cpp | 33 class DynamicTypeChecker : public Checker<check::PostStmt<ImplicitCastExpr>> {
|
D | ObjCSelfInitChecker.cpp | 59 check::PostStmt<ObjCIvarRefExpr>,
|
D | PthreadLockChecker.cpp | 52 class PthreadLockChecker : public Checker< check::PostStmt<CallExpr> > {
|
D | DynamicTypePropagation.cpp | 54 check::PostStmt<CastExpr>, 55 check::PostStmt<CXXNewExpr>,
|
D | RetainCountChecker.cpp | 2425 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>,
|
D | GenericTaintChecker.cpp | 31 class GenericTaintChecker : public Checker< check::PostStmt<CallExpr>,
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | BugReporterVisitors.cpp | 94 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()
|
D | ExplodedGraph.cpp | 117 if (!progPoint.getAs<PostStmt>() || progPoint.getAs<PostStore>()) in shouldCollect() 133 const Expr *Ex = dyn_cast<Expr>(progPoint.castAs<PostStmt>().getStmt()); in shouldCollect()
|
D | CoreEngine.cpp | 275 assert(Loc.getAs<PostStmt>() || in dispatchWorkItem() 576 PostStmt Loc(CS.getStmt(), N->getLocationContext()); in enqueueStmtNode()
|
D | ExprEngineCXX.cpp | 73 PostStmt PS(CallExpr, LCtx); in performTrivialCopy()
|
/external/clang/lib/Analysis/ |
D | ProgramPoint.cpp | 30 return PostStmt(S, LC, tag); in getProgramPoint()
|
/external/clang/test/Analysis/ |
D | blocks.m | 111 // PreStmtPurgeDeadSymbols point but only knew how to deal with PostStmt
|
/external/clang/include/clang/StaticAnalyzer/Core/ |
D | Checker.h | 101 class PostStmt {
|