Searched defs:AllocStmt (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
H A DMacOSKeychainAPIChecker.cpp528 const Stmt *AllocStmt = nullptr; local
531 AllocStmt = Exit->getCalleeContext()->getCallSite();
533 AllocStmt = PS->getStmt();
535 if (AllocStmt)
536 LocUsedForUniqueing = PathDiagnosticLocation::createBegin(AllocStmt,
H A DRetainCountChecker.cpp2345 const Stmt *AllocStmt = 0; local
2348 AllocStmt = Exit->getCalleeContext()->getCallSite();
2356 AllocStmt = St->getStmt();
2360 AllocStmt = P.castAs<PostStmt>().getStmt();
2363 assert(AllocStmt && "Cannot find allocation statement");
2366 PathDiagnosticLocation::createBegin(AllocStmt, SMgr,
2386 FullSourceLoc SL(AllocStmt->getLocStart(), Ctx.getSourceManager());

Completed in 947 milliseconds