Searched refs:FormattedString (Results 1 – 3 of 3) sorted by relevance
116 class FormattedString {123 FormattedString(StringRef S, unsigned W, bool R) in FormattedString() function130 inline FormattedString left_justify(StringRef Str, unsigned Width) { in left_justify()131 return FormattedString(Str, Width, false); in left_justify()137 inline FormattedString right_justify(StringRef Str, unsigned Width) { in right_justify()138 return FormattedString(Str, Width, true); in right_justify()
24 class FormattedString; variable220 raw_ostream &operator<<(const FormattedString &);
399 raw_ostream &raw_ostream::operator<<(const FormattedString &FS) { in operator <<()