| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | Type.cpp | 702 ->getAs<ObjCObjectType>(); in isObjCIdOrObjectKindOfType() 731 ObjCObjectType::ObjCObjectType(QualType Canonical, QualType Base, in ObjCObjectType() function in ObjCObjectType 753 bool ObjCObjectType::isSpecialized() const { in isSpecialized() 789 bool ObjCObjectType::isKindOfType() const { in isKindOfType() 1433 const ObjCObjectType *objType = ptrType in VisitAttributedType() 1545 const ObjCObjectType *objectType; in getObjCSubstitutions() 1551 ->castAs<ObjCObjectType>(); in getObjCSubstitutions() 1553 objectType = getAs<ObjCObjectType>(); in getObjCSubstitutions() 1666 ->castAs<ObjCObjectType>(), in computeSuperClassTypeSlow() 1692 if (const auto *T = getAs<ObjCObjectType>()) in getAsObjCQualifiedInterfaceType() [all …]
|
| H A D | ExprObjC.cpp | 333 if (const ObjCObjectType *Ty = T->getAs<ObjCObjectType>()) in getReceiverInterface()
|
| H A D | ASTContext.cpp | 5192 const ObjCObjectType *objT = objPtr->getObjectType(); in applyObjCProtocolQualifiers() 8941 const ObjCObjectType* LHS = LHSOPT->getObjectType(); in canAssignObjCInterfaces() 8942 const ObjCObjectType* RHS = RHSOPT->getObjectType(); in canAssignObjCInterfaces() 9070 const ObjCObjectType* LHS = LHSOPT->getObjectType(); in getIntersectionOfProtocols() 9071 const ObjCObjectType* RHS = RHSOPT->getObjectType(); in getIntersectionOfProtocols() 9189 const ObjCObjectType *LHS = Lptr->getObjectType(); in areCommonBaseCompatible() 9190 const ObjCObjectType *RHS = Rptr->getObjectType(); in areCommonBaseCompatible() 9253 LHS = LHSSuperType->castAs<ObjCObjectType>(); in areCommonBaseCompatible() 9303 RHS = RHSSuperType->castAs<ObjCObjectType>(); in areCommonBaseCompatible() 9355 const ObjCObjectType *RHSSuper = RHS; in canAssignObjCInterfaces() [all …]
|
| H A D | MicrosoftMangle.cpp | 443 void mangleObjCKindOfType(const ObjCObjectType *T, Qualifiers Quals, 1906 void MicrosoftCXXNameMangler::mangleObjCKindOfType(const ObjCObjectType *T, in mangleObjCKindOfType() 1917 ->getAs<ObjCObjectType>(), in mangleObjCKindOfType() 3131 void MicrosoftCXXNameMangler::mangleType(const ObjCObjectType *T, in mangleType()
|
| H A D | ASTStructuralEquivalence.cpp | 1173 const auto *Obj1 = cast<ObjCObjectType>(T1); in IsStructurallyEquivalent() 1174 const auto *Obj2 = cast<ObjCObjectType>(T2); in IsStructurallyEquivalent()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | DynamicTypePropagation.cpp | 59 const ObjCObjectType *getObjectTypeForAllocAndNew(const ObjCMessageExpr *MsgE, 123 const ObjCObjectType *Type = nullptr; 140 return {MessageExpr->getClassReceiver()->getAs<ObjCObjectType>(), in inferReceiverType() 150 return {MessageExpr->getSuperType()->getAs<ObjCObjectType>(), in inferReceiverType() 195 return {cast<ObjCObjectType>(DTI.getType()), !DTI.canBeASubClass()}; in inferReceiverType() 207 if (const ObjCObjectType *ObjTy = dyn_cast<ObjCObjectType>( in inferReceiverType() 490 To->getObjectType()->getSuperClassType()->castAs<ObjCObjectType>(); in getMostInformativeDerivedClassImpl()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | NameSearchContext.cpp | 161 } else if (const ObjCObjectType *objc_object_type = in AddTypeDecl() 162 qual_type->getAs<ObjCObjectType>()) { in AddTypeDecl()
|
| H A D | ClangASTImporter.cpp | 387 const clang::ObjCObjectType *objc_class_type = in CanImport() 388 llvm::dyn_cast<clang::ObjCObjectType>(qual_type); in CanImport() 461 const clang::ObjCObjectType *objc_class_type = in Import() 462 llvm::dyn_cast<clang::ObjCObjectType>(qual_type); in Import() 652 if (const ObjCObjectType *objc_object_type = type->getAs<ObjCObjectType>()) { in CompleteAndFetchChildren() 696 if (const ObjCObjectType *objc_object_type = type->getAs<ObjCObjectType>()) { in RequireCompleteType()
|
| H A D | ASTResultSynthesizer.cpp | 323 if (expr_qual_type->getAs<ObjCObjectType>() != nullptr) in SynthesizeBodyResult()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | BuiltinTypes.def | 228 // ObjCObjectType with this as its base. In fact, this only ever 229 // shows up in an AST as the base type of an ObjCObjectType. 234 // ObjCObjectType with this as its base. In fact, this only ever 235 // shows up in an AST as the base type of an ObjCObjectType.
|
| H A D | Type.h | 1620 friend class ObjCObjectType; 2236 const ObjCObjectType *getAsObjCInterfaceType() const; 5818 class ObjCObjectType : public Type, 5859 ObjCObjectType(QualType Canonical, QualType Base, 5864 ObjCObjectType(enum Nonce_ObjCInterface) 6018 class ObjCInterfaceType : public ObjCObjectType { 6027 : ObjCObjectType(Nonce_ObjCInterface), 6112 const ObjCObjectType *getObjectType() const { 6113 return PointeeType->castAs<ObjCObjectType>(); 6802 return isa<ObjCObjectType>(CanonicalType); [all …]
|
| H A D | CanonicalType.h | 579 struct CanProxyAdaptor<ObjCObjectType> 580 : public CanProxyBase<ObjCObjectType> {
|
| H A D | DeclObjC.h | 1541 const ObjCObjectType *getSuperClassType() const { in getSuperClassType() 1543 return TInfo->getType()->castAs<ObjCObjectType>(); in getSuperClassType()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | TypeNodes.td | 105 def ObjCObjectType : TypeNode<Type>; 106 def ObjCInterfaceType : TypeNode<ObjCObjectType>, LeafType;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 2717 const clang::ObjCObjectType *objc_class_type = in GetCompleteQualType() 3437 const clang::ObjCObjectType *objc_class_type = in IsDefined() 5349 const clang::ObjCObjectType *objc_class_type = in GetNumChildren() 5583 const clang::ObjCObjectType *objc_class_type = in GetNumFields() 5735 const clang::ObjCObjectType *objc_class_type = in GetFieldAtIndex() 5776 const clang::ObjCObjectType *objc_class_type = in GetNumDirectBaseClasses() 7224 const clang::ObjCObjectType *objc_class_type = in GetAsObjCInterfaceDecl() 7225 llvm::dyn_cast<clang::ObjCObjectType>( in GetAsObjCInterfaceDecl() 8143 const clang::ObjCObjectType *objc_class_type = in SetHasExternalStorage() 8178 const clang::ObjCObjectType *object_type = in StartTagDeclarationDefinition() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Index/ |
| H A D | IndexBody.cpp | 263 auto addReceivers = [&](const ObjCObjectType *Ty) { in VisitObjCMessageExpr() 279 addReceivers(recT->getAs<ObjCObjectType>()); in VisitObjCMessageExpr()
|
| H A D | USRGeneration.cpp | 841 if (const ObjCObjectType *OIT = T->getAs<ObjCObjectType>()) { in VisitType()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaExprMember.cpp | 1194 const ObjCObjectType *ty = opty->getObjectType(); in ShouldTryAgainWithRedefinitionType() 1309 if (const ObjCObjectType *OTy = BaseType->getAs<ObjCObjectType>()) { in LookupMemberExpr() 1489 const ObjCObjectType *OT = OPT->getObjectType(); in LookupMemberExpr()
|
| H A D | SemaDeclObjC.cpp | 52 const ObjCObjectType *result = in checkInitMethod() 590 if (NamedDecl *IDecl = T->castAs<ObjCObjectType>()->getInterface()) { in ActOnSuperClassOfClassInterface() 1123 if (const ObjCObjectType *OPT = T->getAs<ObjCObjectType>()) { in ActOnTypedefedProtocols() 1158 if (NamedDecl *IDecl = T->castAs<ObjCObjectType>()->getInterface()) { in ActOnCompatibilityAlias() 1438 if (const auto *objcObjectType = base->getAs<ObjCObjectType>()) { in actOnObjCTypeArgsOrProtocolQualifiers() 3074 if (isa<ObjCObjectType>(TDD->getUnderlyingType())) { in ActOnForwardClassDeclaration() 3463 const ObjCObjectType *TypeBound) { in FilterMethodsByTypeBound() 3499 const ObjCObjectType *TypeBound) { in CollectMultipleMethodsInGlobalPool()
|
| H A D | SemaExprObjC.cpp | 1938 const ObjCObjectType *objType = type->castAs<ObjCObjectType>(); in LookupMethodInObjectType() 2644 const ObjCObjectType *ClassType = ReceiverType->getAs<ObjCObjectType>(); in BuildClassMessage() 2948 const ObjCObjectType *typeBound = nullptr; in BuildInstanceMessage()
|
| H A D | SemaAvailability.cpp | 858 } else if (const auto *ObjCO = dyn_cast<ObjCObjectType>(TyPtr)) { in VisitTypeLoc()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | CallEvent.cpp | 1284 const ObjCObjectType *ReceiverT = nullptr; in getRuntimeDefinition() 1335 cast<ObjCObjectType>(DTI.getType().getCanonicalType()); in getRuntimeDefinition()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Edit/ |
| H A D | RewriteObjCFoundationAPI.cpp | 141 const ObjCObjectType *ObjTy = ClassRec->getAs<ObjCObjectType>(); in maybeAdjustInterfaceForSubscriptingCheck()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGDebugInfo.h | 200 llvm::DIType *CreateType(const ObjCObjectType *Ty, llvm::DIFile *F);
|
| H A D | CodeGenTypes.cpp | 710 ResultType = ConvertType(cast<ObjCObjectType>(Ty)->getBaseType()); in ConvertType()
|