Lines Matching refs:Width
82 void ScopedString::appendString(int Width, int MaxChars, const char *S) { in appendString() argument
92 if (Width < 0) { in appendString()
94 Width = -Width - NumChars; in appendString()
95 while (Width-- > 0) in appendString()
129 u8 Width = 0; in vappend() local
132 Width = static_cast<u8>(Width * 10 + *Cur++ - '0'); in vappend()
155 appendSignedDecimal(DVal, Width, PadWithZero); in vappend()
165 appendUnsigned(UVal, (*Cur == 'u') ? 10 : 16, Width, PadWithZero, Upper); in vappend()
177 appendString(LeftJustified ? -Width : Width, Precision, in vappend()
198 appendSignedDecimal(DVal, Width, PadWithZero); in vappend()
201 appendUnsigned(UVal, 10, Width, PadWithZero, false); in vappend()