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

1 2

  /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();
UninitializedValues.cpp 175 const BinaryOperator *b = dyn_cast_or_null<BinaryOperator>(cstmt->getStmt());
665 tf.Visit(const_cast<Stmt*>(cs->getStmt()));
LiveVariables.cpp 528 const Stmt *S = cast<CFGStmt>(elem).getStmt();
576 if (const BinaryOperator *BO = dyn_cast<BinaryOperator>(cs->getStmt())) {
CFG.cpp     [all...]
ThreadSafety.cpp 812 LocksetBuilder.Visit(const_cast<Stmt*>(CfgStmt->getStmt()));
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 99 const Stmt *getStmt() const {
226 Stmt *getStmt() { return Data.getPointer(); }
227 const Stmt *getStmt() const { return Data.getPointer(); }
231 operator Stmt *() { return getStmt(); }
232 operator const Stmt *() const { return getStmt(); }
234 Stmt *operator->() { return getStmt(); }
235 const Stmt *operator->() const { return getStmt(); }
237 Stmt &operator*() { return *getStmt(); }
238 const Stmt &operator*() const { return *getStmt(); }
240 operator bool() const { return getStmt(); }
    [all...]
ProgramPoint.h 170 const Stmt *getStmt() const { return (const Stmt*) getData1(); }
173 const T* getStmtAs() const { return llvm::dyn_cast<T>(getStmt()); }
  /external/clang/lib/StaticAnalyzer/Checkers/
UnreachableCodeChecker.cpp 119 if (const CallExpr *CE = dyn_cast<CallExpr>(S->getStmt())) {
177 return S->getStmt();
AnalyzerStatsChecker.cpp 110 PathDiagnosticLocation::createBegin(CS->getStmt(), SM, LC));
UndefBranchChecker.cpp 99 if (PS->getStmt() == Ex)
MallocOverflowSecurityChecker.cpp 241 if (const CallExpr *TheCall = dyn_cast<CallExpr>(CS->getStmt())) {
IdempotentOperationChecker.cpp 333 = cast<StmtPoint>(C.getPredecessor()->getLocation()).getStmt();
581 B = CBM->getBlock(SP->getStmt());
MacOSKeychainAPIChecker.cpp 616 .getStmt());
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 34 const Stmt *S = N->getLocationAs<PostStmt>()->getStmt();
51 const Stmt *S = N->getLocationAs<PreStmt>()->getStmt();
59 const Stmt *S = N->getLocationAs<PreStmt>()->getStmt();
66 const Stmt *S = N->getLocationAs<PostStmt>()->getStmt();
99 const Stmt *S = BR.getStmt();
315 if (ps->getStmt() == S)
484 return VisitTrueTest(cast<Expr>(PS->getStmt()), true,
487 return VisitTrueTest(cast<Expr>(PS->getStmt()), false,
ExplodedGraph.cpp 101 if (isa<BinaryOperator>(ps.getStmt()))
112 if (node->getCFG().isBlkExpr(ps.getStmt()))
PathDiagnostic.cpp 192 S = PS->getStmt();
212 return PathDiagnosticLocation(PS->getStmt(), SM, LC);
BugReporter.cpp 41 static inline const Stmt *GetStmt(const ProgramPoint &P) {
43 return SP->getStmt();
62 if (const Stmt *S = GetStmt(N->getLocation()))
70 if (const Stmt *S = GetStmt(N->getLocation())) {
94 if (const Stmt *S = GetStmt(N->getLocation()))
102 if (const Stmt *S = GetStmt(N->getLocation()))
339 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(cast<PostStmt>(P).getStmt());
791 ScanNotableSymbols SNS(N, PS->getStmt(), PDB.getBugReporter(), PD);
    [all...]
ExprEngine.cpp 205 ProcessStmt(const_cast<Stmt*>(E.getAs<CFGStmt>()->getStmt()), Bldr, Pred);
230 currentStmt = S.getStmt();
    [all...]
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 478 CheckJump(GS, GS->getLabel()->getStmt(), GS->getGotoLoc(),
487 CheckJump(IGS, Target->getStmt(), IGS->getGotoLoc(),
563 assert(LabelAndGotoScopes.count(TheLabel->getStmt()) &&
565 unsigned LabelScope = LabelAndGotoScopes[TheLabel->getStmt()];
650 S.Diag(Target->getStmt()->getIdentLoc(), diag::note_indirect_goto_target);
AnalysisBasedWarnings.cpp 168 const Stmt *S = CS.getStmt();
    [all...]
  /external/clang/include/clang/Analysis/FlowSensitive/
DataflowSolver.h 281 ProcessStmt(S->getStmt(), recordStmtValues, AnalysisDirTag());
297 ProcessStmt(S->getStmt(), recordStmtValues, AnalysisDirTag());
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 138 const Stmt *getStmt() const { return S; }
246 const Stmt *getStmt() const { return S; }
CoreEngine.h 331 /// getStmt - Return the current block-level expression associated with
333 const Stmt *getStmt() const {
335 return CS ? CS->getStmt() : 0;
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 128 const Stmt *getStmt() const;

Completed in 290 milliseconds

1 2