/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 | 77 // Get the predecessor node and check if is a PostStmt with the Stmt 91 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>, 81 /// check::PostStmt<DeclStmt>
|
ObjCContainersChecker.cpp | 32 check::PostStmt<CallExpr>,
|
TestAfterDivZeroChecker.cpp | 106 if (Optional<PostStmt> P = Succ->getLocationAs<PostStmt>())
|
MacOSKeychainAPIChecker.cpp | 30 check::PostStmt<CallExpr>, 539 else if (Optional<clang::PostStmt> PS = P.getAs<clang::PostStmt>())
|
BasicObjCFoundationChecks.cpp | 97 check::PostStmt<ObjCDictionaryLiteral>, 98 check::PostStmt<ObjCArrayLiteral> > { 839 : 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>,
|
MallocChecker.cpp | 162 check::PostStmt<CallExpr>, 163 check::PostStmt<CXXNewExpr>, 165 check::PostStmt<BlockExpr>, [all...] |
/external/clang/include/clang/Analysis/ |
ProgramPoint.h | 279 class PostStmt : public StmtPoint { 281 PostStmt() {} 282 PostStmt(const Stmt *S, const void *data, Kind k, const LocationContext *L, 287 explicit PostStmt(const Stmt *S, Kind k, const LocationContext *L, 291 explicit PostStmt(const Stmt *S, const LocationContext *L, 304 class PostCondition : public PostStmt { 308 : PostStmt(S, PostConditionKind, L, tag) {} 361 class PostLoad : public PostStmt { 365 : PostStmt(S, PostLoadKind, L, tag) {} 376 class PostStore : public PostStmt { [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
BugReporterVisitors.cpp | 93 const Stmt *S = N->getLocationAs<PostStmt>()->getStmt(); 186 while (Node && Node->getLocation().getAs<PostStmt>()) 420 Optional<PostStmt> P = N->getLocationAs<PostStmt>(); 495 if (Optional<PostStmt> P = Succ->getLocationAs<PostStmt>()) 547 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 | 263 assert(Loc.getAs<PostStmt>() || 559 PostStmt Loc(CS.getStmt(), N->getLocationContext());
|
ExprEngineCXX.cpp | 73 PostStmt PS(CallExpr, LCtx);
|
/external/clang/include/clang/StaticAnalyzer/Core/ |
Checker.h | 101 class PostStmt {
|