HomeSort by relevance Sort by last modified time
    Searched refs:PostStmt (Results 1 - 25 of 32) sorted by null

1 2

  /prebuilts/go/darwin-x86/test/fixedbugs/
gcc61273.go 7 // PR61273: gccgo failed to compile a SendStmt in the PostStmt of a ForClause
  /prebuilts/go/linux-x86/test/fixedbugs/
gcc61273.go 7 // PR61273: gccgo failed to compile a SendStmt in the PostStmt of a ForClause
  /external/clang/lib/Analysis/
ProgramPoint.cpp 30 return PostStmt(S, LC, tag);
  /external/clang/lib/StaticAnalyzer/Checkers/
TaintTesterChecker.cpp 23 class TaintTesterChecker : public Checker< check::PostStmt<Expr> > {
UndefBranchChecker.cpp 78 // Get the predecessor node and check if is a PostStmt with the Stmt
92 if (Optional<PostStmt> PS = P.getAs<PostStmt>())
UndefCapturedBlockVarChecker.cpp 29 : public Checker< check::PostStmt<BlockExpr> > {
UndefResultChecker.cpp 29 : public Checker< check::PostStmt<BinaryOperator> > {
CheckerDocumentation.cpp 38 check::PostStmt<DeclStmt>,
80 /// check::PostStmt<DeclStmt>
PointerArithChecker.cpp 49 check::PostStmt<CastExpr>, check::PostStmt<CXXNewExpr>,
50 check::PostStmt<CallExpr>, check::DeadSymbols> {
ObjCContainersChecker.cpp 32 check::PostStmt<CallExpr>,
TestAfterDivZeroChecker.cpp 106 if (Optional<PostStmt> P = Succ->getLocationAs<PostStmt>())
MacOSKeychainAPIChecker.cpp 30 check::PostStmt<CallExpr>,
531 else if (Optional<clang::PostStmt> PS = P.getAs<clang::PostStmt>())
BasicObjCFoundationChecks.cpp 97 check::PostStmt<ObjCDictionaryLiteral>,
98 check::PostStmt<ObjCArrayLiteral> > {
837 : public Checker<check::PostStmt<ObjCForCollectionStmt>,
    [all...]
DebugCheckers.cpp 221 class BugHashDumper : public Checker<check::PostStmt<Stmt>> {
DynamicTypeChecker.cpp 33 class DynamicTypeChecker : public Checker<check::PostStmt<ImplicitCastExpr>> {
ObjCSelfInitChecker.cpp 59 check::PostStmt<ObjCIvarRefExpr>,
PthreadLockChecker.cpp 52 class PthreadLockChecker : public Checker< check::PostStmt<CallExpr> > {
DynamicTypePropagation.cpp 54 check::PostStmt<CastExpr>,
55 check::PostStmt<CXXNewExpr>,
    [all...]
GenericTaintChecker.cpp 31 class GenericTaintChecker : public Checker< check::PostStmt<CallExpr>,
  /external/clang/include/clang/Analysis/
ProgramPoint.h 302 class PostStmt : public StmtPoint {
304 PostStmt() {}
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) {}
384 class PostLoad : public PostStmt {
388 : PostStmt(S, PostLoadKind, L, tag) {}
399 class PostStore : public PostStmt {
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 94 const Stmt *S = N->getLocationAs<PostStmt>()->getStmt();
187 while (Node && Node->getLocation().getAs<PostStmt>())
424 Optional<PostStmt> P = N->getLocationAs<PostStmt>();
499 if (Optional<PostStmt> P = Succ->getLocationAs<PostStmt>())
551 if (Optional<PostStmt> PS = StoreSite->getLocationAs<PostStmt>()) {
    [all...]
ExplodedGraph.cpp 86 // (3) The ProgramPoint is for a PostStmt, but not a PostStore.
92 // (9) The PostStmt isn't for a non-consumed Stmt or Expr.
117 if (!progPoint.getAs<PostStmt>() || progPoint.getAs<PostStore>())
132 // a PostStmt.
133 const Expr *Ex = dyn_cast<Expr>(progPoint.castAs<PostStmt>().getStmt());
CoreEngine.cpp 275 assert(Loc.getAs<PostStmt>() ||
576 PostStmt Loc(CS.getStmt(), N->getLocationContext());
ExprEngineCXX.cpp 73 PostStmt PS(CallExpr, LCtx);
  /external/clang/include/clang/StaticAnalyzer/Core/
Checker.h 101 class PostStmt {

Completed in 136 milliseconds

1 2