reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/tools/extra/clang-tidy/readability/FunctionSizeCheck.cpp
  163   if (FI.Statements == 0)
  170       FI.Lines = SM->getSpellingLineNumber(Body->getEndLoc()) -
  177   if (FI.Lines > LineThreshold || FI.Statements > StatementThreshold ||
  177   if (FI.Lines > LineThreshold || FI.Statements > StatementThreshold ||
  178       FI.Branches > BranchThreshold ||
  180       !FI.NestingThresholders.empty() || FI.Variables > VariableThreshold) {
  180       !FI.NestingThresholders.empty() || FI.Variables > VariableThreshold) {
  186   if (FI.Lines > LineThreshold) {
  190         << FI.Lines << LineThreshold;
  193   if (FI.Statements > StatementThreshold) {
  196         << FI.Statements << StatementThreshold;
  199   if (FI.Branches > BranchThreshold) {
  201         << FI.Branches << BranchThreshold;
  210   for (const auto &CSPos : FI.NestingThresholders) {
  216   if (FI.Variables > VariableThreshold) {
  219         << FI.Variables << VariableThreshold;