reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
97 format_object<int64_t> formatImm(int64_t Value) const { 102 format_object<int64_t> formatDec(int64_t Value) const; 103 format_object<int64_t> formatHex(int64_t Value) const; 104 format_object<uint64_t> formatHex(uint64_t Value) const;include/llvm/Support/Format.h
124 inline format_object<Ts...> format(const char *Fmt, const Ts &... Vals) { 125 return format_object<Ts...>(Fmt, Vals...);lib/MC/MCInstPrinter.cpp
81 format_object<int64_t> MCInstPrinter::formatDec(int64_t Value) const { 85 format_object<int64_t> MCInstPrinter::formatHex(int64_t Value) const { 109 format_object<uint64_t> MCInstPrinter::formatHex(uint64_t Value) const {