| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/google/ |
| H A D | AvoidNSObjectNewCheck.cpp | 103 objcMethodDecl(isClassMethod(), isDefinition(), hasName("new")) in registerMatchers()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/ |
| H A D | SemanticHighlighting.cpp | 109 return OMD->isClassMethod() ? HighlightingKind::StaticMethod in kindForDecl() 232 return OMD->isClassMethod(); in isStatic() 673 highlightObjCSelector(Locs, /*Decl=*/true, OMD->isClassMethod(), in VisitObjCMethodDecl() 697 if (OMD->isClassMethod()) in highlightObjCImplicitPropertyRef()
|
| /llvm-project-15.0.7/clang/lib/Index/ |
| H A D | IndexBody.cpp | 251 if (Getter->isClassMethod() && in VisitObjCMessageExpr() 302 if (Getter->isClassMethod()) { in VisitObjCPropertyRefExpr()
|
| /llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Checkers/ |
| H A D | SValExplainer.h | 243 if (MD->isClassMethod()) in VisitParamVarRegion()
|
| /llvm-project-15.0.7/clang/lib/ExtractAPI/ |
| H A D | DeclarationFragments.cpp | 573 if (Method->isClassMethod()) in getFragmentsForObjCMethod() 784 if (Method->isClassMethod()) in getSubHeading()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaAvailability.cpp | 103 if (Init && Result == AR_Available && MD->isClassMethod() && in ShouldDiagnoseAvailabilityOfDecl() 158 if (MethodD->isClassMethod() && in ShouldDiagnoseAvailabilityInContext()
|
| H A D | SemaDeclObjC.cpp | 2651 match = !(MethodDecl->isClassMethod() && in WarnExactTypedMethods() 5029 InferRelatedResultType = ObjCMethod->isClassMethod(); in ActOnMethodDeclaration() 5052 if (ObjCMethod->isClassMethod() && in ActOnMethodDeclaration() 5268 if (Method->isClassMethod()) in GetIvarBackingPropertyAccessor()
|
| H A D | SemaObjCProperty.cpp | 2004 x->isClassMethod() == Prop->isClassProperty(); in DiagnoseUnimplementedAccessor()
|
| H A D | SemaExprObjC.cpp | 1546 assert(MD->isClassMethod() && "expected a class method"); in getMessageSendResultType()
|
| H A D | SemaExpr.cpp | 2843 bool IsClassMethod = CurMethod->isClassMethod(); in LookupIvarInObjCMethod() 13695 DiagID = method->isClassMethod() in CheckForModifiableLvalue()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGObjCRuntime.cpp | 399 if (classReceiver && method && method->isClassMethod()) in canMessageReceiverBeNull()
|
| H A D | CGObjCMac.cpp | 1175 + (size_t(MD->isClassMethod())); in get() 3358 Methods[unsigned(MD->isClassMethod())].push_back(MD); in GenerateCategory() 3541 Methods[unsigned(MD->isClassMethod())].push_back(MD); in GenerateClass() 4046 if (OMD->isClassMethod()) { in GenerateDirectMethodPrologue()
|
| H A D | CGObjC.cpp | 73 assert(BoxingMethod->isClassMethod() && "BoxingMethod must be a class method"); in EmitObjCBoxedExpr()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | Mangle.cpp | 334 OS << (MD->isClassMethod() ? "_c_" : "_i_") in mangleObjCMethodName()
|
| H A D | DeclObjC.cpp | 1146 assert(isClassMethod()); in getSelfType()
|
| /llvm-project-15.0.7/clang/lib/ASTMatchers/Dynamic/ |
| H A D | Registry.cpp | 404 REGISTER_MATCHER(isClassMethod); in RegistryMaps()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | DeclObjC.h | 439 bool isClassMethod() const { return !isInstanceMethod(); } in isClassMethod() function 1043 &ObjCMethodDecl::isClassMethod>;
|
| /llvm-project-15.0.7/clang/unittests/ASTMatchers/ |
| H A D | ASTMatchersTraversalTest.cpp | 706 TEST(Matcher, isClassMethod) { in TEST() argument 709 objcMethodDecl(isClassMethod()))); in TEST() 714 objcMethodDecl(isClassMethod()))); in TEST() 718 objcMethodDecl(isClassMethod()))); in TEST() 723 objcMethodDecl(isClassMethod()))); in TEST()
|
| /llvm-project-15.0.7/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 3655 AST_MATCHER(ObjCMethodDecl, isClassMethod) { in AST_MATCHER() argument 3656 return Node.isClassMethod(); in AST_MATCHER()
|
| /llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 4468 if (objc_method_decl->isClassMethod()) in GetMemberFunctionAtIndex() 4498 if (objc_method_decl->isClassMethod()) in GetMemberFunctionAtIndex()
|