HomeSort by: relevance | last modified time | path
    Searched refs:FormattedNumber (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Format.h 164 class FormattedNumber {
174 FormattedNumber(uint64_t HV, int64_t DV, unsigned W, bool H, bool U,
186 inline FormattedNumber format_hex(uint64_t N, unsigned Width,
189 return FormattedNumber(N, 0, Width, true, Upper, true);
199 inline FormattedNumber format_hex_no_prefix(uint64_t N, unsigned Width,
202 return FormattedNumber(N, 0, Width, true, Upper, false);
211 inline FormattedNumber format_decimal(int64_t N, unsigned Width) {
212 return FormattedNumber(0, N, Width, false, false, false);
raw_ostream.h 33 class FormattedNumber;
280 raw_ostream &operator<<(const FormattedNumber &);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Signals.cpp 106 static FormattedNumber format_ptr(void *PC) {
raw_ostream.cpp 380 raw_ostream &raw_ostream::operator<<(const FormattedNumber &FN) {

Completed in 20 milliseconds