| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/ |
| H A D | UseEmplaceCheck.cpp | 72 if (Node.getMethodDecl()->isFunctionTemplateSpecialization()) in AST_MATCHER() 73 return Node.getNumArgs() == Node.getMethodDecl() in AST_MATCHER() 78 return Node.getNumArgs() == Node.getMethodDecl()->getNumParams(); in AST_MATCHER() 262 Call->getMethodDecl()->getName().str()); in check()
|
| H A D | LoopConvertUtils.cpp | 187 if (isa<CXXConversionDecl>(ME->getMethodDecl())) in digThroughConstructorsConversions() 411 const auto *MDecl = MemCall->getMethodDecl(); in isAliasDecl()
|
| H A D | LoopConvertCheck.cpp | 823 BeginCall->getMethodDecl()->getReturnType().getCanonicalType(); in isConvertible()
|
| /llvm-project-15.0.7/clang/unittests/Tooling/RecursiveASTVisitorTests/ |
| H A D | CXXMemberCall.cpp | 19 Match(Call->getMethodDecl()->getQualifiedNameAsString(), in VisitCXXMemberCallExpr()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/performance/ |
| H A D | InefficientVectorOperationCheck.cpp | 235 llvm::StringRef FieldName = ProtoAddFieldCall->getMethodDecl()->getName(); in check() 268 << AppendCall->getMethodDecl()->getDeclName(); in check()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/objc/ |
| H A D | SuperSelfCheck.cpp | 93 << Message->getMethodDecl(); in check()
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
| H A D | ASTUtils.cpp | 38 isGetterOfRefCounted(memberCall->getMethodDecl()); in tryToFindPtrOrigin()
|
| /llvm-project-15.0.7/clang/include/clang/Analysis/ |
| H A D | AnyCall.h | 79 : E(ME), D(ME->getMethodDecl()), K(ObjCMethod) {} in AnyCall()
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | IvarInvalidationChecker.cpp | 606 const ObjCMethodDecl *MD = ME->getMethodDecl(); in checkObjCMessageExpr() 692 const ObjCMethodDecl *MD = ME->getMethodDecl(); in VisitObjCMessageExpr()
|
| H A D | DynamicTypePropagation.cpp | 767 return Method ? Method : MessageExpr->getMethodDecl(); in findMethodDecl()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | ScopeInfo.cpp | 197 if (const ObjCMethodDecl *MD = MsgE->getMethodDecl()) { in markSafeWeakUse()
|
| H A D | SemaAvailability.cpp | 688 if (ObjCMethodDecl *D = Msg->getMethodDecl()) { in VisitObjCMessageExpr()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/ |
| H A D | NotNullTerminatedResultCheck.cpp | 205 if (const CXXMethodDecl *DestMD = DestExpr->getMethodDecl()) in isStringDataAndLength() 209 if (const CXXMethodDecl *SrcMD = SrcExpr->getMethodDecl()) in isStringDataAndLength() 213 if (const CXXMethodDecl *LengthMD = LengthExpr->getMethodDecl()) in isStringDataAndLength()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | ExprObjC.h | 1346 const ObjCMethodDecl *getMethodDecl() const { in getMethodDecl() function 1353 ObjCMethodDecl *getMethodDecl() { in getMethodDecl() function 1366 if (HasMethod) return getMethodDecl()->getMethodFamily(); in getMethodFamily()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | ExprObjC.cpp | 266 if (const ObjCMethodDecl *MD = getMethodDecl()) { in getCallReturnType()
|
| H A D | ExprClassification.cpp | 393 cast<ObjCMessageExpr>(E)->getMethodDecl()) { in ClassifyInternal()
|
| /llvm-project-15.0.7/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 1277 OldMsg->getMethodDecl(), in RewritePropertyOrImplicitSetter() 1290 OldMsg->getMethodDecl(), in RewritePropertyOrImplicitSetter() 1306 OldMsg->getMethodDecl(), in RewritePropertyOrImplicitSetter() 1353 OldMsg->getMethodDecl(), in RewritePropertyOrImplicitGetter() 1366 OldMsg->getMethodDecl(), in RewritePropertyOrImplicitGetter() 1382 OldMsg->getMethodDecl(), in RewritePropertyOrImplicitGetter() 2651 if (ObjCMethodDecl *mDecl = Exp->getMethodDecl()) { in SynthMessageExpr() 2921 if (ObjCMethodDecl *OMD = Exp->getMethodDecl()) { in SynthMessageExpr() 2954 const ObjCMethodDecl *MD = Exp->getMethodDecl(); in SynthMessageExpr() 2977 Exp->getMethodDecl()); in SynthMessageExpr()
|
| H A D | RewriteModernObjC.cpp | 1462 OldMsg->getMethodDecl(), in RewritePropertyOrImplicitSetter() 1475 OldMsg->getMethodDecl(), in RewritePropertyOrImplicitSetter() 1491 OldMsg->getMethodDecl(), in RewritePropertyOrImplicitSetter() 1545 OldMsg->getMethodDecl(), in RewritePropertyOrImplicitGetter() 1558 OldMsg->getMethodDecl(), in RewritePropertyOrImplicitGetter() 1574 OldMsg->getMethodDecl(), in RewritePropertyOrImplicitGetter() 3224 if (ObjCMethodDecl *mDecl = Exp->getMethodDecl()) { in SynthMessageExpr() 3492 if (ObjCMethodDecl *OMD = Exp->getMethodDecl()) { in SynthMessageExpr() 3525 const ObjCMethodDecl *MD = Exp->getMethodDecl(); in SynthMessageExpr() 3548 Exp->getMethodDecl()); in SynthMessageExpr()
|
| /llvm-project-15.0.7/clang/lib/Analysis/ |
| H A D | RetainSummaryManager.cpp | 1126 return getMethodSummary(ME->getSelector(), Class, ME->getMethodDecl(), in getClassMethodSummary() 1150 const ObjCMethodDecl *Method = ME->getMethodDecl(); in getInstanceMethodSummary()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/ |
| H A D | FindTarget.cpp | 320 Outer.add(OME->getMethodDecl(), Flags); in add() 787 {E->getMethodDecl()}}); in refInStmt()
|
| /llvm-project-15.0.7/clang/lib/Edit/ |
| H A D | RewriteObjCFoundationAPI.cpp | 28 if (!Msg || Msg->isImplicit() || !Msg->getMethodDecl()) in checkForLiteralCreation() 294 const ObjCMethodDecl *Method = Msg->getMethodDecl(); in rewriteToObjCSubscriptSyntax()
|
| /llvm-project-15.0.7/clang/lib/Index/ |
| H A D | IndexBody.cpp | 232 if (ObjCMethodDecl *MD = E->getMethodDecl()) { in VisitObjCMessageExpr()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGCoroutine.cpp | 135 CE->getMethodDecl()->getType()->getAs<FunctionProtoType>()) in memberCallExpressionCanThrow()
|
| /llvm-project-15.0.7/clang/include/clang/Sema/ |
| H A D | Initialization.h | 454 ObjCMethodDecl *getMethodDecl() const { return MethodDecl; } in getMethodDecl() function
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/ |
| H A D | SimplifyBooleanExprCheck.cpp | 128 dyn_cast<CXXConversionDecl>(MemCall->getMethodDecl())) { in needsStaticCast()
|