Lines Matching refs:PadWithZero
29 u8 Base, u8 MinNumberLength, bool PadWithZero, in appendNumber() argument
39 if (Negative && PadWithZero) in appendNumber()
57 char c = (PadWithZero || Pos == 0) ? '0' : ' '; in appendNumber()
60 if (Negative && !PadWithZero) in appendNumber()
72 u8 Base, u8 MinNumberLength, bool PadWithZero, in appendUnsigned() argument
75 PadWithZero, /*Negative=*/false, Upper); in appendUnsigned()
79 u8 MinNumberLength, bool PadWithZero) { in appendSignedDecimal() argument
85 PadWithZero, Negative, /*Upper=*/false); in appendSignedDecimal()
138 const bool PadWithZero = (*Cur == '0'); in formatString() local
165 Res += appendSignedDecimal(&Buffer, BufferEnd, DVal, Width, PadWithZero); in formatString()
176 Width, PadWithZero, Upper); in formatString()