Home | History | Annotate | Download | only in Frontend

Lines Matching refs:IVars

3112 /// an objective-c class with ivars.
3129 // If no ivars and no root or if its root, directly or indirectly,
3130 // have no ivars (thus not synthesized) then no need to synthesize this class.
5335 // Build _objc_ivar_list metadata for classes ivars if needed
5374 SmallVector<ObjCIvarDecl *, 8> IVars;
5376 for (auto *IV : IDecl->ivars())
5377 IVars.push_back(IV);
5451 struct _objc_ivar_list *ivars;
5468 Result += "\tstruct _objc_ivar_list *ivars;\n";
5506 // Set 'ivars' field for root class to 0. ObjC1 runtime does not use it.