Lines Matching refs:Method
631 } else if (const auto *Method = dyn_cast<ObjCMethodDecl>(AnalyzedDecl)) { in initDataStructures() local
632 findParamsToTrack(Method); in initDataStructures()
1050 if (const auto *Method = dyn_cast<ObjCMethodDecl>(ParamContext)) { in shouldBeCalledOnce() local
1051 return shouldBeCalledOnce(Method, ParamIndex); in shouldBeCalledOnce()
1076 bool shouldBeCalledOnce(const ObjCMethodDecl *Method, in shouldBeCalledOnce() argument
1078 Selector MethodSelector = Method->getSelector(); in shouldBeCalledOnce()
1084 if (auto ConventionalAsync = isConventionalSwiftAsync(Method, ParamIndex)) { in shouldBeCalledOnce()
1088 const ParmVarDecl *Parameter = Method->getParamDecl(ParamIndex); in shouldBeCalledOnce()
1102 const ObjCMethodDecl *Method = Message->getMethodDecl(); in shouldBeCalledOnce() local
1103 return Method && ParamIndex < Method->param_size() && in shouldBeCalledOnce()
1104 shouldBeCalledOnce(Method, ParamIndex); in shouldBeCalledOnce()