Searched refs:FormattedNumber (Results 1 – 3 of 3) sorted by relevance
/external/llvm/include/llvm/Support/ |
D | Format.h | 141 class FormattedNumber { 150 FormattedNumber(uint64_t HV, int64_t DV, unsigned W, bool H, bool U, in FormattedNumber() function 162 inline FormattedNumber format_hex(uint64_t N, unsigned Width, 165 return FormattedNumber(N, 0, Width, true, Upper, true); 175 inline FormattedNumber format_hex_no_prefix(uint64_t N, unsigned Width, 178 return FormattedNumber(N, 0, Width, true, Upper, false); 187 inline FormattedNumber format_decimal(int64_t N, unsigned Width) { in format_decimal() 188 return FormattedNumber(0, N, Width, false, false, false); in format_decimal()
|
D | raw_ostream.h | 25 class FormattedNumber; variable 221 raw_ostream &operator<<(const FormattedNumber &);
|
/external/llvm/lib/Support/ |
D | raw_ostream.cpp | 410 raw_ostream &raw_ostream::operator<<(const FormattedNumber &FN) { in operator <<()
|