| /llvm-project/clang/test/Index/ |
| H A D | annotate-comments-property-accessor.m | 15 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 21 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 22 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 31 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 32 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 41 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 51 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 52 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert…
|
| H A D | overriding-method-comments.mm | 22 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 31 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 37 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 51 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 57 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 64 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 70 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 76 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 81 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… 86 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}overriding-method-comment… [all …]
|
| /llvm-project/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 112 if (MD && MD->isInstanceMethod() == isInstance) in getMethod() 130 if (MD && MD->isInstanceMethod() && !MD->isImplicit()) in HasUserDeclaredSetterMethod() 975 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 980 Redecl = ImplD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 985 Redecl = IFD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 990 Redecl = CatD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 1003 isInstanceMethod(), in getNextRedeclarationImpl() 1022 if (ObjCMethodDecl *MD = IFD->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl() 1025 if (ObjCMethodDecl *MD = Ext->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl() 1030 if (ObjCMethodDecl *MD = CatD->getMethod(Sel, isInstanceMethod())) in getCanonicalDecl() [all...] |
| H A D | Comment.cpp | 261 IsInstanceMethod = MD->isInstanceMethod(); in fill()
|
| H A D | ODRDiagsEmitter.cpp | 455 if (FirstMethod->isInstanceMethod() != SecondMethod->isInstanceMethod()) { in diagnoseSubMismatchObjCMethod() 457 << FirstMethod << FirstMethod->isInstanceMethod(); in diagnoseSubMismatchObjCMethod() 459 << SecondMethod << SecondMethod->isInstanceMethod(); in diagnoseSubMismatchObjCMethod()
|
| H A D | Mangle.cpp | 367 OS << (MD->isInstanceMethod() ? '-' : '+') << '['; in mangleObjCMethodName()
|
| /llvm-project/clang/tools/libclang/ |
| H A D | CIndexUSRs.cpp | 101 unsigned isInstanceMethod, in clang_constructUSR_ObjCMethod() argument 106 generateUSRForObjCMethod(name, isInstanceMethod, OS); in clang_constructUSR_ObjCMethod()
|
| /llvm-project/clang-tools-extra/clang-tidy/objc/ |
| H A D | DeallocInCategoryCheck.cpp | 24 objcMethodDecl(isInstanceMethod(), hasName("dealloc"), in registerMatchers()
|
| H A D | MissingHashCheck.cpp | 40 hasName("isEqual:"), isInstanceMethod(), in registerMatchers()
|
| /llvm-project/clang/lib/Sema/ |
| H A D | SemaDeclObjC.cpp | 341 if (MDecl->isInstanceMethod()) in AddAnyMethodToGlobalPool() 446 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef() 498 MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef() 1775 (PrevMethod->isInstanceMethod() == Method->isInstanceMethod()) && in DiagnoseClassExtensionDupMethods() 3457 if (!chosen->isInstanceMethod()) 3566 BestMethod->isInstanceMethod() ? Pos->second.first : Pos->second.second; in AreMultipleMethodsInGlobalPool() 3946 IDecl->getMethod(MD->getSelector(), MD->isInstanceMethod())) { in DiagnoseCategoryDirectMembersProtocolConformance() 4017 if (Method->isInstanceMethod()) { in ActOnAtEnd() 4300 method->isInstanceMethod() in OverrideSearch() [all...] |
| H A D | SemaExprObjC.cpp | 1491 if (Method->isInstanceMethod() && isClassMessage) in getBaseMessageSendResultType() 1641 iface->getMethod(MD->getSelector(), MD->isInstanceMethod()); in findExplicitInstancetypeDeclarer() 1709 << Method->isInstanceMethod() << Method->getSelector() in EmitRelatedResultTypeNote() 2174 if (CurMethod->isInstanceMethod()) { in ActOnClassPropertyRefExpr() 2413 if (Method->isInstanceMethod()) { in ActOnSuperMessage() 2956 Sel, ArgsIn, Method->isInstanceMethod(), Methods)) in BuildInstanceMessage() 3016 if (Method->isInstanceMethod()) { in BuildInstanceMessage() 3026 Sel, ArgsIn, Method->isInstanceMethod(), Methods)) in BuildInstanceMessage() 3103 Sel, ArgsIn, Method->isInstanceMethod(), Methods)) in BuildInstanceMessage() 4818 } else if (CurMethod->isInstanceMethod()) { in LookupIvarInObjCMethod() [all...] |
| H A D | SemaObjCProperty.cpp | 1039 Decl->getReturnTypeSourceInfo(), Impl, Decl->isInstanceMethod(), in RedeclarePropertyAccessor() 1417 getterMethod->getSelector(), getterMethod->isInstanceMethod()); in ActOnPropertyImplDecl() 1481 setterMethod->getSelector(), setterMethod->isInstanceMethod()); in ActOnPropertyImplDecl() 1818 Method->isInstanceMethod()); in IvarBacksCurrentMethodAccessor()
|
| /llvm-project/clang/include/clang/Sema/ |
| H A D | Attr.h | 120 inline bool isInstanceMethod(const Decl *D) { in isInstanceMethod() function
|
| /llvm-project/clang/lib/ARCMigrate/ |
| H A D | TransZeroOutPropsInDealloc.cpp | 101 !(D->isInstanceMethod() && D->getSelector() == FinalizeSel)) in TraverseObjCMethodDecl()
|
| H A D | TransEmptyStatementsAndDealloc.cpp | 212 } else if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) { in cleanupDeallocOrFinalize()
|
| H A D | ObjCMT.cpp | 968 ClassString = OM->isInstanceMethod() ? '-' : '+'; in ReplaceWithInstancetype() 1155 if (Method->isPropertyAccessor() || !Method->isInstanceMethod() || in migrateProperty() 1250 !OM->isInstanceMethod() || in migrateNsReturnsInnerPointer() 1293 if (OM->isInstanceMethod() || in migrateFactoryMethod()
|
| H A D | Transforms.cpp | 532 if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) { in GCRewriteFinalize()
|
| /llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | IvarInvalidationChecker.cpp | 424 InterfD->isInstanceMethod()); in visit() 473 InterfD->isInstanceMethod()); in visit()
|
| /llvm-project/clang-tools-extra/clangd/refactor/tweaks/ |
| H A D | ObjCMemberwiseInitializer.cpp | 276 return MD->getMethodFamily() != OMF_init && MD->isInstanceMethod(); in apply()
|
| /llvm-project/clang/include/clang/CodeGen/ |
| H A D | CGFunctionInfo.h | 696 bool isInstanceMethod() const { return InstanceMethod; } 679 bool isInstanceMethod() const { return InstanceMethod; } isInstanceMethod() function
|
| /llvm-project/clang/include/clang/AST/ |
| H A D | DeclObjC.h | 426 bool isInstanceMethod() const { return ObjCMethodDeclBits.IsInstance; } in isInstanceMethod() function 434 bool isClassMethod() const { return !isInstanceMethod(); } in isClassMethod() 1029 &ObjCMethodDecl::isInstanceMethod>;
|
| /llvm-project/clang/lib/Index/ |
| H A D | IndexSymbol.cpp | 220 Info.Kind = MD->isInstanceMethod() ? SymbolKind::InstanceMethod : SymbolKind::ClassMethod; in getSymbolInfo()
|
| /llvm-project/clang/lib/Analysis/ |
| H A D | AnalysisDeclContext.cpp | 370 OS << (OMD->isInstanceMethod() ? '-' : '+') << '['; in getFunctionName()
|
| /llvm-project/clang-tools-extra/clangd/ |
| H A D | FindSymbols.cpp | 182 OS << (Method->isInstanceMethod() ? '-' : '+'); in getSymbolName()
|
| /llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangUserExpression.cpp | 211 if (!method_decl->isInstanceMethod()) in ScanContext()
|