HomeSort by relevance Sort by last modified time
    Searched refs:CallEnter (Results 1 - 12 of 12) sorted by null

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SubEngine.h 98 virtual void processCallEnter(CallEnter CE, ExplodedNode *Pred) = 0;
ExprEngine.h 258 void processCallEnter(CallEnter CE, ExplodedNode *Pred) override;
  /external/clang/lib/StaticAnalyzer/Core/
PathDiagnostic.cpp 75 IntrusiveRefCntPtr<PathDiagnosticEventPiece> CallEnter =
77 if (CallEnter)
78 Current.push_back(CallEnter);
128 SourceLocation CallLoc = CP->callEnter.asLocation();
305 FullSourceLoc X_CEL = X.callEnter.asLocation();
306 FullSourceLoc Y_CEL = Y.callEnter.asLocation();
678 } else if (Optional<CallEnter> CE = P.getAs<CallEnter>()) {
699 if (Optional<CallEnter> CE = P.getAs<CallEnter>())
    [all...]
ExprEngineCallAndReturn.cpp 40 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);
    [all...]
BugReporterVisitors.cpp 344 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");
    [all...]
CoreEngine.cpp 245 CallEnter CEnter = Loc.castAs<CallEnter>();
516 if (N->getLocation().getAs<CallEnter>()) {
ExplodedGraph.cpp 93 // (10) The successor is neither a CallExpr StmtPoint nor a CallEnter or
158 if (SuccLoc.getAs<CallEnter>() || SuccLoc.getAs<PreImplicitCall>())
BugReporter.cpp 230 if (CallerIsImplicit || !Call->callEnter.asLocation().isValid())
231 Call->callEnter = *LastCallLocation;
243 ThisCallLocation = &Call->callEnter;
591 if (Optional<CallEnter> CE = P.getAs<CallEnter>()) {
    [all...]
ExprEngine.cpp     [all...]
  /external/clang/include/clang/Analysis/
ProgramPoint.h 560 /// CallEnter uses the caller's location context.
561 class CallEnter : public ProgramPoint {
563 CallEnter(const Stmt *stmt, const StackFrameContext *calleeCtx,
577 CallEnter() {}
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 569 PathDiagnosticLocation callEnter;
579 void setCallee(const CallEnter &CE, const SourceManager &SM);
587 return callEnter;
596 callEnter.flatten();
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp     [all...]

Completed in 376 milliseconds