Home
last modified time | relevance | path

Searched refs:ObjCObjectType (Results 1 – 25 of 54) sorted by relevance

123

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DType.cpp702 ->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 DExprObjC.cpp333 if (const ObjCObjectType *Ty = T->getAs<ObjCObjectType>()) in getReceiverInterface()
H A DASTContext.cpp5192 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 DMicrosoftMangle.cpp443 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 DASTStructuralEquivalence.cpp1173 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 DDynamicTypePropagation.cpp59 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 DNameSearchContext.cpp161 } else if (const ObjCObjectType *objc_object_type = in AddTypeDecl()
162 qual_type->getAs<ObjCObjectType>()) { in AddTypeDecl()
H A DClangASTImporter.cpp387 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 DASTResultSynthesizer.cpp323 if (expr_qual_type->getAs<ObjCObjectType>() != nullptr) in SynthesizeBodyResult()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DBuiltinTypes.def228 // 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 DType.h1620 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 DCanonicalType.h579 struct CanProxyAdaptor<ObjCObjectType>
580 : public CanProxyBase<ObjCObjectType> {
H A DDeclObjC.h1541 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 DTypeNodes.td105 def ObjCObjectType : TypeNode<Type>;
106 def ObjCInterfaceType : TypeNode<ObjCObjectType>, LeafType;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2717 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 DIndexBody.cpp263 auto addReceivers = [&](const ObjCObjectType *Ty) { in VisitObjCMessageExpr()
279 addReceivers(recT->getAs<ObjCObjectType>()); in VisitObjCMessageExpr()
H A DUSRGeneration.cpp841 if (const ObjCObjectType *OIT = T->getAs<ObjCObjectType>()) { in VisitType()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprMember.cpp1194 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 DSemaDeclObjC.cpp52 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 DSemaExprObjC.cpp1938 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 DSemaAvailability.cpp858 } else if (const auto *ObjCO = dyn_cast<ObjCObjectType>(TyPtr)) { in VisitTypeLoc()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp1284 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 DRewriteObjCFoundationAPI.cpp141 const ObjCObjectType *ObjTy = ClassRec->getAs<ObjCObjectType>(); in maybeAdjustInterfaceForSubscriptingCheck()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.h200 llvm::DIType *CreateType(const ObjCObjectType *Ty, llvm::DIFile *F);
H A DCodeGenTypes.cpp710 ResultType = ConvertType(cast<ObjCObjectType>(Ty)->getBaseType()); in ConvertType()

123