Lines Matching full:negative
21 bool PadWithZero, bool Negative, bool Upper) {
24 RAW_CHECK(Base == 10 || !Negative);
25 RAW_CHECK(AbsoluteValue || !Negative);
27 if (Negative && MinNumberLength)
29 if (Negative && PadWithZero) {
51 if (Negative && !PadWithZero)
63 appendNumber(Num, Base, MinNumberLength, PadWithZero, /*Negative=*/false,
69 const bool Negative = (Num < 0);
72 : static_cast<u64>(Negative ? -Num : Num);
73 appendNumber(UnsignedNum, 10, MinNumberLength, PadWithZero, Negative,