Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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.h32 class FormattedString; variable
277 raw_ostream &operator<<(const FormattedString &);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A Draw_ostream.cpp354 raw_ostream &raw_ostream::operator<<(const FormattedString &FS) { in operator <<()
360 case FormattedString::JustifyNone: in operator <<()
362 case FormattedString::JustifyLeft: in operator <<()
365 case FormattedString::JustifyRight: in operator <<()
368 case FormattedString::JustifyCenter: in operator <<()