/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
Environment.h | 39 const Stmt *getStmt() const { return first; } 45 ID.AddPointer(E.getStmt());
|
SymbolManager.h | 172 const Stmt *getStmt() const { return S; } 282 const Stmt *getStmt() const { return S; }
|
ExprEngine.h | 143 const Stmt *getStmt() const;
|
/external/clang/lib/Analysis/ |
CFGStmtMap.cpp | 57 CFGBlock *&Entry = SM[CS->getStmt()];
|
ReachableCode.cpp | 99 const Stmt *S = CS->getStmt(); 105 const Stmt *S = T.getStmt();
|
LiveVariables.cpp | 486 const Stmt *S = elem.castAs<CFGStmt>().getStmt(); 540 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 | 135 if (const CallExpr *CE = dyn_cast<CallExpr>(S->getStmt())) { 193 return S->getStmt();
|
MallocOverflowSecurityChecker.cpp | 240 if (const CallExpr *TheCall = dyn_cast<CallExpr>(CS->getStmt())) {
|
IdempotentOperationChecker.cpp | 336 C.getPredecessor()->getLocation().castAs<StmtPoint>().getStmt(); 586 B = CBM->getBlock(SP->getStmt());
|
MacOSKeychainAPIChecker.cpp | 533 AllocStmt = PS->getStmt(); 607 cast<CallExpr>(N->getLocation().castAs<StmtPoint>().getStmt());
|
MallocChecker.cpp | 77 const Stmt *getStmt() const { return S; } 93 return RefState(Escaped, RS->getStmt(), RS->getAllocationFamily()); [all...] |
/external/clang/include/clang/Analysis/ |
CFG.h | 110 const Stmt *getStmt() const { 258 Stmt *getStmt() { return Data.getPointer(); } 259 const Stmt *getStmt() const { return Data.getPointer(); } 263 operator Stmt *() { return getStmt(); } 264 operator const Stmt *() const { return getStmt(); } 266 Stmt *operator->() { return getStmt(); } 267 const Stmt *operator->() const { return getStmt(); } 269 Stmt &operator*() { return *getStmt(); } 270 const Stmt &operator*() const { return *getStmt(); } 272 LLVM_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 | 70 const Stmt *S = Entry.getStmt(); 168 if (SymReaper.isLive(BlkExpr.getStmt(), BlkExpr.getLocationContext())) { 206 const Stmt *S = En.getStmt();
|
BugReporterVisitors.cpp | 86 const Stmt *S = N->getLocationAs<PreStmt>()->getStmt(); 93 const Stmt *S = N->getLocationAs<PostStmt>()->getStmt(); 184 if (SP->getStmt() == S) 246 const ReturnStmt *Ret = dyn_cast<ReturnStmt>(SP->getStmt()); 552 const Stmt *S = PS->getStmt(); 925 if (ps->getStmt() == S || ps->getStmt() == Inner) [all...] |
ExplodedGraph.cpp | 132 const Expr *Ex = dyn_cast<Expr>(progPoint.castAs<PostStmt>().getStmt()); 153 if (CallEvent::isCallStmt(SP->getStmt()))
|
PathDiagnostic.cpp | 551 return PathDiagnosticLocation(Source.castAs<CFGStmt>().getStmt(), 659 S = SP->getStmt(); 682 const Stmt *PathDiagnosticLocation::getStmt(const ExplodedNode *N) { 685 return SP->getStmt(); 700 if (const Stmt *S = getStmt(N)) { 729 const Stmt *S = getStmt(N); [all...] |
ExprEngine.cpp | 284 ProcessStmt(const_cast<Stmt*>(E.castAs<CFGStmt>().getStmt()), Pred); 312 if (!isa<Expr>(S.getStmt())) 316 if (CallEvent::isCallStmt(S.getStmt())) 322 return !PM.isConsumedExpr(cast<Expr>(S.getStmt())); 412 const Stmt *currStmt = S.getStmt(); [all...] |
ExprEngineC.cpp | 531 if (const BinaryOperator *Term = cast_or_null<BinaryOperator>(T.getStmt())) { 545 const Expr *RHS = cast<Expr>(Elem.getStmt()); 660 const Expr *ValEx = cast<Expr>(CS->getStmt()); [all...] |
BugReporter.cpp | 59 if (const Stmt *S = PathDiagnosticLocation::getStmt(N)) 67 if (const Stmt *S = PathDiagnosticLocation::getStmt(N)) [all...] |
/external/clang/include/clang/Analysis/FlowSensitive/ |
DataflowSolver.h | 281 ProcessStmt(S->getStmt(), recordStmtValues, AnalysisDirTag()); 297 ProcessStmt(S->getStmt(), recordStmtValues, AnalysisDirTag());
|
/external/clang/lib/Sema/ |
JumpDiagnostics.cpp | 498 CheckJump(GS, GS->getLabel()->getStmt(), GS->getGotoLoc(), 508 CheckJump(IGS, Target->getStmt(), IGS->getGotoLoc(), 592 assert(LabelAndGotoScopes.count(TheLabel->getStmt()) && 594 unsigned LabelScope = LabelAndGotoScopes[TheLabel->getStmt()]; 692 S.Diag(Target->getStmt()->getIdentLoc(), diag::note_indirect_goto_target); 736 S.Diag(Target->getStmt()->getIdentLoc(), diag::note_indirect_goto_target);
|
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
BugReporter.h | 277 const Stmt *getStmt() const;
|