HomeSort by relevance Sort by last modified time
    Searched refs:getStmt (Results 1 - 25 of 37) 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; }
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())) {
ThreadSafety.cpp     [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 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/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 532 AllocStmt = PS->getStmt();
606 cast<CallExpr>(N->getLocation().castAs<StmtPoint>().getStmt());
  /external/clang/lib/StaticAnalyzer/Core/
Environment.cpp 70 const Stmt *S = Entry.getStmt();
196 if (SymReaper.isLive(BlkExpr.getStmt(), BlkExpr.getLocationContext())) {
234 const Stmt *S = En.getStmt();
BugReporterVisitors.cpp 79 const Stmt *S = N->getLocationAs<PreStmt>()->getStmt();
86 const Stmt *S = N->getLocationAs<PostStmt>()->getStmt();
175 if (SP->getStmt() == S)
237 const ReturnStmt *Ret = dyn_cast<ReturnStmt>(SP->getStmt());
505 const Stmt *S = PS->getStmt();
820 if (ps->getStmt() == S || ps->getStmt() == Inner)
846 if (P->getStmt() == Inner)
    [all...]
ExplodedGraph.cpp 132 const Expr *Ex = dyn_cast<Expr>(ps.getStmt());
153 if (CallEvent::isCallStmt(SP->getStmt()))
ExprEngine.cpp 254 ProcessStmt(const_cast<Stmt*>(E.castAs<CFGStmt>().getStmt()), Pred);
283 if (!isa<Expr>(S.getStmt()))
287 if (CallEvent::isCallStmt(S.getStmt()))
293 return !PM.isConsumedExpr(cast<Expr>(S.getStmt()));
383 const Stmt *currStmt = S.getStmt();
    [all...]
ExprEngineC.cpp 542 if (const BinaryOperator *Term = cast_or_null<BinaryOperator>(T.getStmt())) {
556 const Expr *RHS = cast<Expr>(Elem.getStmt());
663 const Expr *ValEx = cast<Expr>(CS->getStmt());
    [all...]
PathDiagnostic.cpp 480 return PathDiagnosticLocation(Source.castAs<CFGStmt>().getStmt(),
588 S = SP->getStmt();
619 S = PS->getStmt();
    [all...]
ExprEngineCXX.cpp 118 if (const DeclStmt *DS = dyn_cast<DeclStmt>(StmtElem->getStmt())) {
  /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 493 CheckJump(GS, GS->getLabel()->getStmt(), GS->getGotoLoc(),
503 CheckJump(IGS, Target->getStmt(), IGS->getGotoLoc(),
587 assert(LabelAndGotoScopes.count(TheLabel->getStmt()) &&
589 unsigned LabelScope = LabelAndGotoScopes[TheLabel->getStmt()];
687 S.Diag(Target->getStmt()->getIdentLoc(), diag::note_indirect_goto_target);
731 S.Diag(Target->getStmt()->getIdentLoc(), diag::note_indirect_goto_target);
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 276 const Stmt *getStmt() const;

Completed in 160 milliseconds

1 2