Lines Matching refs:FirstMethod

10349         const CXXMethodDecl *FirstMethod = cast<CXXMethodDecl>(FirstDecl);  in diagnoseOdrViolations()  local
10351 FirstMethodType = GetMethodTypeForDiagnostics(FirstMethod); in diagnoseOdrViolations()
10353 auto FirstName = FirstMethod->getDeclName(); in diagnoseOdrViolations()
10356 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10357 FirstMethod->getSourceRange(), MethodName) in diagnoseOdrViolations()
10367 const bool FirstDeleted = FirstMethod->isDeletedAsWritten(); in diagnoseOdrViolations()
10370 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10371 FirstMethod->getSourceRange(), MethodDeleted) in diagnoseOdrViolations()
10381 const bool FirstDefaulted = FirstMethod->isExplicitlyDefaulted(); in diagnoseOdrViolations()
10384 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10385 FirstMethod->getSourceRange(), MethodDefaulted) in diagnoseOdrViolations()
10395 const bool FirstVirtual = FirstMethod->isVirtualAsWritten(); in diagnoseOdrViolations()
10397 const bool FirstPure = FirstMethod->isPure(); in diagnoseOdrViolations()
10401 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10402 FirstMethod->getSourceRange(), MethodVirtual) in diagnoseOdrViolations()
10414 const auto FirstStorage = FirstMethod->getStorageClass(); in diagnoseOdrViolations()
10419 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10420 FirstMethod->getSourceRange(), MethodStatic) in diagnoseOdrViolations()
10429 const bool FirstVolatile = FirstMethod->isVolatile(); in diagnoseOdrViolations()
10432 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10433 FirstMethod->getSourceRange(), MethodVolatile) in diagnoseOdrViolations()
10442 const bool FirstConst = FirstMethod->isConst(); in diagnoseOdrViolations()
10445 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10446 FirstMethod->getSourceRange(), MethodConst) in diagnoseOdrViolations()
10455 const bool FirstInline = FirstMethod->isInlineSpecified(); in diagnoseOdrViolations()
10458 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10459 FirstMethod->getSourceRange(), MethodInline) in diagnoseOdrViolations()
10468 const unsigned FirstNumParameters = FirstMethod->param_size(); in diagnoseOdrViolations()
10471 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10472 FirstMethod->getSourceRange(), MethodNumberParameters) in diagnoseOdrViolations()
10484 const ParmVarDecl *FirstParam = FirstMethod->getParamDecl(I); in diagnoseOdrViolations()
10494 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10495 FirstMethod->getSourceRange(), MethodParameterType) in diagnoseOdrViolations()
10499 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10500 FirstMethod->getSourceRange(), MethodParameterType) in diagnoseOdrViolations()
10525 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10526 FirstMethod->getSourceRange(), MethodParameterName) in diagnoseOdrViolations()
10538 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10539 FirstMethod->getSourceRange(), in diagnoseOdrViolations()
10556 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10557 FirstMethod->getSourceRange(), in diagnoseOdrViolations()
10578 FirstMethod->getTemplateSpecializationArgs(); in diagnoseOdrViolations()
10584 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10585 FirstMethod->getSourceRange(), MethodNoTemplateArguments) in diagnoseOdrViolations()
10618 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10619 FirstMethod->getSourceRange(), in diagnoseOdrViolations()
10642 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10643 FirstMethod->getSourceRange(), in diagnoseOdrViolations()
10672 ComputeCXXMethodODRHash(FirstMethod) != FirstMethod->getODRHash(); in diagnoseOdrViolations()
10677 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10678 FirstMethod->getSourceRange(), MethodSingleBody) in diagnoseOdrViolations()
10688 ODRDiagError(FirstMethod->getLocation(), in diagnoseOdrViolations()
10689 FirstMethod->getSourceRange(), MethodDifferentBody) in diagnoseOdrViolations()