reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
29 class FormattedString;
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);include/llvm/Support/WithColor.h
66 template <typename T> WithColor &operator<<(T &O) { 70 template <typename T> WithColor &operator<<(const T &O) {include/llvm/Support/raw_ostream.h
247 raw_ostream &operator<<(const FormattedString &);
lib/Support/raw_ostream.cpp351 raw_ostream &raw_ostream::operator<<(const FormattedString &FS) { 352 if (FS.Str.size() >= FS.Width || FS.Justify == FormattedString::JustifyNone) { 358 case FormattedString::JustifyLeft: 362 case FormattedString::JustifyRight: 366 case FormattedString::JustifyCenter: {unittests/Support/raw_ostream_test.cpp
28 template<typename T> std::string printToString(const T &Value,