| /llvm-project-15.0.7/lldb/test/Shell/SymbolFile/DWARF/ |
| H A D | clang-ast-from-dwarf-objc-property.m | 18 // CHECK: | `-getter ObjCMethod [[READONLY:0x[0-9a-f]+]] 'ro_number' 21 // CHECK: | |-getter ObjCMethod {{.*}} 'rw_number' 22 // CHECK: | `-setter ObjCMethod {{.*}} 'setRw_number:' 24 // CHECK: | `-getter ObjCMethod [[CUSTOM:0x[0-9a-f]+]] 'custom_getter' 27 // CHECK: | `-getter ObjCMethod [[CLASS:0x[0-9a-f]+]] 'class_property'
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaDeclObjC.cpp | 4433 if (!ObjCMethod) in CheckObjCMethodOverrides() 4818 Param->setDeclContext(ObjCMethod); in ActOnMethodDeclaration() 4823 ObjCMethod->setObjCDeclQualifier( in ActOnMethodDeclaration() 4871 ObjCMethod->addAttr( in ActOnMethodDeclaration() 4928 ObjCMethod->addAttr( in ActOnMethodDeclaration() 4981 << ObjCMethod->getDeclName(); in ActOnMethodDeclaration() 4983 ObjCMethod->setInvalidDecl(); in ActOnMethodDeclaration() 4984 return ObjCMethod; in ActOnMethodDeclaration() 5061 ObjCMethod->createImplicitParams(Context, ObjCMethod->getClassInterface()); in ActOnMethodDeclaration() 5063 ActOnDocumentableDecl(ObjCMethod); in ActOnMethodDeclaration() [all …]
|
| /llvm-project-15.0.7/clang/test/Index/ |
| H A D | print-usrs.c | 6 ObjCMethod foo: 0 c:objc(cs)NSObject 7 ObjCMethod baz:with 1 c:objc(cs)NSObject
|
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | Attr.td | 971 // let Subjects = [Function, ObjCMethod]; 1445 // let Subjects = [Function, ObjCMethod]; 1618 // let Subjects = [Function, ObjCMethod]; 2140 let Subjects = SubjectList<[ObjCMethod]>; 2329 // let Subjects = [Function, ObjCMethod]; 2338 // let Subjects = [Function, ObjCMethod]; 2540 // let Subjects = [Function, ObjCMethod]; 2603 // let Subjects = [Function, ObjCMethod]; 2610 // let Subjects = [Function, ObjCMethod]; 2617 // let Subjects = [Function, ObjCMethod]; [all …]
|
| H A D | DeclNodes.td | 82 def ObjCMethod : DeclNode<Named, "Objective-C methods">, DeclContext;
|
| /llvm-project-15.0.7/clang/test/AST/ |
| H A D | ast-dump-decl.m | 118 // CHECK-NEXT: getter ObjCMethod{{.*}} 'getterFoo' 119 // CHECK-NEXT: setter ObjCMethod{{.*}} 'setterFoo:'
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTCommon.cpp | 318 case Decl::ObjCMethod: in getDefinitiveDeclContext() 403 case Decl::ObjCMethod: in isRedeclarableDeclKind()
|
| /llvm-project-15.0.7/clang/lib/Analysis/ |
| H A D | IssueHash.cpp | 109 case Decl::ObjCMethod: in GetEnclosingDeclContextSignature()
|
| H A D | RetainSummaryManager.cpp | 682 case AnyCall::ObjCMethod: { in getSummary()
|
| /llvm-project-15.0.7/lldb/test/Shell/SymbolFile/DWARF/x86/ |
| H A D | module-ownership.mm | 53 // CHECK-OBJC-NEXT: `-getter ObjCMethod 0x[[NUMBER]] 'number'
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | Comment.cpp | 251 case Decl::ObjCMethod: { in fill()
|
| H A D | DeclBase.cpp | 750 case ObjCMethod: in getIdentifierNamespaceForKind() 1262 case Decl::ObjCMethod: in getPrimaryContext()
|
| H A D | DeclObjC.cpp | 794 : NamedDecl(ObjCMethod, contextDecl, beginLoc, SelInfo), in ObjCMethodDecl() 795 DeclContext(ObjCMethod), MethodDeclType(T), ReturnTInfo(ReturnTInfo), in ObjCMethodDecl()
|
| H A D | ASTContext.cpp | 464 static void addRedeclaredMethods(const ObjCMethodDecl *ObjCMethod, in addRedeclaredMethods() argument 466 const DeclContext *DC = ObjCMethod->getDeclContext(); in addRedeclaredMethods() 474 Ext->getMethod(ObjCMethod->getSelector(), in addRedeclaredMethods() 475 ObjCMethod->isInstanceMethod())) in addRedeclaredMethods()
|
| H A D | Decl.cpp | 1432 case Decl::ObjCMethod: in computeLVForDecl()
|
| /llvm-project-15.0.7/clang/lib/Index/ |
| H A D | IndexSymbol.cpp | 217 case Decl::ObjCMethod: { in getSymbolInfo()
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/ |
| H A D | PlistDiagnostics.cpp | 724 case Decl::ObjCMethod: in FlushDiagnosticsImpl()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CodeGenPGO.cpp | 191 case Decl::ObjCMethod: in VisitDecl()
|
| H A D | CodeGenModule.cpp | 6217 case Decl::ObjCMethod: { in EmitTopLevelDecl() 6385 case Decl::ObjCMethod: in AddDeferredUnusedCoverageMapping() 6431 case Decl::ObjCMethod: { in EmitDeferredUnusedCoverageMappings()
|
| H A D | CGDecl.cpp | 78 case Decl::ObjCMethod: in EmitDecl()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | DeclBase.h | 1960 case Decl::ObjCMethod:
|
| H A D | DeclObjC.h | 545 static bool classofKind(Kind K) { return K == ObjCMethod; } in classofKind()
|
| /llvm-project-15.0.7/clang/tools/libclang/ |
| H A D | CIndex.cpp | 6780 case Decl::ObjCMethod: { in clang_getCursorDefinition() 8135 case Decl::ObjCMethod: in getDeclLanguage()
|
| /llvm-project-15.0.7/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 4817 case Decl::ObjCMethod: { in HandleDeclInMainFile()
|