Home | History | Annotate | Download | only in AST

Lines Matching refs:Ivars

1677 /// This routine first collects all declared, but not synthesized, ivars in
1678 /// super class and then collects all ivars, including those synthesized for
1680 /// when all ivars, declared and synthesized are known.
1684 SmallVectorImpl<const ObjCIvarDecl*> &Ivars) const {
1686 DeepCollectObjCIvars(SuperClass, false, Ivars);
1690 Ivars.push_back(*I);
1695 Ivars.push_back(Iv);
1753 // Count ivars declared in class extension.
1762 // includes synthesized ivars.
4820 // closely resembles encoding of ivars.
5244 SmallVector<const ObjCIvarDecl*, 32> Ivars;
5245 DeepCollectObjCIvars(OI, true, Ivars);
5246 for (unsigned i = 0, e = Ivars.size(); i != e; ++i) {
5247 const FieldDecl *Field = cast<FieldDecl>(Ivars[i]);