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

References

tools/llvm-cxxfilt/llvm-cxxfilt.cpp
   97   if (Start != Head)
   98     OutFragments.push_back({"", Source.slice(0, Start - Head)});
  101   while (Start != Source.end()) {
  102     Start = std::find_if(Start, Source.end(), IsLegalChar);
  102     Start = std::find_if(Start, Source.end(), IsLegalChar);
  103     auto End = std::find_if_not(Start, Source.end(), IsLegalChar);
  105     OutFragments.push_back({Source.slice(Start - Head, End - Head),
  107     Start = DEnd;