Home | History | Annotate | Download | only in Sema

Lines Matching refs:Ivar

1797   if (ObjCIvarDecl *Ivar = dyn_cast<ObjCIvarDecl>(Decl)) {
1799 if (Ivar->getCanonicalAccessControl() == ObjCIvarDecl::Public ||
1800 Ivar->getCanonicalAccessControl() == ObjCIvarDecl::Package)
1822 // If we're not in an interface, this ivar is inaccessible.
1826 // If we're inside the same interface that owns the ivar, we're fine.
1827 if (declaresSameEntity(ClassOfMethodDecl, Ivar->getContainingInterface()))
1830 // If the ivar is private, it's inaccessible.
1831 if (Ivar->getCanonicalAccessControl() == ObjCIvarDecl::Private)
1834 return Ivar->getContainingInterface()->isSuperClassOf(ClassOfMethodDecl);