Searched refs:FormattedString (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | Format.h | 129 class FormattedString { 132 FormattedString(StringRef S, unsigned W, Justification J) 145 inline FormattedString left_justify(StringRef Str, unsigned Width) { 146 return FormattedString(Str, Width, FormattedString::JustifyLeft); 152 inline FormattedString right_justify(StringRef Str, unsigned Width) { 153 return FormattedString(Str, Width, FormattedString::JustifyRight); 159 inline FormattedString center_justify(StringRef Str, unsigned Width) { 160 return FormattedString(Str, Width, FormattedString::JustifyCenter);
|
| H A D | raw_ostream.h | 36 class FormattedString; variable 287 raw_ostream &operator<<(const FormattedString &);
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | raw_ostream.cpp | 353 raw_ostream &raw_ostream::operator<<(const FormattedString &FS) { in operator <<() 359 case FormattedString::JustifyNone: in operator <<() 361 case FormattedString::JustifyLeft: in operator <<() 364 case FormattedString::JustifyRight: in operator <<() 367 case FormattedString::JustifyCenter: in operator <<()
|