Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DSymbol.h181 ObjCIFSymbolKind ObjCInterfaceType; member
184 return std::tie(Name, Kind, ObjCInterfaceType) <
185 std::tie(O.Name, O.Kind, O.ObjCInterfaceType);
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DTypedefUnderlyingTypeResolver.cpp30 } else if (const ObjCInterfaceType *ObjCITy = in getUnderlyingTypeDecl()
31 Type->getAs<ObjCInterfaceType>()) { in getUnderlyingTypeDecl()
H A DDeclarationFragments.cpp435 if (const auto *ObjCIT = dyn_cast<ObjCInterfaceType>(Base)) { in getFragmentsForType()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.h111 const ObjCInterfaceType *Type;
114 ObjCInterfaceCacheEntry(const ObjCInterfaceType *Type, llvm::DIType *Decl, in ObjCInterfaceCacheEntry()
210 llvm::DIType *CreateType(const ObjCInterfaceType *Ty, llvm::DIFile *F);
211 llvm::DIType *CreateTypeDefinition(const ObjCInterfaceType *Ty,
H A DCodeGenTypes.h65 llvm::DenseMap<const ObjCInterfaceType*, llvm::Type *> InterfaceTypes;
H A DCodeGenTypes.cpp697 llvm::Type *&T = InterfaceTypes[cast<ObjCInterfaceType>(Ty)]; in ConvertType()
H A DItaniumCXXABI.cpp3915 assert(isa<ObjCInterfaceType>(Ty)); in BuildVTablePointer()
3919 if (cast<ObjCInterfaceType>(Ty)->getDecl()->getSuperClass()) { in BuildVTablePointer()
4272 assert(isa<BuiltinType>(T) || isa<ObjCInterfaceType>(T)); in BuildObjCObjectTypeInfo()
4278 ObjCInterfaceDecl *Class = cast<ObjCInterfaceType>(T)->getDecl(); in BuildObjCObjectTypeInfo()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeNodes.td110 def ObjCInterfaceType : TypeNode<ObjCObjectType>, LeafType;
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp840 if (isa<ObjCInterfaceType>(objcObject)) in isSpecialized()
858 if (isa<ObjCInterfaceType>(objcObject)) in getTypeArgs()
875 if (isa<ObjCInterfaceType>(objcObject)) in isKindOfType()
903 ObjCInterfaceDecl *ObjCInterfaceType::getDecl() const { in getDecl()
1799 const ObjCInterfaceType *ObjCObjectPointerType::getInterfaceType() const { in getInterfaceType()
1802 ->castAs<ObjCInterfaceType>(); in getInterfaceType()
2433 = cast<ObjCInterfaceType>(CanonicalType)->getDecl(); in isIncompleteType()
4558 Linkage L = cast<ObjCInterfaceType>(T)->getDecl()->getLinkageInternal(); in computeCachedProperties()
4648 return getDeclLinkageAndVisibility(cast<ObjCInterfaceType>(T)->getDecl()); in computeTypeLinkageInfo()
H A DASTStructuralEquivalence.cpp1324 const auto *Iface1 = cast<ObjCInterfaceType>(T1); in IsStructurallyEquivalent()
1325 const auto *Iface2 = cast<ObjCInterfaceType>(T2); in IsStructurallyEquivalent()
H A DODRHash.cpp1101 void VisitObjCInterfaceType(const ObjCInterfaceType *T) { in VisitObjCInterfaceType()
H A DTypePrinter.cpp2045 void TypePrinter::printObjCInterfaceBefore(const ObjCInterfaceType *T, in printObjCInterfaceBefore()
2051 void TypePrinter::printObjCInterfaceAfter(const ObjCInterfaceType *T, in printObjCInterfaceAfter()
H A DASTContext.cpp2290 const auto *ObjCI = cast<ObjCInterfaceType>(T); in getTypeInfoImpl()
2440 } else if (const auto *ObjCI = T->getAs<ObjCInterfaceType>()) { in getTypeUnadjustedAlign()
5706 isa<ObjCInterfaceType>(baseType)) in getObjCObjectType()
6005 void *Mem = Allocate(sizeof(ObjCInterfaceType), alignof(ObjCInterfaceType)); in getObjCInterfaceType()
6006 auto *T = new (Mem) ObjCInterfaceType(Decl); in getObjCInterfaceType()
10336 const ObjCInterfaceType* LHS = LHSOPT->getInterfaceType(); in canAssignObjCInterfacesInBlockPointer()
10337 const ObjCInterfaceType* RHS = RHSOPT->getInterfaceType(); in canAssignObjCInterfacesInBlockPointer()
H A DJSONNodeDumper.cpp813 void JSONNodeDumper::VisitObjCInterfaceType(const ObjCInterfaceType *OIT) { in VisitObjCInterfaceType()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DTextNodeDumper.h348 void VisitObjCInterfaceType(const ObjCInterfaceType *T);
H A DJSONNodeDumper.h241 void VisitObjCInterfaceType(const ObjCInterfaceType *OIT);
H A DCanonicalType.h600 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(const ObjCInterfaceType *,
H A DType.h7339 class ObjCInterfaceType : public ObjCObjectType {
7346 ObjCInterfaceType(const ObjCInterfaceDecl *D)
7377 if (const auto *T = dyn_cast<ObjCInterfaceType>(ObjT))
7441 const ObjCInterfaceType *getInterfaceType() const;
8146 return isa<ObjCInterfaceType>(CanonicalType) ||
H A DTypeProperties.td929 let Class = ObjCInterfaceType in {
H A DRecursiveASTVisitor.h1173 DEF_TRAVERSE_TYPE(ObjCInterfaceType, {})
1479 DEF_TRAVERSE_TYPELOC(ObjCInterfaceType, {})
H A DTypeLoc.h1090 ObjCInterfaceType,
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp919 if (const ObjCInterfaceType *OIT = T->getAs<ObjCInterfaceType>()) { in VisitType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTSource.cpp356 const ObjCInterfaceType *complete_interface_type = in GetCompleteObjCInterface()
357 dyn_cast<ObjCInterfaceType>(complete_clang_type); in GetCompleteObjCInterface()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp4384 const clang::ObjCInterfaceType *objc_interface_type = in GetNumMemberFunctions()
4388 const_cast<clang::ObjCInterfaceType *>(objc_interface_type)))) { in GetNumMemberFunctions()
4468 const clang::ObjCInterfaceType *objc_interface_type = in GetMemberFunctionAtIndex()
4472 const_cast<clang::ObjCInterfaceType *>(objc_interface_type)))) { in GetMemberFunctionAtIndex()
5622 const clang::ObjCInterfaceType *objc_interface_type = in GetNumFields()
5626 const_cast<clang::ObjCInterfaceType *>(objc_interface_type)))) { in GetNumFields()
5771 const clang::ObjCInterfaceType *objc_interface_type = in GetFieldAtIndex()
5775 const_cast<clang::ObjCInterfaceType *>(objc_interface_type)))) { in GetFieldAtIndex()
5847 const clang::ObjCInterfaceType *objc_interface_type = in GetNumDirectBaseClasses()
5848 qual_type->getAs<clang::ObjCInterfaceType>(); in GetNumDirectBaseClasses()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp534 const ObjCInterfaceType *IFaceT = OBJPT->getInterfaceType(); in convertToUnqualifiedObjCType()
553 if (isa<ObjCInterfaceType>(PT->getPointeeType()) || in isObjCType()
7454 const ObjCInterfaceType *iFaceDecl = in RewriteObjCIvarRefExpr()
7455 dyn_cast<ObjCInterfaceType>(BaseExpr->getType()->getPointeeType()); in RewriteObjCIvarRefExpr()

12