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

References

lib/MC/MCSectionWasm.cpp
   32   for (const char *B = Name.begin(), *E = Name.end(); B < E; ++B) {
   32   for (const char *B = Name.begin(), *E = Name.end(); B < E; ++B) {
   33     if (*B == '"') // Unquoted "
   35     else if (*B != '\\') // Neither " or backslash
   36       OS << *B;
   37     else if (B + 1 == E) // Trailing backslash
   40       OS << B[0] << B[1]; // Quoted character
   40       OS << B[0] << B[1]; // Quoted character
   41       ++B;