| /llvm-project-15.0.7/clang/test/Index/ |
| H A D | annotate-comments-property-accessor.m | 16 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 22 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 23 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 32 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 33 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 42 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 52 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-propert… 53 // 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-15.0.7/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 113 if (MD && MD->isInstanceMethod() == isInstance) in getMethod() 131 if (MD && MD->isInstanceMethod() && !MD->isImplicit()) in HasUserDeclaredSetterMethod() 952 Redecl = IFD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 957 Redecl = CatD->getMethod(getSelector(), isInstanceMethod()); in getNextRedeclarationImpl() 1068 if (!isInstanceMethod()) in getMethodFamily() 1073 if (isInstanceMethod() || !getReturnType()->isVoidType()) in getMethodFamily() 1078 if (!isInstanceMethod() || !getReturnType()->isObjCIdType()) in getMethodFamily() 1117 if (isInstanceMethod()) { in getSelfType() 1130 if (isInstanceMethod()) { in getSelfType() 1250 Method->isInstanceMethod(), in CollectOverriddenMethodsRecurse() [all …]
|
| H A D | Comment.cpp | 257 IsInstanceMethod = MD->isInstanceMethod(); in fill()
|
| H A D | Mangle.cpp | 365 OS << (MD->isInstanceMethod() ? '-' : '+') << '['; in mangleObjCMethodName()
|
| /llvm-project-15.0.7/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-15.0.7/clang-tools-extra/clang-tidy/objc/ |
| H A D | DeallocInCategoryCheck.cpp | 26 objcMethodDecl(isInstanceMethod(), hasName("dealloc"), in registerMatchers()
|
| H A D | MissingHashCheck.cpp | 42 hasName("isEqual:"), isInstanceMethod(), in registerMatchers()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaDeclObjC.cpp | 335 if (MDecl->isInstanceMethod()) in AddAnyMethodToGlobalPool() 439 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef() 491 MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef() 1765 (PrevMethod->isInstanceMethod() == Method->isInstanceMethod()) && in DiagnoseClassExtensionDupMethods() 3454 if (!chosen->isInstanceMethod()) in isAcceptableMethodMismatch() 4012 if (Method->isInstanceMethod()) { in ActOnAtEnd() 4293 method->isInstanceMethod() ? it->second.first : it->second.second; in OverrideSearch() 4665 bool isInstance = Method->isInstanceMethod(); in checkObjCDirectMethodClashes() 4848 Setter->isInstanceMethod() == ObjCMethod->isInstanceMethod()) { in ActOnMethodDeclaration() 4854 Getter->isInstanceMethod() == ObjCMethod->isInstanceMethod()) { in ActOnMethodDeclaration() [all …]
|
| H A D | SemaExprObjC.cpp | 1488 if (Method->isInstanceMethod() && isClassMessage) in getBaseMessageSendResultType() 1642 iface->getMethod(MD->getSelector(), MD->isInstanceMethod()); in findExplicitInstancetypeDeclarer() 1708 << Method->isInstanceMethod() << Method->getSelector() in EmitRelatedResultTypeNote() 2176 if (CurMethod->isInstanceMethod()) { in ActOnClassPropertyRefExpr() 2416 if (Method->isInstanceMethod()) { in ActOnSuperMessage() 2963 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod(), Methods)) in BuildInstanceMessage() 3023 if (Method->isInstanceMethod()) { in BuildInstanceMessage() 3033 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod(), in BuildInstanceMessage() 3110 SelectBestMethod(Sel, ArgsIn, Method->isInstanceMethod(), in BuildInstanceMessage()
|
| H A D | SemaObjCProperty.cpp | 1056 Decl->getReturnTypeSourceInfo(), Impl, Decl->isInstanceMethod(), in RedeclarePropertyAccessor() 1441 getterMethod->getSelector(), getterMethod->isInstanceMethod()); in ActOnPropertyImplDecl() 1505 setterMethod->getSelector(), setterMethod->isInstanceMethod()); in ActOnPropertyImplDecl() 1842 Method->isInstanceMethod()); in IvarBacksCurrentMethodAccessor()
|
| /llvm-project-15.0.7/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 | 970 ClassString = OM->isInstanceMethod() ? '-' : '+'; in ReplaceWithInstancetype() 1157 if (Method->isPropertyAccessor() || !Method->isInstanceMethod() || in migrateProperty() 1252 !OM->isInstanceMethod() || in migrateNsReturnsInnerPointer() 1295 if (OM->isInstanceMethod() || in migrateFactoryMethod()
|
| H A D | Transforms.cpp | 531 if (MD->isInstanceMethod() && MD->getSelector() == FinalizeSel) { in GCRewriteFinalize()
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | IvarInvalidationChecker.cpp | 433 InterfD->isInstanceMethod()); in visit() 485 InterfD->isInstanceMethod()); in visit()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/refactor/tweaks/ |
| H A D | ObjCMemberwiseInitializer.cpp | 277 return MD->getMethodFamily() != OMF_init && MD->isInstanceMethod(); in apply()
|
| /llvm-project-15.0.7/clang/lib/ExtractAPI/ |
| H A D | DeclarationFragments.cpp | 575 else if (Method->isInstanceMethod()) in getFragmentsForObjCMethod() 786 else if (Method->isInstanceMethod()) in getSubHeading()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | DeclObjC.h | 431 bool isInstanceMethod() const { return ObjCMethodDeclBits.IsInstance; } in isInstanceMethod() function 439 bool isClassMethod() const { return !isInstanceMethod(); } in isClassMethod() 1026 &ObjCMethodDecl::isInstanceMethod>;
|
| /llvm-project-15.0.7/clang/include/clang/CodeGen/ |
| H A D | CGFunctionInfo.h | 662 bool isInstanceMethod() const { return InstanceMethod; } in isInstanceMethod() function
|
| /llvm-project-15.0.7/clang/lib/Analysis/ |
| H A D | AnalysisDeclContext.cpp | 371 OS << (OMD->isInstanceMethod() ? '-' : '+') << '['; in getFunctionName()
|
| /llvm-project-15.0.7/clang/lib/Index/ |
| H A D | IndexSymbol.cpp | 219 Info.Kind = MD->isInstanceMethod() ? SymbolKind::InstanceMethod : SymbolKind::ClassMethod; in getSymbolInfo()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangUserExpression.cpp | 212 if (!method_decl->isInstanceMethod()) in ScanContext()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/ |
| H A D | FindSymbols.cpp | 181 OS << (Method->isInstanceMethod() ? '-' : '+'); in getSymbolName()
|
| /llvm-project-15.0.7/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Registry.cpp | 436 REGISTER_MATCHER(isInstanceMethod); in RegistryMaps()
|