Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DFormat.h164 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);
H A Draw_ostream.h37 class FormattedNumber; variable
290 raw_ostream &operator<<(const FormattedNumber &);
/llvm-project-15.0.7/llvm/lib/Support/
H A DSignals.cpp132 static FormattedNumber format_ptr(void *PC) { in format_ptr()
H A Draw_ostream.cpp379 raw_ostream &raw_ostream::operator<<(const FormattedNumber &FN) { in operator <<()
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp49 template <typename T> FormattedNumber formatAddr(T V) const { in formatAddr()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DHover.cpp397 static llvm::FormattedNumber printHex(const llvm::APSInt &V) { in printHex()