| /openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
| H A D | KaleidoscopeJIT.h | 105 MaterializationUnit::Interface getInterface(FunctionAST &F) { in getInterface() function 120 : MaterializationUnit(L.getInterface(*F)), L(L), F(std::move(F)) {} in KaleidoscopeASTMaterializationUnit()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | NameSearchContext.cpp | 163 ObjCInterfaceDecl *interface_decl = objc_object_type->getInterface(); in AddTypeDecl()
|
| H A D | ClangASTImporter.cpp | 392 objc_class_type->getInterface(); in CanImport() 466 objc_class_type->getInterface(); in Import() 655 objc_object_type->getInterface()) { in CompleteAndFetchChildren() 699 objc_object_type->getInterface()) in RequireCompleteType()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | Type.cpp | 1587 ObjCInterfaceDecl *curClassDecl = objectType ? objectType->getInterface() in getObjCSubstitutions() 1606 curClassDecl = objectType->getInterface(); in getObjCSubstitutions() 1621 if (auto *ID = IfaceT->getInterface()) { in acceptsObjCTypeParams() 1634 ObjCInterfaceDecl *classDecl = getInterface(); in computeSuperClassTypeSlow() 1647 ObjCInterfaceDecl *superClassDecl = superClassObjTy->getInterface(); in computeSuperClassTypeSlow() 1683 superClassObjTy->getInterface()); in computeSuperClassTypeSlow() 1701 if (auto interfaceDecl = getObjectType()->getInterface()) { in getInterfaceType() 1723 if (T->getNumProtocols() && T->getInterface()) in getAsObjCQualifiedInterfaceType() 1754 if (OT->getInterface()) in getAsObjCInterfaceType()
|
| H A D | ASTContext.cpp | 8400 ObjCInterfaceDecl *OI = T->castAs<ObjCObjectType>()->getInterface(); in getObjCEncodingForTypeImpl() 9723 if (LHS->getInterface() && RHS->getInterface()) { in canAssignObjCInterfaces() 9815 assert(LHS->getInterface() && "LHS must have an interface base"); in getIntersectionOfProtocols() 9816 assert(RHS->getInterface() && "RHS must have an interface base"); in getIntersectionOfProtocols() 9827 Context.CollectInheritedProtocols(LHS->getInterface(), LHSProtocolSet); in getIntersectionOfProtocols() 9838 Context.CollectInheritedProtocols(RHS->getInterface(), RHSProtocolSet); in getIntersectionOfProtocols() 9930 const ObjCInterfaceDecl* LDecl = LHS->getInterface(); in areCommonBaseCompatible() 9931 const ObjCInterfaceDecl* RDecl = RHS->getInterface(); in areCommonBaseCompatible() 9948 LHSAncestors[LHS->getInterface()->getCanonicalDecl()] = LHS; in areCommonBaseCompatible() 9950 if (declaresSameEntity(LHS->getInterface(), RDecl)) { in areCommonBaseCompatible() [all …]
|
| H A D | ExprObjC.cpp | 321 return Ty->getInterface(); in getReceiverInterface()
|
| H A D | ODRHash.cpp | 1081 AddDecl(T->getInterface()); in VisitObjCObjectType()
|
| H A D | DeclObjC.cpp | 360 if (ObjCInterfaceDecl *superDecl = superType->getInterface()) { in getSuperClass()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 2677 ->getInterface(); in GetDeclContextForType() 2773 objc_class_type->getInterface(); in GetCompleteQualType() 3504 objc_class_type->getInterface(); in IsDefined() 4437 objc_class_type->getInterface(); in GetNumMemberFunctions() 4535 objc_class_type->getInterface(); in GetMemberFunctionAtIndex() 5446 objc_class_type->getInterface(); in GetNumChildren() 5681 objc_class_type->getInterface(); in GetNumFields() 5835 objc_class_type->getInterface(); in GetFieldAtIndex() 5876 objc_class_type->getInterface(); in GetNumDirectBaseClasses() 5889 objc_interface_type->getInterface(); in GetNumDirectBaseClasses() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaAvailability.cpp | 696 ID = ReceiverTy->getAsObjCInterfaceType()->getInterface(); in VisitObjCMessageExpr() 862 if (NamedDecl *D = ObjCO->getInterface()) in VisitTypeLoc()
|
| H A D | SemaExprMember.cpp | 1209 if (opty && !opty->getObjectType()->getInterface()) in ShouldTryAgainWithRedefinitionType() 1339 ObjCInterfaceDecl *IDecl = OTy->getInterface(); in LookupMemberExpr()
|
| H A D | SemaDeclObjC.cpp | 60 ObjCInterfaceDecl *resultClass = result->getInterface(); in checkInitMethod() 590 if (NamedDecl *IDecl = T->castAs<ObjCObjectType>()->getInterface()) { in ActOnSuperClassOfClassInterface() 1167 if (NamedDecl *IDecl = T->castAs<ObjCObjectType>()->getInterface()) { in ActOnCompatibilityAlias() 1455 baseClass = objcObjectType->getInterface(); in actOnObjCTypeArgsOrProtocolQualifiers() 3487 auto *BoundInterface = TypeBound->getInterface(); in FilterMethodsByTypeBound()
|
| H A D | SemaExprObjC.cpp | 1937 if (ObjCInterfaceDecl *iface = objType->getInterface()) { in LookupMethodInObjectType() 2643 if (!ClassType || !(Class = ClassType->getInterface())) { in BuildClassMessage() 4022 = InterfacePointerType->getObjectType()->getInterface(); in CheckObjCBridgeNSCast() 4086 = InterfacePointerType->getObjectType()->getInterface(); in CheckObjCBridgeCFCast()
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
| H A D | CallEvent.cpp | 1311 if (ObjCInterfaceDecl *IDecl = ReceiverT->getInterface()) in getRuntimeDefinition() 1321 if (ObjCInterfaceDecl *IDecl = ReceiverT->getInterface()) { in getRuntimeDefinition()
|
| /openbsd-src/gnu/llvm/clang/lib/Index/ |
| H A D | IndexBody.cpp | 270 if (const auto *clsD = Ty->getInterface()) { in VisitObjCMessageExpr()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | CanonicalType.h | 582 getInterface)
|
| H A D | Type.h | 6113 ObjCInterfaceDecl *getInterface() const; 6260 inline ObjCInterfaceDecl *ObjCObjectType::getInterface() const { 6334 return getObjectType()->getInterface();
|
| /openbsd-src/gnu/llvm/clang/tools/libclang/ |
| H A D | CXIndexDataConsumer.cpp | 321 QualType Ty = IBAttr->getInterface(); in AttrListInfo() 323 if (const ObjCInterfaceDecl *InterD = ObjectTy->getInterface()) { in AttrListInfo()
|
| H A D | CIndexCodeCompletion.cpp | 625 D = Obj->getInterface(); in ProcessCodeCompleteResults()
|
| H A D | CXType.cpp | 515 D = cast<ObjCObjectType>(TP)->getInterface(); in clang_getTypeDeclaration()
|
| /openbsd-src/gnu/llvm/clang/lib/Edit/ |
| H A D | RewriteObjCFoundationAPI.cpp | 145 const ObjCInterfaceDecl *OID = ObjTy->getInterface(); in maybeAdjustInterfaceForSubscriptingCheck()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGObjC.cpp | 226 = InterfacePointerType->getObjectType()->getInterface(); in EmitObjCCollectionLiteral() 560 const ObjCInterfaceDecl *ID = ObjTy->getInterface(); in tryEmitSpecializedAllocInit() 629 OID = ReceiverType->castAs<ObjCObjectType>()->getInterface(); in EmitObjCMessageExpr()
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | ORCv2.rst | 646 : llvm::orc::MaterializationUnit(l.getInterface(ast)), astLayer(l), 685 llvm::orc::MaterializationUnit::Interface getInterface(Ast &ast) {
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | LocalizationChecker.cpp | 908 ObjCInterfaceDecl *Cls = PT->getObjectType()->getInterface(); in isNSStringType()
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteModernObjC.cpp | 1971 ObjCInterfaceDecl *IDecl = Ptr->getObjectType()->getInterface(); in RewriteObjCTryStmt() 2763 expType->getPointeeType()->castAs<ObjCObjectType>()->getInterface(); in RewriteObjCArrayLiteralExpr() 2906 expType->getPointeeType()->castAs<ObjCObjectType>()->getInterface(); in RewriteObjCDictionaryLiteralExpr() 3318 = Exp->getClassReceiver()->castAs<ObjCObjectType>()->getInterface(); in SynthMessageExpr()
|