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

1 2 3

  /external/clang/lib/StaticAnalyzer/Checkers/
IvarInvalidationChecker.cpp 61 const ObjCIvarDecl*> MethToIvarMapTy;
63 const ObjCIvarDecl*> PropToIvarMapTy;
64 typedef llvm::DenseMap<const ObjCIvarDecl*,
98 typedef llvm::DenseMap<const ObjCIvarDecl*, InvalidationInfo> IvarSet;
131 void markInvalidated(const ObjCIvarDecl *Iv);
189 static bool trackIvar(const ObjCIvarDecl *Iv, IvarSet &TrackedIvars,
190 const ObjCIvarDecl **FirstIvarDecl);
195 static const ObjCIvarDecl *findPropertyBackingIvar(
199 const ObjCIvarDecl **FirstIvarDecl);
203 const ObjCIvarDecl *IvarDecl
    [all...]
DirectIvarAssignment.cpp 56 typedef llvm::DenseMap<const ObjCIvarDecl*,
96 static const ObjCIvarDecl *findPropertyBackingIvar(const ObjCPropertyDecl *PD,
100 ObjCIvarDecl *ID = PD->getPropertyIvarDecl();
129 const ObjCIvarDecl *ID = findPropertyBackingIvar(PD, InterD,
176 if (const ObjCIvarDecl *D = IvarRef->getDecl()) {
ObjCUnusedIVarsChecker.cpp 31 typedef llvm::DenseMap<const ObjCIvarDecl*,IVarState> IvarUsageMap;
38 const ObjCIvarDecl *D = Ex->getDecl();
68 const ObjCIvarDecl *ID = D->getPropertyIvarDecl();
121 if (Ivar->getAccessControl() != ObjCIvarDecl::Private ||
CheckObjCDealloc.cpp 52 static bool scan_ivar_release(Stmt *S, ObjCIvarDecl *ID,
216 ObjCIvarDecl *ID = I->getPropertyIvarDecl();
  /external/clang/lib/CodeGen/
CGObjCRuntime.h 51 class ObjCIvarDecl;
80 const ObjCIvarDecl *Ivar);
83 const ObjCIvarDecl *Ivar);
88 const ObjCIvarDecl *Ivar,
256 const ObjCIvarDecl *Ivar,
260 const ObjCIvarDecl *Ivar) = 0;
291 const ObjCIvarDecl *Ivar);
CGObjCRuntime.cpp 32 const ObjCIvarDecl *Ivar) {
54 for (const ObjCIvarDecl *IVD = Container->all_declared_ivar_begin();
67 const ObjCIvarDecl *Ivar) {
74 const ObjCIvarDecl *Ivar) {
82 const ObjCIvarDecl *Ivar) {
89 const ObjCIvarDecl *Ivar,
CodeGenTypes.h 44 class ObjCIvarDecl;
CGObjC.cpp 517 static void emitStructGetterCall(CodeGenFunction &CGF, ObjCIvarDecl *ivar,
625 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl();
786 ObjCIvarDecl *ivar,
827 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl();
838 ObjCIvarDecl *ivar = propImpl->getPropertyIvarDecl();
    [all...]
  /external/clang/include/clang/AST/
DeclObjC.h 27 class ObjCIvarDecl;
592 ObjCIvarDecl *getIvarDecl(IdentifierInfo *Id) const;
651 /// { // instance variables are represented by ObjCIvarDecl.
696 ObjCIvarDecl *IvarList;
    [all...]
ExprObjC.h 466 ObjCIvarDecl *D;
476 ObjCIvarRefExpr(ObjCIvarDecl *d, QualType t,
491 ObjCIvarDecl *getDecl() { return D; }
492 const ObjCIvarDecl *getDecl() const { return D; }
493 void setDecl(ObjCIvarDecl *d) { D = d; }
    [all...]
  /external/lldb/include/lldb/Core/
ClangForward.h 85 class ObjCIvarDecl;
  /external/clang/lib/ARCMigrate/
TransProperties.cpp 61 ObjCIvarDecl *IvarD;
110 ObjCIvarDecl *ivarD = implD->getPropertyIvarDecl();
305 ObjCIvarDecl *Ivar;
307 PlusOneAssign(ObjCIvarDecl *D) : Ivar(D) {}
360 bool isUserDeclared(ObjCIvarDecl *ivarD) const {
TransZeroOutPropsInDealloc.cpp 171 ObjCIvarDecl *IVDecl = IV->getDecl();
  /external/clang/lib/AST/
DeclObjC.cpp 55 ObjCIvarDecl *
60 if (ObjCIvarDecl *ivar = dyn_cast<ObjCIvarDecl>(*Ivar))
482 ObjCIvarDecl *ObjCInterfaceDecl::lookupInstanceVariable(IdentifierInfo *ID,
493 if (ObjCIvarDecl *I = ClassDecl->getIvarDecl(ID)) {
499 if (ObjCIvarDecl *I = Ext->getIvarDecl(ID)) {
    [all...]
  /external/clang/lib/Analysis/
BodyFarm.cpp 78 ObjCIvarRefExpr *makeObjCIvarRef(const Expr *Base, const ObjCIvarDecl *IVar);
153 const ObjCIvarDecl *IVar) {
154 return new (C) ObjCIvarRefExpr(const_cast<ObjCIvarDecl*>(IVar),
392 const ObjCIvarDecl *IVar = Prop->getPropertyIvarDecl();
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 27 class ObjCIvarDecl;
96 virtual SVal getLValueIvar(const ObjCIvarDecl *decl, SVal base);
MemRegion.h 964 ObjCIvarRegion(const ObjCIvarDecl *ivd, const MemRegion* sReg);
966 static void ProfileRegion(llvm::FoldingSetNodeID& ID, const ObjCIvarDecl *ivd,
970 const ObjCIvarDecl *getDecl() const;
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 148 llvm::SmallPtrSet<ObjCIvarDecl *, 8> > ReferencedIvars;
152 llvm::DenseMap<const ObjCIvarDecl* , unsigned> IvarGroupNumber;
354 std::string getIvarAccessString(ObjCIvarDecl *D);
382 unsigned ObjCIvarBitfieldGroupNo(ObjCIvarDecl *IV);
384 void ObjCIvarBitfieldGroupDecl(ObjCIvarDecl *IV, std::string &Result);
386 void ObjCIvarBitfieldGroupType(ObjCIvarDecl *IV, std::string &Result);
388 void ObjCIvarBitfieldGroupOffset(ObjCIvarDecl *IV, std::string &Result);
390 QualType GetGroupRecordTypeForObjCIvarBitfield(ObjCIvarDecl *IV);
392 ObjCIvarDecl *IV,
393 SmallVectorImpl<ObjCIvarDecl *> &IVars)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 426 // NOTE: We must have this check first because ObjCIvarDecl is a subclass
428 if (const ObjCIvarDecl *ID = dyn_cast<ObjCIvarDecl>(D))
434 SVal StoreManager::getLValueIvar(const ObjCIvarDecl *decl, SVal base) {
MemRegion.cpp 229 ObjCIvarRegion::ObjCIvarRegion(const ObjCIvarDecl *ivd, const MemRegion* sReg)
232 const ObjCIvarDecl *ObjCIvarRegion::getDecl() const {
233 return cast<ObjCIvarDecl>(D);
316 const ObjCIvarDecl *ivd,
953 MemRegionManager::getObjCIvarRegion(const ObjCIvarDecl *d,
    [all...]
  /external/clang/tools/libclang/
IndexDecl.cpp 172 if (!isa<ObjCIvarDecl>(I))
229 if (ObjCIvarDecl *IvarD = D->getPropertyIvarDecl()) {
  /external/clang/lib/Sema/
SemaDeclObjC.cpp     [all...]
SemaObjCProperty.cpp 644 ObjCIvarDecl *ivar) {
669 ivar->getAccessControl() == ObjCIvarDecl::Private) {
721 ObjCPropertyDecl *property, ObjCIvarDecl *ivar) {
    [all...]
SemaExprMember.cpp     [all...]
  /external/lldb/include/lldb/Symbol/
ClangASTType.h 500 clang::ObjCIvarDecl *ivar_decl,

Completed in 474 milliseconds

1 2 3