| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCDeclVendor.cpp | 433 context.getObjCInterfaceType(superclass_decl))); in FinishDecl() 559 ast_ctx.getObjCInterfaceType(result_iface_decl); in FindDecls() 606 clang::QualType new_iface_type = ast_ctx.getObjCInterfaceType(iface_decl); in FindDecls()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaExprObjC.cpp | 135 Ty = Context.getObjCInterfaceType(NSStringIDecl); in BuildObjCStringLiteral() 278 QualType NSNumberObject = CX.getObjCInterfaceType(S.NSNumberDecl); in getNSNumberFactoryMethod() 526 QualType NSStringObject = Context.getObjCInterfaceType(NSStringDecl); in BuildObjCBoxedExpr() 660 QualType NSValueObject = Context.getObjCInterfaceType(NSValueDecl); in BuildObjCBoxedExpr() 1121 Context.getObjCInterfaceType(NSDictionaryDecl)); in BuildObjCDictionaryLiteral() 1499 Context.getObjCInterfaceType(Class))); in getBaseMessageSendResultType() 1548 Context.getObjCInterfaceType(MD->getClassInterface())); in getMessageSendResultType() 2339 T = Context.getObjCInterfaceType(Class); in getObjCMessageKind() 2371 QualType T = Context.getObjCInterfaceType(Class); in getObjCMessageKind() 2659 if (RequireCompleteType(Loc, Context.getObjCInterfaceType(Class), in BuildClassMessage() [all …]
|
| H A D | SemaDeclObjC.cpp | 164 << Context.getObjCInterfaceType(CurrentClass) in CheckObjCMethodOverride() 580 SuperClassType = Context.getObjCInterfaceType(SuperClassDecl); in ActOnSuperClassOfClassInterface() 1581 type = Context.getObjCInterfaceType(typeDecl.get<ObjCInterfaceDecl *>()); in actOnObjCTypeArgsOrProtocolQualifiers() 1817 || RequireCompleteType(ClassLoc, Context.getObjCInterfaceType(IDecl), in ActOnStartCategoryInterface() 1928 } else if (RequireCompleteType(ClassLoc, Context.getObjCInterfaceType(IDecl), in ActOnStartCategoryImplementation() 1983 RequireCompleteType(ClassLoc, Context.getObjCInterfaceType(IDecl), in ActOnStartClassImplementation() 2045 Context.getObjCInterfaceType(SDecl), in ActOnStartClassImplementation()
|
| H A D | SemaPseudoObject.cpp | 561 S.Context.getObjCInterfaceType(method->getClassInterface()), in LookupMethodInReceiverType() 577 QualType IT = S.Context.getObjCInterfaceType(PRE->getClassReceiver()); in LookupMethodInReceiverType()
|
| H A D | SemaCodeComplete.cpp | 917 return C.getObjCInterfaceType(Iface); in getDeclUsageType() 7931 Receiver = ParsedType::make(Context.getObjCInterfaceType(CDecl)); in CodeCompleteObjCSuperMessage() 8100 Context.getObjCInterfaceType(Super)) in CodeCompleteObjCInstanceMessage() 8110 S, ParsedType::make(Context.getObjCInterfaceType(IFace)), SelIdents, in CodeCompleteObjCInstanceMessage() 8114 Context.getObjCObjectPointerType(Context.getObjCInterfaceType(IFace)); in CodeCompleteObjCInstanceMessage()
|
| H A D | SemaStmt.cpp | 3974 RelatedRetType = Context.getObjCInterfaceType(MD->getClassInterface()); in BuildReturnStmt()
|
| H A D | SemaDecl.cpp | 498 T = Context.getObjCInterfaceType(IDecl); in getTypeName() 1188 QualType T = Context.getObjCInterfaceType(Class); in ClassifyName()
|
| /llvm-project-15.0.7/clang/tools/libclang/ |
| H A D | CXType.cpp | 243 return MakeCXType(Context.getObjCInterfaceType(ID), TU); in clang_getCursorType() 259 = Context.getObjCInterfaceType(getCursorObjCSuperClassRef(C).first); in clang_getCursorType() 264 QualType T = Context.getObjCInterfaceType(getCursorObjCClassRef(C).first); in clang_getCursorType()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | ExprObjC.cpp | 98 return ctx.getObjCInterfaceType(getClassReceiver()); in getReceiverType()
|
| H A D | DeclObjC.cpp | 1121 selfTy = Context.getObjCInterfaceType(OID); in getSelfType() 1519 C.getObjCInterfaceType(Result, PrevDecl); in Create()
|
| H A D | ASTStructuralEquivalence.cpp | 1960 Context.ToCtx.getObjCInterfaceType(D2->getContainingInterface()); in IsStructurallyEquivalent() 2036 QualType D2Type = Context.ToCtx.getObjCInterfaceType(D2->getClassInterface()); in IsStructurallyEquivalent()
|
| H A D | Type.cpp | 1658 = classDecl->getASTContext().getObjCInterfaceType( in computeSuperClassTypeSlow() 1678 return interfaceDecl->getASTContext().getObjCInterfaceType(interfaceDecl) in getInterfaceType()
|
| H A D | ASTContext.cpp | 5541 QualType ASTContext::getObjCInterfaceType(const ObjCInterfaceDecl *Decl, in getObjCInterfaceType() function in ASTContext 9030 ObjCConstantStringType = getObjCInterfaceType(Decl); in setObjCConstantStringInterface() 9866 QualType Result = getObjCInterfaceType(LHS->getInterface()); in areCommonBaseCompatible() 9916 QualType Result = getObjCInterfaceType(RHS->getInterface()); in areCommonBaseCompatible()
|
| H A D | ASTImporter.cpp | 1652 return Importer.getToContext().getObjCInterfaceType(*ToDeclOrErr); in VisitObjCInterfaceType()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | ASTContext.h | 1684 QualType getObjCInterfaceType(const ObjCInterfaceDecl *Decl, 2089 return getObjCInterfaceType(getObjCProtocolDecl()); in getObjCProtoType()
|
| H A D | TypeProperties.td | 870 return ctx.getObjCInterfaceType(
|
| H A D | RecursiveASTVisitor.h | 2778 QualType Type = IDecl->getASTContext().getObjCInterfaceType(IDecl);
|
| /llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangASTImporter.cpp | 982 m_source_ctx->getObjCInterfaceType(imported_from_superclass))); in ImportDefinitionTo()
|
| /llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 1220 return GetType(getASTContext().getObjCInterfaceType(decl)); in GetTypeForDecl() 1827 return GetType(ast.getObjCInterfaceType(decl)); in CreateObjCClass() 5929 return GetType(getASTContext().getObjCInterfaceType( in GetDirectBaseClassAtIndex() 5950 return GetType(getASTContext().getObjCInterfaceType( in GetDirectBaseClassAtIndex() 6324 GetType(getASTContext().getObjCInterfaceType( in GetChildCompilerTypeAtIndex() 6330 getASTContext().getObjCInterfaceType( in GetChildCompilerTypeAtIndex() 6804 GetType(getASTContext().getObjCInterfaceType( in GetIndexOfChildMemberWithName() 7857 clang_ast.getObjCInterfaceType(super_interface_decl))); in SetObjCSuperClass()
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
| H A D | RetainCountChecker.cpp | 409 Ctx.getObjCObjectPointerType(Ctx.getObjCInterfaceType(D)); in GetReturnType()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | ItaniumCXXABI.cpp | 3908 QualType SuperTy = CGM.getContext().getObjCInterfaceType(Super); in BuildObjCObjectTypeInfo()
|
| H A D | CGDebugInfo.cpp | 2826 getOrCreateType(CGM.getContext().getObjCInterfaceType(SClass), Unit); in CreateTypeDefinition()
|
| H A D | CodeGenModule.cpp | 6213 DI->getOrCreateInterfaceType(getContext().getObjCInterfaceType( in EmitTopLevelDecl()
|
| /llvm-project-15.0.7/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 1106 QualType selfTy = Context->getObjCInterfaceType(IDecl); in RewriteObjCMethodDecl()
|
| H A D | RewriteModernObjC.cpp | 1273 QualType selfTy = Context->getObjCInterfaceType(IDecl); in RewriteObjCMethodDecl()
|