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

References

lib/Support/GraphWriter.cpp
   37   for (unsigned i = 0; i != Str.length(); ++i)
   37   for (unsigned i = 0; i != Str.length(); ++i)
   38   switch (Str[i]) {
   40       Str.insert(Str.begin()+i, '\\');  // Escape character...
   41       ++i;
   42       Str[i] = 'n';
   45       Str.insert(Str.begin()+i, ' ');  // Convert to two spaces
   46       ++i;
   47       Str[i] = ' ';
   50       if (i+1 != Str.length())
   51         switch (Str[i+1]) {
   54             Str.erase(Str.begin()+i); continue;
   61       Str.insert(Str.begin()+i, '\\');  // Escape character...
   62       ++i;  // don't infinite loop