Home
last modified time | relevance | path

Searched refs:classDecl (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCGNU.cpp1709 ObjCInterfaceDecl *classDecl = in GenerateClass() local
1711 std::string className = classDecl->getNameAsString(); in GenerateClass()
1763 metaclassFields.add(GeneratePropertyList(OID, classDecl, /*isClassProperty*/true)); in GenerateClass()
1816 if (classDecl->all_declared_ivar_begin() == nullptr) in GenerateClass()
1820 for (const ObjCIvarDecl *IVD = classDecl->all_declared_ivar_begin(); IVD; in GenerateClass()
1839 for (const ObjCIvarDecl *IVD = classDecl->all_declared_ivar_begin(); IVD; in GenerateClass()
1854 std::string OffsetName = GetIVarOffsetVariableName(classDecl, IVD); in GenerateClass()
1865 classDecl->getVisibility() == HiddenVisibility) ? in GenerateClass()
1925 auto RuntimeProtocols = GetRuntimeProtocolList(classDecl->protocol_begin(), in GenerateClass()
1926 classDecl->protocol_end()); in GenerateClass()
[all …]
H A DCGCall.cpp4051 if (const ObjCInterfaceDecl *classDecl = dyn_cast<ObjCInterfaceDecl>(dc)) { in isObjCMethodWithTypeParams() local
4052 return classDecl->getTypeParamListAsWritten(); in isObjCMethodWithTypeParams()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DType.cpp1604 ObjCInterfaceDecl *classDecl = getInterface(); in computeSuperClassTypeSlow() local
1605 if (!classDecl) { in computeSuperClassTypeSlow()
1611 const ObjCObjectType *superClassObjTy = classDecl->getSuperClassType(); in computeSuperClassTypeSlow()
1641 ObjCTypeParamList *typeParams = classDecl->getTypeParamList(); in computeSuperClassTypeSlow()
1652 = classDecl->getASTContext().getObjCInterfaceType( in computeSuperClassTypeSlow()
1664 superClassType.substObjCTypeArgs(classDecl->getASTContext(), typeArgs, in computeSuperClassTypeSlow()
/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp5047 const CXXRecordDecl *classDecl = ty->getAsCXXRecordDecl(); in getDestructorDecl() local
5048 assert(classDecl); in getDestructorDecl()
5049 return classDecl->getDestructor(); in getDestructorDecl()
5055 const CXXRecordDecl *classDecl = in getDestructorDecl() local
5057 return classDecl->getDestructor(); in getDestructorDecl()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp2174 if (auto classDecl = CurMethod->getClassInterface()) { in ActOnClassPropertyRefExpr() local
2175 SuperType = QualType(classDecl->getSuperClassType(), 0); in ActOnClassPropertyRefExpr()