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

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SubEngine.h 89 virtual void processCallEnter(CallEnter CE, ExplodedNode *Pred) = 0;
ExprEngine.h 246 void processCallEnter(CallEnter CE, ExplodedNode *Pred);
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 333 Optional<CallEnter> CE = N->getLocationAs<CallEnter>();
460 if (Optional<CallEnter> CE = Succ->getLocationAs<CallEnter>()) {
569 } else if (StoreSite->getLocation().getAs<CallEnter>()) {
630 if (P.getAs<CallEnter>() && InitE)
812 assert(N->getLocation().getAs<CallEnter>() && "Tracking arg but not at call");
    [all...]
ExprEngineCallAndReturn.cpp 39 void ExprEngine::processCallEnter(CallEnter CE, ExplodedNode *Pred) {
91 Optional<CallEnter> CE;
94 CE = Node->getLocationAs<CallEnter>();
101 } else if (Optional<CallEnter> CE = PP.getAs<CallEnter>()) {
102 // If we reached the CallEnter for this function, it has no statements.
441 CallEnter Loc(CallE, CalleeSFC, CurLC);
    [all...]
CoreEngine.cpp 245 CallEnter CEnter = Loc.castAs<CallEnter>();
498 if (N->getLocation().getAs<CallEnter>()) {
PathDiagnostic.cpp 73 IntrusiveRefCntPtr<PathDiagnosticEventPiece> CallEnter =
75 if (CallEnter)
76 Current.push_back(CallEnter);
238 FullSourceLoc X_CEL = X.callEnter.asLocation();
239 FullSourceLoc Y_CEL = Y.callEnter.asLocation();
593 } else if (Optional<CallEnter> CE = P.getAs<CallEnter>()) {
771 void PathDiagnosticCallPiece::setCallee(const CallEnter &CE,
777 callEnter = getLocationForCaller(CalleeCtx, CE.getLocationContext(), SM);
861 assert(callEnter.asLocation().isValid())
    [all...]
BugReporter.cpp 60 if (Optional<CallEnter> CE = P.getAs<CallEnter>())
276 if (!Call->callEnter.asLocation().isValid() ||
278 Call->callEnter = *LastCallLocation;
291 ThisCallLocation = &Call->callEnter;
597 if (Optional<CallEnter> CE = P.getAs<CallEnter>()) {
    [all...]
ExprEngine.cpp     [all...]
  /external/clang/include/clang/Analysis/
ProgramPoint.h 545 /// CallEnter uses the caller's location context.
546 class CallEnter : public ProgramPoint {
548 CallEnter(const Stmt *stmt, const StackFrameContext *calleeCtx,
562 CallEnter() {}
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 534 PathDiagnosticLocation callEnter;
544 void setCallee(const CallEnter &CE, const SourceManager &SM);
552 return callEnter;
561 callEnter.flatten();

Completed in 2729 milliseconds