/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaDeclObjC.cpp | 4422 void Sema::CheckObjCMethodOverrides(ObjCMethodDecl *ObjCMethod, in CheckObjCMethodOverrides() argument 4425 if (!ObjCMethod) in CheckObjCMethodOverrides() 4428 OverrideSearch overrides(*this, ObjCMethod); in CheckObjCMethodOverrides() 4440 CheckObjCMethodDirectOverrides(ObjCMethod, overridden); in CheckObjCMethodOverrides() 4442 } else if (isa<ObjCImplDecl>(ObjCMethod->getDeclContext())) { in CheckObjCMethodOverrides() 4451 MethodPool.find(ObjCMethod->getSelector()); in CheckObjCMethodOverrides() 4454 ObjCMethod->isInstanceMethod()? It->second.first: It->second.second; in CheckObjCMethodOverrides() 4465 CheckObjCMethodDirectOverrides(ObjCMethod, SuperOverridden); in CheckObjCMethodOverrides() 4479 ObjCMethod->setRelatedResultType(); in CheckObjCMethodOverrides() 4482 mergeObjCMethodDecls(ObjCMethod, overridden); in CheckObjCMethodOverrides() [all …]
|
H A D | SemaCodeComplete.cpp | 3860 case Decl::ObjCMethod: in getCursorKindForDecl()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/ |
H A D | AnyCall.h | 32 ObjCMethod, enumerator 79 : E(ME), D(ME->getMethodDecl()), K(ObjCMethod) {} in AnyCall() 97 AnyCall(const ObjCMethodDecl *D) : E(nullptr), D(D), K(ObjCMethod) {} in AnyCall() 170 case ObjCMethod: in getReturnType()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
H A D | Attr.td | 104 def ObjCInstanceMethod : SubsetSubject<ObjCMethod, 480 [ObjCMethod], [ 723 let Subjects = SubjectList<[Function, ObjCMethod]>; 734 let Subjects = SubjectList<[Function, ObjCMethod]>; 750 let Subjects = SubjectList<[Function, ObjCMethod]>; 917 let Subjects = SubjectList<[ParmVar, ObjCMethod, Function], ErrorDiag>; 923 // let Subjects = [Function, ObjCMethod]; 951 // let Subjects = SubjectList<[ObjCMethod, ObjCProperty, Function]>; 957 // let Subjects = SubjectList<[ObjCMethod, ObjCProperty, Function]>; 976 let Subjects = SubjectList<[Function, ObjCMethod, ObjCProperty, ParmVar]>; [all …]
|
H A D | DeclNodes.td | 78 def ObjCMethod : DeclNode<Named, "Objective-C methods">, DeclContext;
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
H A D | ASTCommon.cpp | 315 case Decl::ObjCMethod: in getDefinitiveDeclContext() 398 case Decl::ObjCMethod: in isRedeclarableDeclKind()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
H A D | IssueHash.cpp | 109 case Decl::ObjCMethod: in GetEnclosingDeclContextSignature()
|
H A D | RetainSummaryManager.cpp | 675 case AnyCall::ObjCMethod: { in getSummary()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | Comment.cpp | 252 case Decl::ObjCMethod: { in fill()
|
H A D | DeclBase.cpp | 749 case ObjCMethod: in getIdentifierNamespaceForKind() 1234 case Decl::ObjCMethod: in getPrimaryContext()
|
H A D | DeclObjC.cpp | 786 : NamedDecl(ObjCMethod, contextDecl, beginLoc, SelInfo), in ObjCMethodDecl() 787 DeclContext(ObjCMethod), MethodDeclType(T), ReturnTInfo(ReturnTInfo), in ObjCMethodDecl()
|
H A D | ASTContext.cpp | 458 static void addRedeclaredMethods(const ObjCMethodDecl *ObjCMethod, in addRedeclaredMethods() argument 460 const DeclContext *DC = ObjCMethod->getDeclContext(); in addRedeclaredMethods() 468 Ext->getMethod(ObjCMethod->getSelector(), in addRedeclaredMethods() 469 ObjCMethod->isInstanceMethod())) in addRedeclaredMethods()
|
H A D | Decl.cpp | 1399 case Decl::ObjCMethod: in computeLVForDecl()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Index/ |
H A D | IndexSymbol.cpp | 217 case Decl::ObjCMethod: { in getSymbolInfo()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
H A D | PlistDiagnostics.cpp | 724 case Decl::ObjCMethod: in FlushDiagnosticsImpl()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | CodeGenPGO.cpp | 191 case Decl::ObjCMethod: in VisitDecl()
|
H A D | CodeGenModule.cpp | 5787 case Decl::ObjCMethod: { in EmitTopLevelDecl() 5945 case Decl::ObjCMethod: in AddDeferredUnusedCoverageMapping() 5991 case Decl::ObjCMethod: { in EmitDeferredUnusedCoverageMappings()
|
H A D | CGDecl.cpp | 78 case Decl::ObjCMethod: in EmitDecl()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | DeclBase.h | 1916 case Decl::ObjCMethod:
|
H A D | DeclObjC.h | 542 static bool classofKind(Kind K) { return K == ObjCMethod; } in classofKind()
|
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/ |
H A D | CIndex.cpp | 6551 case Decl::ObjCMethod: { in clang_getCursorDefinition() 7906 case Decl::ObjCMethod: in getDeclLanguage()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/ |
H A D | RewriteObjC.cpp | 4829 case Decl::ObjCMethod: { in HandleDeclInMainFile()
|
H A D | RewriteModernObjC.cpp | 5728 case Decl::ObjCMethod: { in HandleDeclInMainFile()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
H A D | Sema.h | 9849 void CheckObjCMethodOverrides(ObjCMethodDecl *ObjCMethod,
|