Searched refs:PadAmount (Results 1 – 5 of 5) sorted by relevance
47 size_t PadAmount = Amount - Item.size(); in format() local51 S.indent(PadAmount); in format()54 size_t X = PadAmount / 2; in format()57 S.indent(PadAmount - X); in format()61 S.indent(PadAmount); in format()
49 size_t PadAmount = Amount - Item.size(); in format() local53 fill(S, PadAmount); in format()56 size_t X = PadAmount / 2; in format()59 fill(S, PadAmount - X); in format()63 fill(S, PadAmount); in format()
403 int PadAmount = FS.Width - Len; in operator <<() local404 if (FS.RightJustify && (PadAmount > 0)) in operator <<()405 this->indent(PadAmount); in operator <<()407 if (!FS.RightJustify && (PadAmount > 0)) in operator <<()408 this->indent(PadAmount); in operator <<()
330 int PadAmount = FS.Width - Len; in operator <<() local331 if (FS.RightJustify && (PadAmount > 0)) in operator <<()332 this->indent(PadAmount); in operator <<()334 if (!FS.RightJustify && (PadAmount > 0)) in operator <<()335 this->indent(PadAmount); in operator <<()
348 int PadAmount = Difference / 2; in operator <<() local349 this->indent(PadAmount); in operator <<()351 this->indent(Difference - PadAmount); in operator <<()