Searched refs:classDecl (Results 1 – 6 of 6) sorted by relevance
168 if (const CXXRecordDecl *classDecl = calleeDecl->getParent()) { in shouldSkipCall() local169 if (isRefCounted(classDecl)) in shouldSkipCall()
1719 ObjCInterfaceDecl *classDecl = in GenerateClass() local1721 std::string className = classDecl->getNameAsString(); in GenerateClass()1772 metaclassFields.add(GeneratePropertyList(OID, classDecl, /*isClassProperty*/true)); in GenerateClass()1825 if (classDecl->all_declared_ivar_begin() == nullptr) in GenerateClass()1829 for (const ObjCIvarDecl *IVD = classDecl->all_declared_ivar_begin(); IVD; in GenerateClass()1848 for (const ObjCIvarDecl *IVD = classDecl->all_declared_ivar_begin(); IVD; in GenerateClass()1863 std::string OffsetName = GetIVarOffsetVariableName(classDecl, IVD); in GenerateClass()1874 classDecl->getVisibility() == HiddenVisibility) ? in GenerateClass()1936 auto RuntimeProtocols = GetRuntimeProtocolList(classDecl->protocol_begin(), in GenerateClass()1937 classDecl->protocol_end()); in GenerateClass()[all …]
4437 if (const ObjCInterfaceDecl *classDecl = dyn_cast<ObjCInterfaceDecl>(dc)) { in isObjCMethodWithTypeParams() local4438 return classDecl->getTypeParamListAsWritten(); in isObjCMethodWithTypeParams()
5324 const CXXRecordDecl *classDecl = ty->getAsCXXRecordDecl(); in getDestructorDecl() local5325 assert(classDecl); in getDestructorDecl()5326 return classDecl->getDestructor(); in getDestructorDecl()5332 const CXXRecordDecl *classDecl = in getDestructorDecl() local5334 return classDecl->getDestructor(); in getDestructorDecl()5350 const CXXRecordDecl *classDecl = ty->getAsCXXRecordDecl(); in getDestructorDecl() local5351 assert(classDecl); in getDestructorDecl()5352 return classDecl->getDestructor(); in getDestructorDecl()
1733 ObjCInterfaceDecl *classDecl = getInterface(); in computeSuperClassTypeSlow() local1734 if (!classDecl) { in computeSuperClassTypeSlow()1740 const ObjCObjectType *superClassObjTy = classDecl->getSuperClassType(); in computeSuperClassTypeSlow()1770 ObjCTypeParamList *typeParams = classDecl->getTypeParamList(); in computeSuperClassTypeSlow()1781 = classDecl->getASTContext().getObjCInterfaceType( in computeSuperClassTypeSlow()1793 superClassType.substObjCTypeArgs(classDecl->getASTContext(), typeArgs, in computeSuperClassTypeSlow()
2184 if (auto classDecl = CurMethod->getClassInterface()) { in ActOnClassPropertyRefExpr() local2185 SuperType = QualType(classDecl->getSuperClassType(), 0); in ActOnClassPropertyRefExpr()