Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGObjCGNU.cpp1706 ObjCInterfaceDecl *classDecl = in GenerateClass() local
1708 std::string className = classDecl->getNameAsString(); in GenerateClass()
1760 metaclassFields.add(GeneratePropertyList(OID, classDecl, /*isClassProperty*/true)); in GenerateClass()
1813 if (classDecl->all_declared_ivar_begin() == nullptr) in GenerateClass()
1817 for (const ObjCIvarDecl *IVD = classDecl->all_declared_ivar_begin(); IVD; in GenerateClass()
1836 for (const ObjCIvarDecl *IVD = classDecl->all_declared_ivar_begin(); IVD; in GenerateClass()
1851 std::string OffsetName = GetIVarOffsetVariableName(classDecl, IVD); in GenerateClass()
1862 classDecl->getVisibility() == HiddenVisibility) ? in GenerateClass()
1922 auto RuntimeProtocols = GetRuntimeProtocolList(classDecl->protocol_begin(), in GenerateClass()
1923 classDecl->protocol_end()); in GenerateClass()
[all …]
H A DCGCall.cpp4044 if (const ObjCInterfaceDecl *classDecl = dyn_cast<ObjCInterfaceDecl>(dc)) { in isObjCMethodWithTypeParams() local
4045 return classDecl->getTypeParamListAsWritten(); in isObjCMethodWithTypeParams()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DCFG.cpp5040 const CXXRecordDecl *classDecl = ty->getAsCXXRecordDecl(); in getDestructorDecl() local
5041 assert(classDecl); in getDestructorDecl()
5042 return classDecl->getDestructor(); in getDestructorDecl()
5048 const CXXRecordDecl *classDecl = in getDestructorDecl() local
5050 return classDecl->getDestructor(); in getDestructorDecl()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExprObjC.cpp2174 if (auto classDecl = CurMethod->getClassInterface()) { in ActOnClassPropertyRefExpr() local
2175 SuperType = QualType(classDecl->getSuperClassType(), 0); in ActOnClassPropertyRefExpr()