Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormat.h38 class format_object_base {
41 ~format_object_base() = default; // Disallow polymorphic deletion.
42 format_object_base(const format_object_base &) = default;
49 format_object_base(const char *fmt) : Fmt(fmt) {} in format_object_base() function
90 class format_object final : public format_object_base {
105 : format_object_base(fmt), Vals(vals...) {
H A Draw_ostream.h34 class format_object_base; variable
283 raw_ostream &operator<<(const format_object_base &Fmt);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp309 raw_ostream &raw_ostream::operator<<(const format_object_base &Fmt) { in operator <<()
560 void format_object_base::home() { in home()