HomeSort by: relevance | last modified time | path
    Searched refs:StmtPoint (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/
ProgramPoint.h 271 class StmtPoint : public ProgramPoint {
273 StmtPoint(const Stmt *S, const void *p2, Kind k, const LocationContext *L,
285 StmtPoint() = default;
295 class PreStmt : public StmtPoint {
299 : StmtPoint(S, SubStmt, PreStmtKind, L, tag) {}
311 class PostStmt : public StmtPoint {
316 : StmtPoint(S, data, k, L, tag) {}
321 : StmtPoint(S, nullptr, k, L, tag) {}
325 : StmtPoint(S, nullptr, PostStmtKind, L, tag) {}
373 class LocationCheck : public StmtPoint {
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExplodedGraph.cpp 83 // (10) The successor is neither a CallExpr StmtPoint nor a CallEnter or
143 if (Optional<StmtPoint> SP = SuccLoc.getAs<StmtPoint>())
334 if (auto SP = P.getAs<StmtPoint>())
BugReporterVisitors.cpp 830 auto BugPoint = BR.getErrorNode()->getLocation().getAs<StmtPoint>();
955 // as a 'StmtPoint' so we have to bypass it.
978 if (Optional<StmtPoint> SP = Node->getLocationAs<StmtPoint>())
1031 Optional<StmtPoint> SP = N->getLocationAs<StmtPoint>();
1760 auto BugPoint = BR.getErrorNode()->getLocation().getAs<StmtPoint>();
1769 } else if (auto SP = CurPoint.getAs<StmtPoint>()) {
ExprEngineCallAndReturn.cpp 88 if (Optional<StmtPoint> SP = PP.getAs<StmtPoint>()) {
BugReporter.cpp 1033 Optional<StmtPoint> SP = N->getLocation().getAs<StmtPoint>();
ExprEngine.cpp 1920 if (Optional<StmtPoint> SP = L.getAs<StmtPoint>())
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
ProgramPoint.cpp 187 const Stmt *S = castAs<StmtPoint>().getStmt();
228 llvm_unreachable("' is unhandled StmtPoint kind!");
PathDiagnostic.cpp 688 } else if (Optional<StmtPoint> SP = P.getAs<StmtPoint>()) {
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
MacOSKeychainAPIChecker.cpp 635 cast<CallExpr>(N->getLocation().castAs<StmtPoint>().getStmt());
LocalizationChecker.cpp 1007 Optional<StmtPoint> Point = Succ->getLocation().getAs<StmtPoint>();

Completed in 71 milliseconds