Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DFormat.h129 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 Draw_ostream.h34 class FormattedString; variable
297 raw_ostream &operator<<(const FormattedString &);
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A Draw_ostream.cpp360 raw_ostream &raw_ostream::operator<<(const FormattedString &FS) { in operator <<()
366 case FormattedString::JustifyNone: in operator <<()
368 case FormattedString::JustifyLeft: in operator <<()
371 case FormattedString::JustifyRight: in operator <<()
374 case FormattedString::JustifyCenter: in operator <<()