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

References

include/llvm/Analysis/CFGPrinter.h
   92     for (unsigned i = 0; i != OutStr.length(); ++i) {
   92     for (unsigned i = 0; i != OutStr.length(); ++i) {
   93       if (OutStr[i] == '\n') {                            // Left justify
   94         OutStr[i] = '\\';
   95         OutStr.insert(OutStr.begin()+i+1, 'l');
   98       } else if (OutStr[i] == ';') {                      // Delete comments!
   99         unsigned Idx = OutStr.find('\n', i+1);            // Find end of line
  100         OutStr.erase(OutStr.begin()+i, OutStr.begin()+Idx);
  101         --i;
  105           LastSpace = i;
  107         ColNum = i - LastSpace;
  109         i += 3; // The loop will advance 'i' again.
  113       if (OutStr[i] == ' ')
  114         LastSpace = i;