Searched refs:classDecl (Results 1 – 5 of 5) sorted by relevance
1712 ObjCInterfaceDecl *classDecl = in GenerateClass() local1714 std::string className = classDecl->getNameAsString(); in GenerateClass()1766 metaclassFields.add(GeneratePropertyList(OID, classDecl, /*isClassProperty*/true)); in GenerateClass()1819 if (classDecl->all_declared_ivar_begin() == nullptr) in GenerateClass()1823 for (const ObjCIvarDecl *IVD = classDecl->all_declared_ivar_begin(); IVD; in GenerateClass()1842 for (const ObjCIvarDecl *IVD = classDecl->all_declared_ivar_begin(); IVD; in GenerateClass()1857 std::string OffsetName = GetIVarOffsetVariableName(classDecl, IVD); in GenerateClass()1868 classDecl->getVisibility() == HiddenVisibility) ? in GenerateClass()1928 auto RuntimeProtocols = GetRuntimeProtocolList(classDecl->protocol_begin(), in GenerateClass()1929 classDecl->protocol_end()); in GenerateClass()[all …]
4185 if (const ObjCInterfaceDecl *classDecl = dyn_cast<ObjCInterfaceDecl>(dc)) { in isObjCMethodWithTypeParams() local4186 return classDecl->getTypeParamListAsWritten(); in isObjCMethodWithTypeParams()
5318 const CXXRecordDecl *classDecl = ty->getAsCXXRecordDecl(); in getDestructorDecl() local5319 assert(classDecl); in getDestructorDecl()5320 return classDecl->getDestructor(); in getDestructorDecl()5326 const CXXRecordDecl *classDecl = in getDestructorDecl() local5328 return classDecl->getDestructor(); in getDestructorDecl()5344 const CXXRecordDecl *classDecl = ty->getAsCXXRecordDecl(); in getDestructorDecl() local5345 assert(classDecl); in getDestructorDecl()5346 return classDecl->getDestructor(); in getDestructorDecl()
1634 ObjCInterfaceDecl *classDecl = getInterface(); in computeSuperClassTypeSlow() local1635 if (!classDecl) { in computeSuperClassTypeSlow()1641 const ObjCObjectType *superClassObjTy = classDecl->getSuperClassType(); in computeSuperClassTypeSlow()1671 ObjCTypeParamList *typeParams = classDecl->getTypeParamList(); in computeSuperClassTypeSlow()1682 = classDecl->getASTContext().getObjCInterfaceType( in computeSuperClassTypeSlow()1694 superClassType.substObjCTypeArgs(classDecl->getASTContext(), typeArgs, in computeSuperClassTypeSlow()
2172 if (auto classDecl = CurMethod->getClassInterface()) { in ActOnClassPropertyRefExpr() local2173 SuperType = QualType(classDecl->getSuperClassType(), 0); in ActOnClassPropertyRefExpr()