Home
last modified time | relevance | path

Searched refs:ObjCInterfaceType (Results 1 – 25 of 43) sorted by relevance

12

/llvm-project-15.0.7/clang/lib/ExtractAPI/
H A DTypedefUnderlyingTypeResolver.cpp30 } else if (const ObjCInterfaceType *ObjCITy = in getUnderlyingTypeDecl()
31 Type->getAs<ObjCInterfaceType>()) { in getUnderlyingTypeDecl()
H A DDeclarationFragments.cpp281 if (const auto *ObjCIT = dyn_cast<ObjCInterfaceType>(Base)) { in getFragmentsForType()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGDebugInfo.h107 const ObjCInterfaceType *Type;
110 ObjCInterfaceCacheEntry(const ObjCInterfaceType *Type, llvm::DIType *Decl, in ObjCInterfaceCacheEntry()
199 llvm::DIType *CreateType(const ObjCInterfaceType *Ty, llvm::DIFile *F);
200 llvm::DIType *CreateTypeDefinition(const ObjCInterfaceType *Ty,
H A DCodeGenTypes.h70 llvm::DenseMap<const ObjCInterfaceType*, llvm::Type *> InterfaceTypes;
H A DCodeGenTypes.cpp739 llvm::Type *&T = InterfaceTypes[cast<ObjCInterfaceType>(Ty)]; in ConvertType()
H A DItaniumCXXABI.cpp3542 assert(isa<ObjCInterfaceType>(Ty)); in BuildVTablePointer()
3546 if (cast<ObjCInterfaceType>(Ty)->getDecl()->getSuperClass()) { in BuildVTablePointer()
3896 assert(isa<BuiltinType>(T) || isa<ObjCInterfaceType>(T)); in BuildObjCObjectTypeInfo()
3902 ObjCInterfaceDecl *Class = cast<ObjCInterfaceType>(T)->getDecl(); in BuildObjCObjectTypeInfo()
/llvm-project-15.0.7/clang/lib/ARCMigrate/
H A DTransAutoreleasePool.cpp397 if (const ObjCInterfaceType *interT = pointee->getAs<ObjCInterfaceType>()) in isNSAutoreleasePool()
/llvm-project-15.0.7/clang/lib/AST/
H A DType.cpp760 if (isa<ObjCInterfaceType>(objcObject)) in isSpecialized()
778 if (isa<ObjCInterfaceType>(objcObject)) in getTypeArgs()
795 if (isa<ObjCInterfaceType>(objcObject)) in isKindOfType()
823 ObjCInterfaceDecl *ObjCInterfaceType::getDecl() const { in getDecl()
1676 const ObjCInterfaceType *ObjCObjectPointerType::getInterfaceType() const { in getInterfaceType()
1679 ->castAs<ObjCInterfaceType>(); in getInterfaceType()
2297 = cast<ObjCInterfaceType>(CanonicalType)->getDecl(); in isIncompleteType()
3967 Linkage L = cast<ObjCInterfaceType>(T)->getDecl()->getLinkageInternal(); in computeCachedProperties()
4056 return getDeclLinkageAndVisibility(cast<ObjCInterfaceType>(T)->getDecl()); in computeTypeLinkageInfo()
H A DASTStructuralEquivalence.cpp1162 const auto *Iface1 = cast<ObjCInterfaceType>(T1); in IsStructurallyEquivalent()
1163 const auto *Iface2 = cast<ObjCInterfaceType>(T2); in IsStructurallyEquivalent()
H A DODRHash.cpp946 void VisitObjCInterfaceType(const ObjCInterfaceType *T) { in VisitObjCInterfaceType()
H A DTypePrinter.cpp1821 void TypePrinter::printObjCInterfaceBefore(const ObjCInterfaceType *T, in printObjCInterfaceBefore()
1827 void TypePrinter::printObjCInterfaceAfter(const ObjCInterfaceType *T, in printObjCInterfaceAfter()
H A DASTContext.cpp2292 const auto *ObjCI = cast<ObjCInterfaceType>(T); in getTypeInfoImpl()
2443 } else if (const auto *ObjCI = T->getAs<ObjCInterfaceType>()) { in getTypeUnadjustedAlign()
5258 isa<ObjCInterfaceType>(baseType)) in getObjCObjectType()
5556 void *Mem = Allocate(sizeof(ObjCInterfaceType), TypeAlignment); in getObjCInterfaceType()
5557 auto *T = new (Mem) ObjCInterfaceType(Decl); in getObjCInterfaceType()
9667 const ObjCInterfaceType* LHS = LHSOPT->getInterfaceType(); in canAssignObjCInterfacesInBlockPointer()
9668 const ObjCInterfaceType* RHS = RHSOPT->getInterfaceType(); in canAssignObjCInterfacesInBlockPointer()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DTypeNodes.td108 def ObjCInterfaceType : TypeNode<ObjCObjectType>, LeafType;
/llvm-project-15.0.7/clang/include/clang/AST/
H A DTextNodeDumper.h325 void VisitObjCInterfaceType(const ObjCInterfaceType *T);
H A DJSONNodeDumper.h226 void VisitObjCInterfaceType(const ObjCInterfaceType *OIT);
H A DCanonicalType.h601 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(const ObjCInterfaceType *,
H A DType.h6151 class ObjCInterfaceType : public ObjCObjectType {
6158 ObjCInterfaceType(const ObjCInterfaceDecl *D)
6189 if (const auto *T = dyn_cast<ObjCInterfaceType>(ObjT))
6253 const ObjCInterfaceType *getInterfaceType() const;
6944 return isa<ObjCInterfaceType>(CanonicalType) ||
H A DTypeProperties.td856 let Class = ObjCInterfaceType in {
H A DRecursiveASTVisitor.h1154 DEF_TRAVERSE_TYPE(ObjCInterfaceType, {})
1450 DEF_TRAVERSE_TYPELOC(ObjCInterfaceType, {})
/llvm-project-15.0.7/clang/lib/Index/
H A DUSRGeneration.cpp838 if (const ObjCInterfaceType *OIT = T->getAs<ObjCInterfaceType>()) { in VisitType()
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTSource.cpp375 const ObjCInterfaceType *complete_interface_type = in GetCompleteObjCInterface()
376 dyn_cast<ObjCInterfaceType>(complete_clang_type); in GetCompleteObjCInterface()
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp4366 const clang::ObjCInterfaceType *objc_interface_type = in GetNumMemberFunctions()
4370 const_cast<clang::ObjCInterfaceType *>(objc_interface_type)))) { in GetNumMemberFunctions()
4450 const clang::ObjCInterfaceType *objc_interface_type = in GetMemberFunctionAtIndex()
4454 const_cast<clang::ObjCInterfaceType *>(objc_interface_type)))) { in GetMemberFunctionAtIndex()
5607 const clang::ObjCInterfaceType *objc_interface_type = in GetNumFields()
5611 const_cast<clang::ObjCInterfaceType *>(objc_interface_type)))) { in GetNumFields()
5756 const clang::ObjCInterfaceType *objc_interface_type = in GetFieldAtIndex()
5760 const_cast<clang::ObjCInterfaceType *>(objc_interface_type)))) { in GetFieldAtIndex()
5830 const clang::ObjCInterfaceType *objc_interface_type = in GetNumDirectBaseClasses()
5831 qual_type->getAs<clang::ObjCInterfaceType>(); in GetNumDirectBaseClasses()
[all …]
/llvm-project-15.0.7/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp441 const ObjCInterfaceType *IFaceT = OBJPT->getInterfaceType(); in convertToUnqualifiedObjCType()
460 if (isa<ObjCInterfaceType>(PT->getPointeeType()) || in isObjCType()
5810 const ObjCInterfaceType *iFaceDecl = in RewriteObjCIvarRefExpr()
5811 dyn_cast<ObjCInterfaceType>(BaseExpr->getType()->getPointeeType()); in RewriteObjCIvarRefExpr()
5852 const ObjCInterfaceType *iFaceDecl = in RewriteObjCIvarRefExpr()
5853 dyn_cast<ObjCInterfaceType>(BaseExpr->getType()->getPointeeType()); in RewriteObjCIvarRefExpr()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DFindTarget.cpp460 void VisitObjCInterfaceType(const ObjCInterfaceType *OIT) { in add()
/llvm-project-15.0.7/clang/tools/libclang/
H A DCXType.cpp508 D = cast<ObjCInterfaceType>(TP)->getDecl(); in clang_getTypeDeclaration()

12