Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
HDCGObjCGNU.cpp1697 ObjCInterfaceDecl *classDecl = in GenerateClass() local
1699 std::string className = classDecl->getNameAsString(); in GenerateClass()
1751 metaclassFields.add(GeneratePropertyList(OID, classDecl, /*isClassProperty*/true)); in GenerateClass()
1804 if (classDecl->all_declared_ivar_begin() == nullptr) in GenerateClass()
1808 for (const ObjCIvarDecl *IVD = classDecl->all_declared_ivar_begin(); IVD; in GenerateClass()
1827 for (const ObjCIvarDecl *IVD = classDecl->all_declared_ivar_begin(); IVD; in GenerateClass()
1842 std::string OffsetName = GetIVarOffsetVariableName(classDecl, IVD); in GenerateClass()
1853 classDecl->getVisibility() == HiddenVisibility) ? in GenerateClass()
1914 for (const auto *I : classDecl->protocols()) in GenerateClass()
1927 classFields.add(GeneratePropertyList(OID, classDecl)); in GenerateClass()
HDCodeGenFunction.h4242 if (const ObjCInterfaceDecl *classDecl= dyn_cast<ObjCInterfaceDecl>(dc)) {
4243 return classDecl->getTypeParamListAsWritten();
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
HDType.cpp1541 ObjCInterfaceDecl *classDecl = getInterface(); in computeSuperClassTypeSlow() local
1542 if (!classDecl) { in computeSuperClassTypeSlow()
1548 const ObjCObjectType *superClassObjTy = classDecl->getSuperClassType(); in computeSuperClassTypeSlow()
1578 ObjCTypeParamList *typeParams = classDecl->getTypeParamList(); in computeSuperClassTypeSlow()
1589 = classDecl->getASTContext().getObjCInterfaceType( in computeSuperClassTypeSlow()
1601 superClassType.substObjCTypeArgs(classDecl->getASTContext(), typeArgs, in computeSuperClassTypeSlow()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
HDCFG.cpp5015 const CXXRecordDecl *classDecl = ty->getAsCXXRecordDecl(); in getDestructorDecl() local
5016 assert(classDecl); in getDestructorDecl()
5017 return classDecl->getDestructor(); in getDestructorDecl()
5023 const CXXRecordDecl *classDecl = in getDestructorDecl() local
5025 return classDecl->getDestructor(); in getDestructorDecl()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaExprObjC.cpp2047 if (auto classDecl = CurMethod->getClassInterface()) { in ActOnClassPropertyRefExpr() local
2048 SuperType = QualType(classDecl->getSuperClassType(), 0); in ActOnClassPropertyRefExpr()