Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DTypedefUnderlyingTypeResolver.cpp29 } else if (const ObjCInterfaceType *ObjCITy = in getUnderlyingTypeDecl()
30 Type->getAs<ObjCInterfaceType>()) { in getUnderlyingTypeDecl()
H A DDeclarationFragments.cpp391 if (const auto *ObjCIT = dyn_cast<ObjCInterfaceType>(Base)) { in getFragmentsForType()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.h106 const ObjCInterfaceType *Type;
109 ObjCInterfaceCacheEntry(const ObjCInterfaceType *Type, llvm::DIType *Decl, in ObjCInterfaceCacheEntry()
205 llvm::DIType *CreateType(const ObjCInterfaceType *Ty, llvm::DIFile *F);
206 llvm::DIType *CreateTypeDefinition(const ObjCInterfaceType *Ty,
H A DCodeGenTypes.h70 llvm::DenseMap<const ObjCInterfaceType*, llvm::Type *> InterfaceTypes;
H A DCodeGenTypes.cpp636 llvm::Type *&T = InterfaceTypes[cast<ObjCInterfaceType>(Ty)]; in ConvertType()
H A DItaniumCXXABI.cpp3643 assert(isa<ObjCInterfaceType>(Ty)); in BuildVTablePointer()
3647 if (cast<ObjCInterfaceType>(Ty)->getDecl()->getSuperClass()) { in BuildVTablePointer()
3997 assert(isa<BuiltinType>(T) || isa<ObjCInterfaceType>(T)); in BuildObjCObjectTypeInfo()
4003 ObjCInterfaceDecl *Class = cast<ObjCInterfaceType>(T)->getDecl(); in BuildObjCObjectTypeInfo()
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransAutoreleasePool.cpp397 if (const ObjCInterfaceType *interT = pointee->getAs<ObjCInterfaceType>()) in isNSAutoreleasePool()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp786 if (isa<ObjCInterfaceType>(objcObject)) in isSpecialized()
804 if (isa<ObjCInterfaceType>(objcObject)) in getTypeArgs()
821 if (isa<ObjCInterfaceType>(objcObject)) in isKindOfType()
849 ObjCInterfaceDecl *ObjCInterfaceType::getDecl() const { in getDecl()
1736 const ObjCInterfaceType *ObjCObjectPointerType::getInterfaceType() const { in getInterfaceType()
1739 ->castAs<ObjCInterfaceType>(); in getInterfaceType()
2362 = cast<ObjCInterfaceType>(CanonicalType)->getDecl(); in isIncompleteType()
4328 Linkage L = cast<ObjCInterfaceType>(T)->getDecl()->getLinkageInternal(); in computeCachedProperties()
4417 return getDeclLinkageAndVisibility(cast<ObjCInterfaceType>(T)->getDecl()); in computeTypeLinkageInfo()
H A DASTStructuralEquivalence.cpp1296 const auto *Iface1 = cast<ObjCInterfaceType>(T1); in IsStructurallyEquivalent()
1297 const auto *Iface2 = cast<ObjCInterfaceType>(T2); in IsStructurallyEquivalent()
H A DTypePrinter.cpp1925 void TypePrinter::printObjCInterfaceBefore(const ObjCInterfaceType *T, in printObjCInterfaceBefore()
1931 void TypePrinter::printObjCInterfaceAfter(const ObjCInterfaceType *T, in printObjCInterfaceAfter()
H A DODRHash.cpp1084 void VisitObjCInterfaceType(const ObjCInterfaceType *T) { in VisitObjCInterfaceType()
H A DASTContext.cpp2250 const auto *ObjCI = cast<ObjCInterfaceType>(T); in getTypeInfoImpl()
2398 } else if (const auto *ObjCI = T->getAs<ObjCInterfaceType>()) { in getTypeUnadjustedAlign()
5296 isa<ObjCInterfaceType>(baseType)) in getObjCObjectType()
5595 void *Mem = Allocate(sizeof(ObjCInterfaceType), alignof(ObjCInterfaceType)); in getObjCInterfaceType()
5596 auto *T = new (Mem) ObjCInterfaceType(Decl); in getObjCInterfaceType()
9886 const ObjCInterfaceType* LHS = LHSOPT->getInterfaceType(); in canAssignObjCInterfacesInBlockPointer()
9887 const ObjCInterfaceType* RHS = RHSOPT->getInterfaceType(); in canAssignObjCInterfacesInBlockPointer()
H A DJSONNodeDumper.cpp780 void JSONNodeDumper::VisitObjCInterfaceType(const ObjCInterfaceType *OIT) { in VisitObjCInterfaceType()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeNodes.td108 def ObjCInterfaceType : TypeNode<ObjCObjectType>, LeafType;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DTextNodeDumper.h337 void VisitObjCInterfaceType(const ObjCInterfaceType *T);
H A DJSONNodeDumper.h238 void VisitObjCInterfaceType(const ObjCInterfaceType *OIT);
H A DCanonicalType.h600 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(const ObjCInterfaceType *,
H A DType.h6425 class ObjCInterfaceType : public ObjCObjectType {
6432 ObjCInterfaceType(const ObjCInterfaceDecl *D)
6463 if (const auto *T = dyn_cast<ObjCInterfaceType>(ObjT))
6527 const ObjCInterfaceType *getInterfaceType() const;
7221 return isa<ObjCInterfaceType>(CanonicalType) ||
H A DTypeProperties.td878 let Class = ObjCInterfaceType in {
H A DRecursiveASTVisitor.h1131 DEF_TRAVERSE_TYPE(ObjCInterfaceType, {})
1424 DEF_TRAVERSE_TYPELOC(ObjCInterfaceType, {})
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp903 if (const ObjCInterfaceType *OIT = T->getAs<ObjCInterfaceType>()) { in VisitType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTSource.cpp357 const ObjCInterfaceType *complete_interface_type = in GetCompleteObjCInterface()
358 dyn_cast<ObjCInterfaceType>(complete_clang_type); in GetCompleteObjCInterface()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp4340 const clang::ObjCInterfaceType *objc_interface_type = in GetNumMemberFunctions()
4344 const_cast<clang::ObjCInterfaceType *>(objc_interface_type)))) { in GetNumMemberFunctions()
4424 const clang::ObjCInterfaceType *objc_interface_type = in GetMemberFunctionAtIndex()
4428 const_cast<clang::ObjCInterfaceType *>(objc_interface_type)))) { in GetMemberFunctionAtIndex()
5535 const clang::ObjCInterfaceType *objc_interface_type = in GetNumFields()
5539 const_cast<clang::ObjCInterfaceType *>(objc_interface_type)))) { in GetNumFields()
5684 const clang::ObjCInterfaceType *objc_interface_type = in GetFieldAtIndex()
5688 const_cast<clang::ObjCInterfaceType *>(objc_interface_type)))) { in GetFieldAtIndex()
5760 const clang::ObjCInterfaceType *objc_interface_type = in GetNumDirectBaseClasses()
5761 qual_type->getAs<clang::ObjCInterfaceType>(); in GetNumDirectBaseClasses()
[all …]
/freebsd/contrib/llvm-project/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()
H A DRewriteModernObjC.cpp535 const ObjCInterfaceType *IFaceT = OBJPT->getInterfaceType(); in convertToUnqualifiedObjCType()
554 if (isa<ObjCInterfaceType>(PT->getPointeeType()) || in isObjCType()
7456 const ObjCInterfaceType *iFaceDecl = in RewriteObjCIvarRefExpr()
7457 dyn_cast<ObjCInterfaceType>(BaseExpr->getType()->getPointeeType()); in RewriteObjCIvarRefExpr()

12