Lines Matching defs:Width
33 unsigned Width;
37 Column(StringRef Str, unsigned Width)
38 : Str(Str), Width(Width), Trim(WidthTrim), Alignment(LeftAlignment) {}
51 if (Str.size() <= Width) {
53 OS.indent(Width - Str.size());
58 OS.indent(Width - Str.size());
67 OS << Str.substr(0, Width);
70 OS << Str.substr(0, Width - 3) << "...";
81 Column column(StringRef Str, unsigned Width) { return Column(Str, Width); }
84 Column column(StringRef Str, unsigned Width, const T &Value) {
85 return Column(Str, Width).set(Value);