Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Support/
DFormat.h116 class FormattedString {
123 FormattedString(StringRef S, unsigned W, bool R) in FormattedString() function
130 inline FormattedString left_justify(StringRef Str, unsigned Width) { in left_justify()
131 return FormattedString(Str, Width, false); in left_justify()
137 inline FormattedString right_justify(StringRef Str, unsigned Width) { in right_justify()
138 return FormattedString(Str, Width, true); in right_justify()
Draw_ostream.h24 class FormattedString; variable
220 raw_ostream &operator<<(const FormattedString &);
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DFormat.h129 class FormattedString {
136 FormattedString(StringRef S, unsigned W, bool R)
143 inline FormattedString left_justify(StringRef Str, unsigned Width) {
144 return FormattedString(Str, Width, false);
150 inline FormattedString right_justify(StringRef Str, unsigned Width) {
151 return FormattedString(Str, Width, true);
Draw_ostream.h30 class FormattedString; variable
227 raw_ostream &operator<<(const FormattedString &);
/external/llvm/lib/Support/
Draw_ostream.cpp401 raw_ostream &raw_ostream::operator<<(const FormattedString &FS) { in operator <<()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
Draw_ostream.cpp328 raw_ostream &raw_ostream::operator<<(const FormattedString &FS) { in operator <<()