| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | DynamicTypePropagation.cpp | 116 return PointerType->getObjectType()->isObjCClass(); in isObjCClassType() 161 return {ObjTy->getObjectType(), /*Precise=*/true}; in inferReceiverType() 222 return {ReceiverInferredType->getObjectType()}; in inferReceiverType() 479 if (To->getObjectType()->getSuperClassType().isNull()) { in getMostInformativeDerivedClassImpl() 487 To->getObjectType()->getSuperClassType()->castAs<ObjCObjectType>(); in getMostInformativeDerivedClassImpl()
|
| H A D | LocalizationChecker.cpp | 902 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface(); in isNSStringType()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Type.h | 6518 const ObjCObjectType *getObjectType() const { 6534 return getObjectType()->getInterface(); 6540 return getObjectType()->isObjCUnqualifiedId(); 6557 return getObjectType()->isObjCQualifiedId(); 6563 return getObjectType()->isObjCQualifiedClass(); 6586 return getObjectType()->getTypeArgs(); 6591 return getObjectType()->getTypeArgsAsWritten(); 6603 return getObjectType()->qual_begin(); 6607 return getObjectType()->qual_end(); 6614 return getObjectType()->getNumProtocols(); [all …]
|
| H A D | ExprCXX.h | 204 QualType getObjectType() const;
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | Type.cpp | 727 bound = OPT->getObjectType()->stripObjCKindOfTypeAndQuals(ctx) in isObjCIdOrObjectKindOfType() 861 QualType obj = getObjectType()->stripObjCKindOfTypeAndQuals(ctx); in stripObjCKindOfTypeAndQuals() 1329 const auto *obj = objPtr->getObjectType(); in VisitObjCTypeParamType() 1467 ? ptrType->getObjectType() in VisitAttributedType() 1613 objectType = objectPointerType->getObjectType(); in getObjCSubstitutions() 1737 if (auto interfaceDecl = getObjectType()->getInterface()) { in getInterfaceType() 1746 QualType superObjectType = getObjectType()->getSuperClassType(); in getSuperClassType() 4677 if (opt->getObjectType()->isObjCClass()) in isObjCARCImplicitlyUnretainedType()
|
| H A D | ASTContext.cpp | 5382 const ObjCObjectType *objT = objPtr->getObjectType(); in applyObjCProtocolQualifiers() 9791 const ObjCObjectType* LHS = LHSOPT->getObjectType(); in canAssignObjCInterfaces() 9792 const ObjCObjectType* RHS = RHSOPT->getObjectType(); in canAssignObjCInterfaces() 9920 const ObjCObjectType* LHS = LHSOPT->getObjectType(); in getIntersectionOfProtocols() 9921 const ObjCObjectType* RHS = RHSOPT->getObjectType(); in getIntersectionOfProtocols() 10038 const ObjCObjectType *LHS = Lptr->getObjectType(); in areCommonBaseCompatible() 10039 const ObjCObjectType *RHS = Rptr->getObjectType(); in areCommonBaseCompatible()
|
| H A D | ExprCXX.cpp | 666 QualType CXXMemberCallExpr::getObjectType() const { in getObjectType() function in CXXMemberCallExpr
|
| H A D | ExprConstant.cpp | 11772 static QualType getObjectType(APValue::LValueBase B) { in getObjectType() function 12019 QualType BaseTy = getObjectType(LVal.getLValueBase()); in determineEndOffset()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaExprMember.cpp | 1228 const ObjCObjectType *ty = opty->getObjectType(); in ShouldTryAgainWithRedefinitionType() 1242 if (opty && !opty->getObjectType()->getInterface()) in ShouldTryAgainWithRedefinitionType() 1538 const ObjCObjectType *OT = OPT->getObjectType(); in LookupMemberExpr()
|
| H A D | SemaExprObjC.cpp | 3349 if (OPT->getObjectType()->isObjCClass()) { in BuildInstanceMessage() 4027 = InterfacePointerType->getObjectType()->getInterface(); in CheckObjCBridgeNSCast() 4091 = InterfacePointerType->getObjectType()->getInterface(); in CheckObjCBridgeCFCast()
|
| H A D | SemaObjCProperty.cpp | 595 ObjCInterfaceDecl *IDecl = ObjPtrTy->getObjectType()->getInterface(); in CreatePropertyDecl()
|
| H A D | SemaStmt.cpp | 2245 const ObjCObjectType *objectType = pointerType->getObjectType(); in CheckObjCForCollectionOperand()
|
| H A D | SemaDeclObjC.cpp | 53 method->getReturnType()->castAs<ObjCObjectPointerType>()->getObjectType(); in checkInitMethod()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Index/ |
| H A D | IndexBody.cpp | 295 addReceivers(Ptr->getObjectType()); in VisitObjCMessageExpr()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | CallEvent.cpp | 1288 ReceiverT = cast<ObjCObjectPointerType>(SupersType)->getObjectType(); in getRuntimeDefinition() 1308 ReceiverT = ReceiverDynT->getObjectType(); in getRuntimeDefinition()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | IRForTarget.cpp | 285 clang::QualType(pointer_objcobjpointertype->getObjectType(), 0); in CreateResultVariable()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ARCMigrate/ |
| H A D | ObjCMT.cpp | 434 ObjCInterfaceDecl *IDecl = ObjPtrTy->getObjectType()->getInterface(); in PropertyMemoryAttribute()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGObjC.cpp | 226 = InterfacePointerType->getObjectType()->getInterface(); in EmitObjCCollectionLiteral()
|
| H A D | CGObjCGNU.cpp | 2517 const ObjCInterfaceDecl *IDecl = OPT->getObjectType()->getInterface(); in GetEHType()
|
| H A D | MicrosoftCXXABI.cpp | 2016 ThisTy = CE->getObjectType(); in EmitVirtualDestructorCall()
|
| H A D | ItaniumCXXABI.cpp | 2077 ThisTy = CE->getObjectType(); in EmitVirtualDestructorCall()
|
| H A D | CGExprScalar.cpp | 2820 CharUnits size = CGF.getContext().getTypeSizeInChars(OPT->getObjectType()); in EmitScalarPrePostIncDec()
|
| H A D | CGObjCMac.cpp | 4756 const ObjCObjectType *ObjTy = OPT->getObjectType(); in EmitTryOrSynchronizedStmt()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 1866 ObjCInterfaceDecl *IDecl = Ptr->getObjectType()->getInterface(); in RewriteObjCTryStmt()
|
| H A D | RewriteModernObjC.cpp | 1971 ObjCInterfaceDecl *IDecl = Ptr->getObjectType()->getInterface(); in RewriteObjCTryStmt()
|