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

References

lib/MC/MCSectionELF.cpp
   38   for (const char *B = Name.begin(), *E = Name.end(); B < E; ++B) {
   38   for (const char *B = Name.begin(), *E = Name.end(); B < E; ++B) {
   39     if (*B == '"') // Unquoted "
   41     else if (*B != '\\') // Neither " or backslash
   42       OS << *B;
   43     else if (B + 1 == E) // Trailing backslash
   46       OS << B[0] << B[1]; // Quoted character
   46       OS << B[0] << B[1]; // Quoted character
   47       ++B;