Searched refs:FormattedString (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Format.h | 130 class FormattedString { 133 FormattedString(StringRef S, unsigned W, Justification J) 146 inline FormattedString left_justify(StringRef Str, unsigned Width) { 147 return FormattedString(Str, Width, FormattedString::JustifyLeft); 153 inline FormattedString right_justify(StringRef Str, unsigned Width) { 154 return FormattedString(Str, Width, FormattedString::JustifyRight); 160 inline FormattedString center_justify(StringRef Str, unsigned Width) { 161 return FormattedString(Str, Width, FormattedString::JustifyCenter);
|
H A D | raw_ostream.h | 34 class FormattedString; variable 310 raw_ostream &operator<<(const FormattedString &);
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | raw_ostream.cpp | 355 raw_ostream &raw_ostream::operator<<(const FormattedString &FS) { in operator <<() 361 case FormattedString::JustifyNone: in operator <<() 363 case FormattedString::JustifyLeft: in operator <<() 366 case FormattedString::JustifyRight: in operator <<() 369 case FormattedString::JustifyCenter: in operator <<()
|