Lines Matching refs:Method
344 ReenterTemplateScopeRAII InFunctionTemplateScope(*this, LM.Method); in ParseLexedMethodDeclaration()
347 Actions.ActOnStartDelayedCXXMethodDeclaration(getCurScope(), LM.Method); in ParseLexedMethodDeclaration()
423 if (const auto *FunTmpl = dyn_cast<FunctionTemplateDecl>(LM.Method)) in ParseLexedMethodDeclaration()
427 Old = cast<FunctionDecl>(LM.Method)->getPreviousDecl(); in ParseLexedMethodDeclaration()
450 ExceptionSpecEnd.setEofData(LM.Method); in ParseLexedMethodDeclaration()
466 CXXMethodDecl *Method; in ParseLexedMethodDeclaration() local
468 = dyn_cast<FunctionTemplateDecl>(LM.Method)) in ParseLexedMethodDeclaration()
469 Method = dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl()); in ParseLexedMethodDeclaration()
471 Method = dyn_cast<CXXMethodDecl>(LM.Method); in ParseLexedMethodDeclaration()
474 Actions, Method ? Method->getParent() : nullptr, in ParseLexedMethodDeclaration()
475 Method ? Method->getMethodQualifiers() : Qualifiers{}, in ParseLexedMethodDeclaration()
476 Method && getLangOpts().CPlusPlus11); in ParseLexedMethodDeclaration()
491 if (Tok.isNot(tok::eof) || Tok.getEofData() != LM.Method) in ParseLexedMethodDeclaration()
495 Actions.actOnDelayedExceptionSpecification(LM.Method, EST, in ParseLexedMethodDeclaration()
508 if (Tok.is(tok::eof) && Tok.getEofData() == LM.Method) in ParseLexedMethodDeclaration()
518 Actions.ActOnFinishDelayedCXXMethodDeclaration(getCurScope(), LM.Method); in ParseLexedMethodDeclaration()