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

References

lib/Support/raw_ostream.cpp
  168     switch (c) {
  182       if (isPrint(c)) {
  183         *this << c;
  190         *this << hexdigit((c >> 4 & 0xF));
  191         *this << hexdigit((c >> 0) & 0xF);
  195         *this << char('0' + ((c >> 6) & 7));
  196         *this << char('0' + ((c >> 3) & 7));
  197         *this << char('0' + ((c >> 0) & 7));