Home | History | Annotate | Download | only in AST

Lines Matching refs:Ivars

1177 /// This routine first collects all declared, but not synthesized, ivars in
1178 /// super class and then collects all ivars, including those synthesized for
1180 /// when all ivars, declared and synthesized are known.
1184 SmallVectorImpl<const ObjCIvarDecl*> &Ivars) const {
1186 DeepCollectObjCIvars(SuperClass, false, Ivars);
1190 Ivars.push_back(*I);
1195 Ivars.push_back(Iv);
1249 // Count ivars declared in class extension.
1255 // includes synthesized ivars.
4261 // closely resembles encoding of ivars.
4638 SmallVector<const ObjCIvarDecl*, 32> Ivars;
4639 DeepCollectObjCIvars(OI, true, Ivars);
4640 for (unsigned i = 0, e = Ivars.size(); i != e; ++i) {
4641 const FieldDecl *Field = cast<FieldDecl>(Ivars[i]);