Searched refs:IntegerStyle (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | NativeFormatting.h | 19 enum class IntegerStyle { enum 30 IntegerStyle Style); 32 IntegerStyle Style); 34 IntegerStyle Style); 36 IntegerStyle Style); 38 size_t MinDigits, IntegerStyle Style); 40 IntegerStyle Style);
|
| H A D | FormatProviders.h | 142 IntegerStyle IS = IntegerStyle::Integer; 144 IS = IntegerStyle::Number; 146 IS = IntegerStyle::Integer;
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | NativeFormatting.cpp | 56 IntegerStyle Style, bool IsNegative) { in write_unsigned_impl() 65 if (Len < MinDigits && Style != IntegerStyle::Number) { in write_unsigned_impl() 70 if (Style == IntegerStyle::Number) { in write_unsigned_impl() 79 IntegerStyle Style, bool IsNegative = false) { in write_unsigned() 90 IntegerStyle Style) { in write_signed() 105 IntegerStyle Style) { in write_integer() 110 IntegerStyle Style) { in write_integer() 115 IntegerStyle Style) { in write_integer() 120 IntegerStyle Style) { in write_integer() 125 IntegerStyle Style) { in write_integer() [all …]
|
| H A D | raw_ostream.cpp | 126 write_integer(*this, static_cast<uint64_t>(N), 0, IntegerStyle::Integer); in operator <<() 131 write_integer(*this, static_cast<int64_t>(N), 0, IntegerStyle::Integer); in operator <<() 136 write_integer(*this, static_cast<uint64_t>(N), 0, IntegerStyle::Integer); in operator <<() 141 write_integer(*this, static_cast<int64_t>(N), 0, IntegerStyle::Integer); in operator <<() 394 llvm::write_integer(Stream, FN.DecValue, 0, IntegerStyle::Integer); in operator <<()
|