HomeSort by relevance Sort by last modified time
    Searched refs:getStmt (Results 1 - 25 of 39) sorted by null

1 2

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
Environment.h 39 const Stmt *getStmt() const { return first; }
45 ID.AddPointer(E.getStmt());
SymbolManager.h 169 const Stmt *getStmt() const { return S; }
279 const Stmt *getStmt() const { return S; }
  /external/clang/lib/Analysis/
CFGStmtMap.cpp 57 CFGBlock *&Entry = SM[CS->getStmt()];
ReachableCode.cpp 71 if (const ReturnStmt *RS = dyn_cast<ReturnStmt>(CS->getStmt())) {
417 const Stmt *S = CS->getStmt();
424 const Stmt *S = T.getStmt();
Consumed.cpp 62 return CS->getStmt()->getLocStart();
81 return CS->getStmt()->getLocStart();
    [all...]
LiveVariables.cpp 466 const Stmt *S = elem.castAs<CFGStmt>().getStmt();
520 dyn_cast<BinaryOperator>(cs->getStmt())) {
  /external/clang/lib/StaticAnalyzer/Checkers/
UndefBranchChecker.cpp 94 if (PS->getStmt() == Ex)
AnalyzerStatsChecker.cpp 133 PathDiagnosticLocation::createBegin(CS->getStmt(), SM, LC));
UnreachableCodeChecker.cpp 138 if (const CallExpr *CE = dyn_cast<CallExpr>(S->getStmt())) {
199 return S->getStmt();
MallocOverflowSecurityChecker.cpp 241 if (const CallExpr *TheCall = dyn_cast<CallExpr>(CS->getStmt())) {
MacOSKeychainAPIChecker.cpp 543 AllocStmt = PS->getStmt();
617 cast<CallExpr>(N->getLocation().castAs<StmtPoint>().getStmt());
MallocChecker.cpp 84 const Stmt *getStmt() const { return S; }
94 return RefState(AllocatedOfSizeZero, RS->getStmt(),
104 return RefState(Escaped, RS->getStmt(), RS->getAllocationFamily());
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 119 const Stmt *getStmt() const {
311 Stmt *getStmt() { return Data.getPointer(); }
312 const Stmt *getStmt() const { return Data.getPointer(); }
316 operator Stmt *() { return getStmt(); }
317 operator const Stmt *() const { return getStmt(); }
319 Stmt *operator->() { return getStmt(); }
320 const Stmt *operator->() const { return getStmt(); }
322 Stmt &operator*() { return *getStmt(); }
323 const Stmt &operator*() const { return *getStmt(); }
325 explicit operator bool() const { return getStmt(); }
    [all...]
ProgramPoint.h 247 const Stmt *getStmt() const { return (const Stmt*) getData1(); }
250 const T* getStmtAs() const { return dyn_cast<T>(getStmt()); }
  /external/clang/lib/StaticAnalyzer/Core/
Environment.cpp 71 const Stmt *S = Entry.getStmt();
169 if (SymReaper.isLive(BlkExpr.getStmt(), BlkExpr.getLocationContext())) {
207 const Stmt *S = En.getStmt();
BugReporterVisitors.cpp 86 const Stmt *S = N->getLocationAs<PreStmt>()->getStmt();
93 const Stmt *S = N->getLocationAs<PostStmt>()->getStmt();
179 if (SP->getStmt() == S)
242 const ReturnStmt *Ret = dyn_cast<ReturnStmt>(SP->getStmt());
548 const Stmt *S = PS->getStmt();
921 if (ps->getStmt() == S || ps->getStmt() == Inner)
    [all...]
ExplodedGraph.cpp 133 const Expr *Ex = dyn_cast<Expr>(progPoint.castAs<PostStmt>().getStmt());
154 if (CallEvent::isCallStmt(SP->getStmt()))
PathDiagnostic.cpp 552 return PathDiagnosticLocation(Source.castAs<CFGStmt>().getStmt(),
673 S = SP->getStmt();
696 const Stmt *PathDiagnosticLocation::getStmt(const ExplodedNode *N) {
699 return SP->getStmt();
714 if (const Stmt *S = getStmt(N)) {
743 const Stmt *S = getStmt(N);
    [all...]
ExprEngine.cpp 295 ProcessStmt(const_cast<Stmt*>(E.castAs<CFGStmt>().getStmt()), Pred);
328 if (!isa<Expr>(S.getStmt()))
332 if (CallEvent::isCallStmt(S.getStmt()))
338 return !PM.isConsumedExpr(cast<Expr>(S.getStmt()));
428 const Stmt *currStmt = S.getStmt();
    [all...]
CoreEngine.cpp 352 cast<CXXBindTemporaryExpr>(B->getTerminator().getStmt()), B, Pred);
559 PostStmt Loc(CS.getStmt(), N->getLocationContext());
ExprEngineC.cpp 543 if (const BinaryOperator *Term = cast_or_null<BinaryOperator>(T.getStmt())) {
557 const Expr *RHS = cast<Expr>(Elem.getStmt());
670 const Expr *ValEx = cast<Expr>(CS->getStmt());
    [all...]
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 527 if (GS->getLabel()->getStmt()) {
528 CheckJump(GS, GS->getLabel()->getStmt(), GS->getGotoLoc(),
540 CheckJump(IGS, Target->getStmt(), IGS->getGotoLoc(),
625 if (CHECK_PERMISSIVE(!LabelAndGotoScopes.count(TheLabel->getStmt())))
627 unsigned LabelScope = LabelAndGotoScopes[TheLabel->getStmt()];
725 S.Diag(Target->getStmt()->getIdentLoc(), diag::note_indirect_goto_target);
771 S.Diag(Target->getStmt()->getIdentLoc(), diag::note_indirect_goto_target);
    [all...]
AnalysisBasedWarnings.cpp 199 const CallExpr *CE = dyn_cast<CallExpr>(B.getAs<CFGStmt>()->getStmt());
360 const Stmt *S = CS.getStmt();
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyCommon.h 190 V.handleStatement(BI.castAs<CFGStmt>().getStmt());
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 277 const Stmt *getStmt() const;

Completed in 347 milliseconds

1 2