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

  /external/clang/include/clang/Analysis/
ProgramPoint.h 170 const Stmt *getStmt() const { return (const Stmt*) getData1(); }
173 const T* getStmtAs() const { return llvm::dyn_cast<T>(getStmt()); }
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...]
  /external/clang/include/clang/AST/
Decl.h 337 LabelStmt *getStmt() const { return TheStmt; }
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 331 /// getStmt - Return the current block-level expression associated with
333 const Stmt *getStmt() const {
335 return CS ? CS->getStmt() : 0;
SymbolManager.h 138 const Stmt *getStmt() const { return S; }
246 const Stmt *getStmt() const { return S; }
  /external/clang/lib/StaticAnalyzer/Core/
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...]

Completed in 189 milliseconds