Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:OID

405   llvm::Constant *GeneratePropertyList(const ObjCImplementationDecl *OID,
503 const ObjCInterfaceDecl *OID);
1034 const ObjCInterfaceDecl *OID) {
1035 return GetClassNamed(CGF, OID->getNameAsString(), OID->isWeakImported());
2060 llvm::Constant *CGObjCGNU::GeneratePropertyList(const ObjCImplementationDecl *OID,
2074 iter = OID->propimpl_begin(), endIter = OID->propimpl_end();
2084 Fields.push_back(MakePropertyEncodingString(property, OID));
2139 void CGObjCGNU::GenerateClass(const ObjCImplementationDecl *OID) {
2144 OID->getClassInterface()->getSuperClass();
2153 const_cast<ObjCInterfaceDecl *>(OID->getClassInterface());
2169 Context.getASTObjCImplementationLayout(OID).getSize().getQuantity();
2197 uint64_t BaseOffset = ComputeIvarBaseOffset(CGM, OID, IVD);
2246 iter = OID->instmeth_begin(), endIter = OID->instmeth_end();
2254 llvm::Constant *Properties = GeneratePropertyList(OID, InstanceMethodSels,
2262 iter = OID->classmeth_begin(), endIter = OID->classmeth_end();
2812 const ObjCInterfaceDecl *OID,
2814 for (const ObjCIvarDecl *next = OID->all_declared_ivar_begin(); next;
2817 return OID;
2821 if (const ObjCInterfaceDecl *Super = OID->getSuperClass())