| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaDeclObjC.cpp | 4438 void Sema::CheckObjCMethodOverrides(ObjCMethodDecl *ObjCMethod, in CheckObjCMethodOverrides() argument 4441 if (!ObjCMethod) in CheckObjCMethodOverrides() 4449 OverrideSearch overrides(*this, ObjCMethod); in CheckObjCMethodOverrides() 4460 CheckObjCMethodDirectOverrides(ObjCMethod, overridden); in CheckObjCMethodOverrides() 4462 } else if (isa<ObjCImplDecl>(ObjCMethod->getDeclContext())) { in CheckObjCMethodOverrides() 4471 MethodPool.find(ObjCMethod->getSelector()); in CheckObjCMethodOverrides() 4474 ObjCMethod->isInstanceMethod()? It->second.first: It->second.second; in CheckObjCMethodOverrides() 4485 CheckObjCMethodDirectOverrides(ObjCMethod, SuperOverridden); in CheckObjCMethodOverrides() 4499 ObjCMethod->setRelatedResultType(); in CheckObjCMethodOverrides() 4502 mergeObjCMethodDecls(ObjCMethod, overridden); in CheckObjCMethodOverrides() [all …]
|
| /openbsd-src/gnu/llvm/clang/include/clang/Analysis/ |
| H A D | AnyCall.h | 33 ObjCMethod, enumerator 80 : E(ME), D(ME->getMethodDecl()), K(ObjCMethod) {} in AnyCall() 98 AnyCall(const ObjCMethodDecl *D) : E(nullptr), D(D), K(ObjCMethod) {} in AnyCall() 171 case ObjCMethod: in getReturnType()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | Attr.td | 119 def ObjCInstanceMethod : SubsetSubject<ObjCMethod, 518 [ObjCMethod], [ 770 let Subjects = SubjectList<[Function, ObjCMethod]>; 781 let Subjects = SubjectList<[Function, ObjCMethod]>; 797 let Subjects = SubjectList<[Function, ObjCMethod]>; 984 let Subjects = SubjectList<[ParmVar, ObjCMethod, Function], ErrorDiag>; 990 // let Subjects = [Function, ObjCMethod]; 1018 // let Subjects = SubjectList<[ObjCMethod, ObjCProperty, Function]>; 1024 // let Subjects = SubjectList<[ObjCMethod, ObjCProperty, Function]>; 1043 let Subjects = SubjectList<[Function, ObjCMethod, ObjCProperty, ParmVar]>; [all …]
|
| H A D | DeclNodes.td | 82 def ObjCMethod : DeclNode<Named, "Objective-C methods">, DeclContext;
|
| /openbsd-src/gnu/llvm/clang/lib/Serialization/ |
| H A D | ASTCommon.cpp | 318 case Decl::ObjCMethod: in getDefinitiveDeclContext() 403 case Decl::ObjCMethod: in isRedeclarableDeclKind()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | ODRDiagsEmitter.h | 115 ObjCMethod, enumerator
|
| H A D | DeclBase.h | 1983 case Decl::ObjCMethod:
|
| H A D | DeclObjC.h | 542 static bool classofKind(Kind K) { return K == ObjCMethod; } in classofKind()
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/ |
| H A D | IssueHash.cpp | 110 case Decl::ObjCMethod: in GetEnclosingDeclContextSignature()
|
| H A D | RetainSummaryManager.cpp | 683 case AnyCall::ObjCMethod: { in getSummary()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | ODRDiagsEmitter.cpp | 616 case Decl::ObjCMethod: in FindTypeDiffs() 617 return ObjCMethod; in FindTypeDiffs() 976 case ObjCMethod: in diagnoseMismatch() 1611 case ObjCMethod: in diagnoseMismatch() 2053 case ObjCMethod: { in diagnoseMismatch() 2180 case ObjCMethod: { in diagnoseMismatch()
|
| H A D | Comment.cpp | 251 case Decl::ObjCMethod: { in fill()
|
| H A D | DeclBase.cpp | 763 case ObjCMethod: in getIdentifierNamespaceForKind() 1292 case Decl::ObjCMethod: in getPrimaryContext()
|
| H A D | DeclObjC.cpp | 829 : NamedDecl(ObjCMethod, contextDecl, beginLoc, SelInfo), in ObjCMethodDecl() 830 DeclContext(ObjCMethod), MethodDeclType(T), ReturnTInfo(ReturnTInfo), in ObjCMethodDecl()
|
| H A D | ODRHash.cpp | 544 case Decl::ObjCMethod: in isSubDeclToBeProcessed()
|
| H A D | ASTContext.cpp | 466 static void addRedeclaredMethods(const ObjCMethodDecl *ObjCMethod, in addRedeclaredMethods() argument 468 const DeclContext *DC = ObjCMethod->getDeclContext(); in addRedeclaredMethods() 476 Ext->getMethod(ObjCMethod->getSelector(), in addRedeclaredMethods() 477 ObjCMethod->isInstanceMethod())) in addRedeclaredMethods()
|
| H A D | Decl.cpp | 1457 case Decl::ObjCMethod: in computeLVForDecl()
|
| /openbsd-src/gnu/llvm/clang/lib/Index/ |
| H A D | IndexSymbol.cpp | 217 case Decl::ObjCMethod: { in getSymbolInfo()
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
| H A D | PlistDiagnostics.cpp | 725 case Decl::ObjCMethod: in FlushDiagnosticsImpl()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CodeGenPGO.cpp | 192 case Decl::ObjCMethod: in VisitDecl()
|
| H A D | CodeGenModule.cpp | 6417 case Decl::ObjCMethod: { in EmitTopLevelDecl() 6593 case Decl::ObjCMethod: in AddDeferredUnusedCoverageMapping() 6639 case Decl::ObjCMethod: { in EmitDeferredUnusedCoverageMappings()
|
| H A D | CGDecl.cpp | 79 case Decl::ObjCMethod: in EmitDecl()
|
| /openbsd-src/gnu/llvm/clang/tools/libclang/ |
| H A D | CIndex.cpp | 6817 case Decl::ObjCMethod: { in clang_getCursorDefinition() 8172 case Decl::ObjCMethod: in getDeclLanguage()
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 4817 case Decl::ObjCMethod: { in HandleDeclInMainFile()
|
| H A D | RewriteModernObjC.cpp | 5717 case Decl::ObjCMethod: { in HandleDeclInMainFile()
|