Home
last modified time | relevance | path

Searched refs:FormattedString (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormat.h130 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 Draw_ostream.h34 class FormattedString; variable
310 raw_ostream &operator<<(const FormattedString &);
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp355 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 <<()