Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormat.h39 class format_object_base {
42 ~format_object_base() = default; // Disallow polymorphic deletion.
43 format_object_base(const format_object_base &) = default;
50 format_object_base(const char *fmt) : Fmt(fmt) {} in format_object_base() function
91 class format_object final : public format_object_base {
106 : format_object_base(fmt), Vals(vals...) {
H A Draw_ostream.h33 class format_object_base; variable
307 raw_ostream &operator<<(const format_object_base &Fmt);
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp310 raw_ostream &raw_ostream::operator<<(const format_object_base &Fmt) { in operator <<()
560 void format_object_base::home() { in home()