Lines Matching defs:Radix
79 static RadixTy Radix;
150 /// Get the length of the string that represents @p num in Radix including the
155 conv.toString(result, Radix, false, true);
159 /// Return the printing format for the Radix.
161 switch (Radix) {
210 if (Radix == hexadecimal)
354 /// The format used is determined by @c OutputFormat and @c Radix.
493 << (Radix == octal ? "oct" : "dec")
506 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << "\t"
861 fmt << "%7" << (Radix == octal ? PRIo64 : PRIu64) << "\t"
906 Radix = RadixTy::octal;
908 Radix = RadixTy::decimal;
910 Radix = RadixTy::hexadecimal;