/external/clang/test/Index/ |
D | print-usrs.c | 6 ObjCMethod foo: 0 c:objc(cs)NSObject 7 ObjCMethod baz:with 1 c:objc(cs)NSObject
|
/external/clang/lib/Sema/ |
D | SemaDeclObjC.cpp | 4096 void Sema::CheckObjCMethodOverrides(ObjCMethodDecl *ObjCMethod, in CheckObjCMethodOverrides() argument 4100 OverrideSearch overrides(*this, ObjCMethod); in CheckObjCMethodOverrides() 4117 } else if (isa<ObjCImplDecl>(ObjCMethod->getDeclContext())) { in CheckObjCMethodOverrides() 4126 MethodPool.find(ObjCMethod->getSelector()); in CheckObjCMethodOverrides() 4129 ObjCMethod->isInstanceMethod()? It->second.first: It->second.second; in CheckObjCMethodOverrides() 4155 ObjCMethod->SetRelatedResultType(); in CheckObjCMethodOverrides() 4158 mergeObjCMethodDecls(ObjCMethod, overridden); in CheckObjCMethodOverrides() 4160 if (ObjCMethod->isImplicit() && overridden->isImplicit()) in CheckObjCMethodOverrides() 4164 if (isa<ObjCInterfaceDecl>(ObjCMethod->getDeclContext()) || in CheckObjCMethodOverrides() 4165 isa<ObjCImplementationDecl>(ObjCMethod->getDeclContext())) in CheckObjCMethodOverrides() [all …]
|
D | SemaCodeComplete.cpp | 3039 case Decl::ObjCMethod: in getCursorKindForDecl()
|
/external/clang/include/clang/Basic/ |
D | Attr.td | 90 def ObjCInstanceMethod : SubsetSubject<ObjCMethod, 93 def ObjCInterfaceDeclInitMethod : SubsetSubject<ObjCMethod, 436 let Subjects = SubjectList<[CXXMethod, ObjCMethod, Function], WarnDiag, 524 let Subjects = SubjectList<[ParmVar, ObjCMethod, Function], ErrorDiag>; 530 // let Subjects = [Function, ObjCMethod]; 555 // let Subjects = SubjectList<[ObjCMethod, ObjCProperty, Function]>; 561 // let Subjects = SubjectList<[ObjCMethod, ObjCProperty, Function]>; 661 let Subjects = SubjectList<[ObjCMethod, FunctionLike], WarnDiag, 807 // let Subjects = [Function, ObjCMethod]; 820 let Subjects = SubjectList<[Function, ObjCMethod], ErrorDiag>; [all …]
|
D | DeclNodes.td | 70 def ObjCMethod : DDecl<Named>, DeclContext;
|
/external/clang/test/Misc/ |
D | ast-dump-decl.m | 103 // CHECK-NEXT: getter ObjCMethod{{.*}} 'getterFoo' 104 // CHECK-NEXT: setter ObjCMethod{{.*}} 'setterFoo:'
|
/external/clang/lib/Serialization/ |
D | ASTCommon.cpp | 208 case Decl::ObjCMethod: in getDefinitiveDeclContext() 287 case Decl::ObjCMethod: in isRedeclarableDeclKind()
|
/external/clang/lib/Frontend/ |
D | ASTConsumers.cpp | 237 case Decl::ObjCMethod: in PrintDeclContext() 388 case Decl::ObjCMethod: in PrintDeclContext()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | IssueHash.cpp | 103 case Decl::ObjCMethod: in GetEnclosingDeclContextSignature()
|
D | PlistDiagnostics.cpp | 418 case Decl::ObjCMethod: in FlushDiagnosticsImpl()
|
/external/clang/utils/TableGen/ |
D | ClangAttrEmitter.cpp | 2563 ObjCMethod = 1U << 2, in CalculateDiagnostic() enumerator 2597 .Case("ObjCMethod", ObjCMethod) in CalculateDiagnostic() 2633 case ObjCMethod: return "ExpectedMethod"; in CalculateDiagnostic() 2644 case Func | ObjCMethod | Block: return "ExpectedFunctionMethodOrBlock"; in CalculateDiagnostic() 2645 case Func | ObjCMethod | Class: return "ExpectedFunctionMethodOrClass"; in CalculateDiagnostic() 2647 case Func | ObjCMethod | Param: return "ExpectedFunctionMethodOrParameter"; in CalculateDiagnostic() 2648 case Func | ObjCMethod: return "ExpectedFunctionOrMethod"; in CalculateDiagnostic() 2656 case ObjCMethod | ObjCProp: return "ExpectedMethodOrProperty"; in CalculateDiagnostic()
|
/external/clang/lib/AST/ |
D | Comment.cpp | 177 case Decl::ObjCMethod: { in fill()
|
D | DeclBase.cpp | 604 case ObjCMethod: in getIdentifierNamespaceForKind() 1006 case Decl::ObjCMethod: in getPrimaryContext()
|
D | ASTContext.cpp | 404 static void addRedeclaredMethods(const ObjCMethodDecl *ObjCMethod, in addRedeclaredMethods() argument 406 const DeclContext *DC = ObjCMethod->getDeclContext(); in addRedeclaredMethods() 414 Ext->getMethod(ObjCMethod->getSelector(), in addRedeclaredMethods() 415 ObjCMethod->isInstanceMethod())) in addRedeclaredMethods()
|
D | Decl.cpp | 1275 case Decl::ObjCMethod: in computeLVForDecl()
|
/external/clang/lib/Index/ |
D | IndexSymbol.cpp | 139 case Decl::ObjCMethod: in getSymbolInfo()
|
/external/clang/include/clang/AST/ |
D | DeclObjC.h | 233 : NamedDecl(ObjCMethod, contextDecl, beginLoc, SelInfo), in NamedDecl() argument 234 DeclContext(ObjCMethod), Family(InvalidObjCMethodFamily), in NamedDecl() 496 static bool classofKind(Kind K) { return K == ObjCMethod; } in classofKind()
|
D | DeclBase.h | 1267 case Decl::ObjCMethod: in isFunctionOrMethod()
|
/external/clang/lib/CodeGen/ |
D | CodeGenPGO.cpp | 139 case Decl::ObjCMethod: in VisitDecl()
|
D | CodeGenModule.cpp | 3859 case Decl::ObjCMethod: { in EmitTopLevelDecl() 3958 case Decl::ObjCMethod: in AddDeferredUnusedCoverageMapping() 4007 case Decl::ObjCMethod: { in EmitDeferredUnusedCoverageMappings()
|
D | CGDecl.cpp | 68 case Decl::ObjCMethod: in EmitDecl()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 5716 case Decl::ObjCMethod: { in clang_getCursorDefinition() 6923 case Decl::ObjCMethod: in getDeclLanguage()
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 4819 case Decl::ObjCMethod: { in HandleDeclInMainFile()
|
D | RewriteModernObjC.cpp | 5729 case Decl::ObjCMethod: { in HandleDeclInMainFile()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 7710 void CheckObjCMethodOverrides(ObjCMethodDecl *ObjCMethod,
|