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

References

tools/clang/lib/Tooling/RefactoringCallbacks.cpp
  161   for (size_t Index = 0; Index < ToTemplate.size();) {
  162     if (ToTemplate[Index] == '$') {
  163       if (ToTemplate.substr(Index, 2) == "$$") {
  164         Index += 2;
  167       } else if (ToTemplate.substr(Index, 2) == "${") {
  168         size_t EndOfIdentifier = ToTemplate.find("}", Index);
  172                   ToTemplate.substr(Index),
  176             ToTemplate.substr(Index + 2, EndOfIdentifier - Index - 2);
  176             ToTemplate.substr(Index + 2, EndOfIdentifier - Index - 2);
  179         Index = EndOfIdentifier + 1;
  183                 ToTemplate.substr(Index),
  187       size_t NextIndex = ToTemplate.find('$', Index + 1);
  190                           ToTemplate.substr(Index, NextIndex - Index)});
  190                           ToTemplate.substr(Index, NextIndex - Index)});
  191       Index = NextIndex;