Lines Matching defs:PadWithZero
19 // on the value of |PadWithZero|.
21 bool PadWithZero, bool Negative, bool Upper) {
29 if (Negative && PadWithZero) {
48 char c = (PadWithZero || Pos == 0) ? '0' : ' ';
51 if (Negative && !PadWithZero)
62 bool PadWithZero, bool Upper) {
63 appendNumber(Num, Base, MinNumberLength, PadWithZero, /*Negative=*/false,
68 bool PadWithZero) {
73 appendNumber(UnsignedNum, 10, MinNumberLength, PadWithZero, Negative,
103 /*PadWithZero=*/true,
128 const bool PadWithZero = (*Cur == '0');
155 appendSignedDecimal(DVal, Width, PadWithZero);
165 appendUnsigned(UVal, (*Cur == 'u') ? 10 : 16, Width, PadWithZero, Upper);
198 appendSignedDecimal(DVal, Width, PadWithZero);
201 appendUnsigned(UVal, 10, Width, PadWithZero, false);