Home
last modified time | relevance | path

Searched refs:FormattedNumber (Results 1 – 3 of 3) sorted by relevance

/external/llvm/include/llvm/Support/
DFormat.h141 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()
Draw_ostream.h25 class FormattedNumber; variable
221 raw_ostream &operator<<(const FormattedNumber &);
/external/llvm/lib/Support/
Draw_ostream.cpp410 raw_ostream &raw_ostream::operator<<(const FormattedNumber &FN) { in operator <<()