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

References

tools/clang/tools/extra/clang-tidy/readability/IdentifierNamingCheck.cpp
  321     Fixup += Name;
  327         Fixup += "_";
  328       Fixup += Word.lower();
  335         Fixup += "_";
  336       Fixup += Word.upper();
  342       Fixup += Word.substr(0, 1).upper();
  343       Fixup += Word.substr(1).lower();
  350         Fixup += Word.lower();
  352         Fixup += Word.substr(0, 1).upper();
  353         Fixup += Word.substr(1).lower();
  361         Fixup += "_";
  362       Fixup += Word.substr(0, 1).upper();
  363       Fixup += Word.substr(1).lower();
  370         Fixup += "_";
  371         Fixup += Word.substr(0, 1).upper();
  373         Fixup += Word.substr(0, 1).lower();
  375       Fixup += Word.substr(1).lower();
  380   return Fixup;