Home | History | Annotate | Download | only in Rewrite

Lines Matching defs:IVars

3103 /// an objective-c class with ivars.
3120 // If no ivars and no root or if its root, directly or indirectly,
3121 // have no ivars (thus not synthesized) then no need to synthesize this class.
5315 // Build _objc_ivar_list metadata for classes ivars if needed
5354 SmallVector<ObjCIvarDecl *, 8> IVars;
5356 for (auto *IV : IDecl->ivars())
5357 IVars.push_back(IV);
5431 struct _objc_ivar_list *ivars;
5448 Result += "\tstruct _objc_ivar_list *ivars;\n";
5486 // Set 'ivars' field for root class to 0. ObjC1 runtime does not use it.