Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGObjCGNU.cpp1712 ObjCInterfaceDecl *classDecl = in GenerateClass() local
1714 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 …]
H A DCGCall.cpp4185 if (const ObjCInterfaceDecl *classDecl = dyn_cast<ObjCInterfaceDecl>(dc)) { in isObjCMethodWithTypeParams() local
4186 return classDecl->getTypeParamListAsWritten(); in isObjCMethodWithTypeParams()
/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DCFG.cpp5318 const CXXRecordDecl *classDecl = ty->getAsCXXRecordDecl(); in getDestructorDecl() local
5319 assert(classDecl); in getDestructorDecl()
5320 return classDecl->getDestructor(); in getDestructorDecl()
5326 const CXXRecordDecl *classDecl = in getDestructorDecl() local
5328 return classDecl->getDestructor(); in getDestructorDecl()
5344 const CXXRecordDecl *classDecl = ty->getAsCXXRecordDecl(); in getDestructorDecl() local
5345 assert(classDecl); in getDestructorDecl()
5346 return classDecl->getDestructor(); in getDestructorDecl()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DType.cpp1634 ObjCInterfaceDecl *classDecl = getInterface(); in computeSuperClassTypeSlow() local
1635 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()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaExprObjC.cpp2172 if (auto classDecl = CurMethod->getClassInterface()) { in ActOnClassPropertyRefExpr() local
2173 SuperType = QualType(classDecl->getSuperClassType(), 0); in ActOnClassPropertyRefExpr()