Searched refs:CallEnter (Results 1 - 12 of 12) sorted by relevance

/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSubEngine.h98 virtual void processCallEnter(CallEnter CE, ExplodedNode *Pred) = 0;
H A DExprEngine.h258 void processCallEnter(CallEnter CE, ExplodedNode *Pred) override;
/external/clang/lib/StaticAnalyzer/Core/
H A DPathDiagnostic.cpp75 IntrusiveRefCntPtr<PathDiagnosticEventPiece> CallEnter = local
77 if (CallEnter)
78 Current.push_back(CallEnter);
678 } else if (Optional<CallEnter> CE = P.getAs<CallEnter>()) {
699 if (Optional<CallEnter> CE = P.getAs<CallEnter>())
902 void PathDiagnosticCallPiece::setCallee(const CallEnter &CE,
H A DExprEngineCallAndReturn.cpp40 void ExprEngine::processCallEnter(CallEnter CE, ExplodedNode *Pred) {
94 Optional<CallEnter> CE;
97 CE = Node->getLocationAs<CallEnter>();
104 } else if (Optional<CallEnter> CE = PP.getAs<CallEnter>()) {
105 // If we reached the CallEnter for this function, it has no statements.
444 CallEnter Loc(CallE, CalleeSFC, CurLC);
H A DBugReporterVisitors.cpp344 Optional<CallEnter> CE = N->getLocationAs<CallEnter>();
508 if (Optional<CallEnter> CE = Succ->getLocationAs<CallEnter>()) {
621 } else if (StoreSite->getLocation().getAs<CallEnter>()) {
698 if (P.getAs<CallEnter>() && InitE)
917 assert(N->getLocation().getAs<CallEnter>() && "Tracking arg but not at call");
1600 // We are only interested in visiting CallEnter nodes.
1601 Optional<CallEnter> CEnter = ProgLoc.getAs<CallEnter>();
[all...]
H A DCoreEngine.cpp245 CallEnter CEnter = Loc.castAs<CallEnter>();
516 if (N->getLocation().getAs<CallEnter>()) {
H A DExplodedGraph.cpp93 // (10) The successor is neither a CallExpr StmtPoint nor a CallEnter or
158 if (SuccLoc.getAs<CallEnter>() || SuccLoc.getAs<PreImplicitCall>())
H A DBugReporter.cpp591 if (Optional<CallEnter> CE = P.getAs<CallEnter>()) {
1442 if (Optional<CallEnter> CE = P.getAs<CallEnter>()) {
1663 if (Optional<CallEnter> CE = P.getAs<CallEnter>()) {
1716 // as processing CallEnter may change the active path.
H A DExprEngine.cpp1239 if (L.getAs<CallEnter>())
2353 Out << "CallEnter";
/external/clang/include/clang/Analysis/
H A DProgramPoint.h560 /// CallEnter uses the caller's location context.
561 class CallEnter : public ProgramPoint { class in namespace:clang
563 CallEnter(const Stmt *stmt, const StackFrameContext *calleeCtx, function in class:clang::CallEnter
577 CallEnter() {} function in class:clang::CallEnter
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp2183 if (Optional<CallEnter> CEP = N->getLocation().getAs<CallEnter>()) {
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DPathDiagnostic.h579 void setCallee(const CallEnter &CE, const SourceManager &SM);

Completed in 481 milliseconds