Lines Matching refs:SecondParam

108     const ParmVarDecl *SecondParam = SecondMethod->getParamDecl(I);  in diagnoseSubMismatchMethodParameters()  local
111 QualType SecondParamType = SecondParam->getType(); in diagnoseSubMismatchMethodParameters()
133 DeclarationName SecondParamName = SecondParam->getDeclName(); in diagnoseSubMismatchMethodParameters()
1158 const ParmVarDecl *SecondParam = SecondMethod->getParamDecl(I); in diagnoseMismatch() local
1161 const Expr *SecondInit = SecondParam->getInit(); in diagnoseMismatch()
1355 NamedDecl *SecondParam = SecondTPL->getParam(i); in diagnoseMismatch() local
1357 if (FirstParam->getKind() != SecondParam->getKind()) { in diagnoseMismatch()
1379 << (i + 1) << GetParamType(SecondParam); in diagnoseMismatch()
1383 if (FirstParam->getName() != SecondParam->getName()) { in diagnoseMismatch()
1387 << (i + 1) << (bool)SecondParam->getIdentifier() << SecondParam; in diagnoseMismatch()
1392 isa<TemplateTypeParmDecl>(SecondParam)) { in diagnoseMismatch()
1396 cast<TemplateTypeParmDecl>(SecondParam); in diagnoseMismatch()
1435 isa<TemplateTemplateParmDecl>(SecondParam)) { in diagnoseMismatch()
1439 cast<TemplateTemplateParmDecl>(SecondParam); in diagnoseMismatch()
1497 isa<NonTypeTemplateParmDecl>(SecondParam)) { in diagnoseMismatch()
1501 cast<NonTypeTemplateParmDecl>(SecondParam); in diagnoseMismatch()
1710 const ParmVarDecl *SecondParam = SecondFunction->getParamDecl(I); in diagnoseMismatch() local
1712 assert(Context.hasSameType(FirstParam->getType(), SecondParam->getType()) && in diagnoseMismatch()
1715 if (FirstParam->getDeclName() != SecondParam->getDeclName()) { in diagnoseMismatch()
1719 DiagNote(SecondParam->getLocation(), SecondParam->getSourceRange(), in diagnoseMismatch()
1721 << I + 1 << SecondParam->getDeclName(); in diagnoseMismatch()
1726 QualType SecondParamType = SecondParam->getType(); in diagnoseMismatch()
1743 DiagNote(SecondParam->getLocation(), SecondParam->getSourceRange(), in diagnoseMismatch()
1748 DiagNote(SecondParam->getLocation(), SecondParam->getSourceRange(), in diagnoseMismatch()
1757 const Expr *SecondInit = SecondParam->getInit(); in diagnoseMismatch()
1763 DiagNote(SecondParam->getLocation(), SecondParam->getSourceRange(), in diagnoseMismatch()
1775 DiagNote(SecondParam->getLocation(), SecondParam->getSourceRange(), in diagnoseMismatch()
1781 assert(computeODRHash(FirstParam) == computeODRHash(SecondParam) && in diagnoseMismatch()