/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 | 2944 void Sema::CheckObjCMethodOverrides(ObjCMethodDecl *ObjCMethod, in CheckObjCMethodOverrides() argument 2948 OverrideSearch overrides(*this, ObjCMethod); in CheckObjCMethodOverrides() 2965 } else if (isa<ObjCImplDecl>(ObjCMethod->getDeclContext())) { in CheckObjCMethodOverrides() 2974 MethodPool.find(ObjCMethod->getSelector()); in CheckObjCMethodOverrides() 2977 ObjCMethod->isInstanceMethod()? It->second.first: It->second.second; in CheckObjCMethodOverrides() 3003 ObjCMethod->SetRelatedResultType(); in CheckObjCMethodOverrides() 3006 mergeObjCMethodDecls(ObjCMethod, overridden); in CheckObjCMethodOverrides() 3008 if (ObjCMethod->isImplicit() && overridden->isImplicit()) in CheckObjCMethodOverrides() 3012 if (isa<ObjCInterfaceDecl>(ObjCMethod->getDeclContext()) || in CheckObjCMethodOverrides() 3013 isa<ObjCImplementationDecl>(ObjCMethod->getDeclContext())) in CheckObjCMethodOverrides() [all …]
|
D | SemaCodeComplete.cpp | 2924 case Decl::ObjCMethod: in getCursorKindForDecl()
|
/external/clang/include/clang/Basic/ |
D | Attr.td | 88 def ObjCInstanceMethod : SubsetSubject<ObjCMethod, 91 def ObjCInterfaceDeclInitMethod : SubsetSubject<ObjCMethod, 438 let Subjects = SubjectList<[ParmVar, ObjCMethod, Function], ErrorDiag>; 444 // let Subjects = [Function, ObjCMethod]; 469 // let Subjects = SubjectList<[ObjCMethod, ObjCProperty, Function]>; 475 // let Subjects = SubjectList<[ObjCMethod, ObjCProperty, Function]>; 548 let Subjects = SubjectList<[ObjCMethod, FunctionLike], WarnDiag, 662 // let Subjects = [Function, ObjCMethod]; 675 let Subjects = SubjectList<[Function, ObjCMethod], ErrorDiag>; 689 let Subjects = SubjectList<[ObjCMethod, Block, HasFunctionProto], WarnDiag, [all …]
|
D | DeclNodes.td | 62 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 | 120 case Decl::ObjCMethod: in getDefinitiveDeclContext() 196 case Decl::ObjCMethod: in isRedeclarableDeclKind()
|
/external/clang/lib/Frontend/ |
D | ASTConsumers.cpp | 228 case Decl::ObjCMethod: in PrintDeclContext() 381 case Decl::ObjCMethod: in PrintDeclContext()
|
/external/clang/utils/TableGen/ |
D | ClangAttrEmitter.cpp | 2066 ObjCMethod = 1U << 2, in CalculateDiagnostic() enumerator 2099 .Case("ObjCMethod", ObjCMethod) in CalculateDiagnostic() 2133 case ObjCMethod: return "ExpectedMethod"; in CalculateDiagnostic() 2144 case Func | ObjCMethod | Block: return "ExpectedFunctionMethodOrBlock"; in CalculateDiagnostic() 2145 case Func | ObjCMethod | Class: return "ExpectedFunctionMethodOrClass"; in CalculateDiagnostic() 2147 case Func | ObjCMethod | Param: return "ExpectedFunctionMethodOrParameter"; in CalculateDiagnostic() 2148 case Func | ObjCMethod: return "ExpectedFunctionOrMethod"; in CalculateDiagnostic() 2156 case ObjCMethod | ObjCProp: return "ExpectedMethodOrProperty"; in CalculateDiagnostic()
|
/external/clang/lib/AST/ |
D | Comment.cpp | 178 case Decl::ObjCMethod: { in fill()
|
D | DeclBase.cpp | 515 case ObjCMethod: in getIdentifierNamespaceForKind() 896 case Decl::ObjCMethod: in getPrimaryContext()
|
D | ASTContext.cpp | 401 static void addRedeclaredMethods(const ObjCMethodDecl *ObjCMethod, in addRedeclaredMethods() argument 403 const DeclContext *DC = ObjCMethod->getDeclContext(); in addRedeclaredMethods() 411 Ext->getMethod(ObjCMethod->getSelector(), in addRedeclaredMethods() 412 ObjCMethod->isInstanceMethod())) in addRedeclaredMethods()
|
D | Decl.cpp | 1211 case Decl::ObjCMethod: in computeLVForDecl()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | PlistDiagnostics.cpp | 404 case Decl::ObjCMethod: in FlushDiagnosticsImpl()
|
/external/clang/include/clang/AST/ |
D | DeclObjC.h | 233 : NamedDecl(ObjCMethod, contextDecl, beginLoc, SelInfo), in NamedDecl() argument 234 DeclContext(ObjCMethod), Family(InvalidObjCMethodFamily), in NamedDecl() 492 static bool classofKind(Kind K) { return K == ObjCMethod; } in classofKind()
|
D | DeclBase.h | 1138 case Decl::ObjCMethod: in isFunctionOrMethod()
|
/external/clang/lib/CodeGen/ |
D | CodeGenPGO.cpp | 293 case Decl::ObjCMethod: in VisitDecl()
|
D | CGDecl.cpp | 62 case Decl::ObjCMethod: in EmitDecl()
|
D | CodeGenModule.cpp | 3176 case Decl::ObjCMethod: { in EmitTopLevelDecl()
|
/external/clang/tools/libclang/ |
D | IndexingContext.cpp | 1003 case Decl::ObjCMethod: in getEntityInfo()
|
D | CIndex.cpp | 4830 case Decl::ObjCMethod: { in clang_getCursorDefinition() 6027 case Decl::ObjCMethod: in getDeclLanguage()
|
/external/clang/lib/Rewrite/Frontend/ |
D | RewriteObjC.cpp | 4873 case Decl::ObjCMethod: { in HandleDeclInMainFile()
|
D | RewriteModernObjC.cpp | 5856 case Decl::ObjCMethod: { in HandleDeclInMainFile()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 7067 void CheckObjCMethodOverrides(ObjCMethodDecl *ObjCMethod,
|