HomeSort by relevance Sort by last modified time
    Searched defs:getStmt (Results 1 - 7 of 7) sorted by null

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CheckerContext.h 75 const Stmt *getStmt() const { return statement; }
CoreEngine.h 242 /// getStmt - Return the current block-level expression associated with
244 const Stmt* getStmt() const {
246 return CS ? CS->getStmt() : 0;
SymbolManager.h 135 const Stmt* getStmt() const { return S; }
243 const Stmt* getStmt() const { return S; }
  /external/clang/include/clang/Analysis/
ProgramPoint.h 159 const Stmt *getStmt() const { return (const Stmt*) getData1(); }
162 const T* getStmtAs() const { return llvm::dyn_cast<T>(getStmt()); }
CFG.h 103 Stmt *getStmt() const { return static_cast<Stmt *>(Data1.getPointer()); }
228 Stmt *getStmt() { return Data.getPointer(); }
229 const Stmt *getStmt() const { return Data.getPointer(); }
233 operator Stmt *() { return getStmt(); }
234 operator const Stmt *() const { return getStmt(); }
236 Stmt *operator->() { return getStmt(); }
237 const Stmt *operator->() const { return getStmt(); }
239 Stmt &operator*() { return *getStmt(); }
240 const Stmt &operator*() const { return *getStmt(); }
242 operator bool() const { return getStmt(); }
    [all...]
  /external/clang/include/clang/AST/
Decl.h 326 LabelStmt *getStmt() const { return TheStmt; }
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 62 static inline const Stmt* GetStmt(const ProgramPoint &P) {
64 return SP->getStmt();
83 if (const Stmt *S = GetStmt(N->getLocation()))
91 if (const Stmt *S = GetStmt(N->getLocation())) {
120 if (const Stmt *S = GetStmt(N->getLocation()))
128 if (const Stmt *S = GetStmt(N->getLocation()))
360 const DeclRefExpr* DR = dyn_cast<DeclRefExpr>(cast<PostStmt>(P).getStmt());
794 ScanNotableSymbols SNS(N, PS->getStmt(), PDB.getBugReporter(), PD);
    [all...]

Completed in 63 milliseconds