HomeSort by relevance Sort by last modified time
    Searched refs:DeclRegion (Results 1 - 3 of 3) sorted by null

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 637 class DeclRegion : public TypedRegion {
641 DeclRegion(const Decl* d, const MemRegion* sReg, Kind k)
659 class VarRegion : public DeclRegion {
664 : DeclRegion(vd, sReg, VarRegionKind) {}
668 DeclRegion::ProfileRegion(ID, VD, superRegion, VarRegionKind);
720 class FieldRegion : public DeclRegion {
724 : DeclRegion(fd, sReg, FieldRegionKind) {}
741 DeclRegion::ProfileRegion(ID, FD, superRegion, FieldRegionKind);
749 class ObjCIvarRegion : public DeclRegion {
754 : DeclRegion(ivd, sReg, ObjCIvarRegionKind) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCSelfInitChecker.cpp 342 if (const DeclRegion *DR = dyn_cast<DeclRegion>(MRV.getRegion()))
  /external/clang/lib/StaticAnalyzer/Core/
MemRegion.cpp 180 DefinedOrUnknownSVal DeclRegion::getExtent(SValBuilder &svalBuilder) const {
195 DefinedOrUnknownSVal Extent = DeclRegion::getExtent(svalBuilder);
288 void DeclRegion::ProfileRegion(llvm::FoldingSetNodeID& ID, const Decl* D,
295 void DeclRegion::Profile(llvm::FoldingSetNodeID& ID) const {
296 DeclRegion::ProfileRegion(ID, D, superRegion, getKind());

Completed in 18 milliseconds