Home | History | Annotate | Download | only in Support

Lines Matching defs:Fmt

81   StringRef Fmt;
89 splitLiteralAndReplacement(StringRef Fmt);
92 formatv_object_base(StringRef Fmt, std::size_t ParamCount)
93 : Fmt(Fmt), Replacements(parseFormatString(Fmt)) {
100 : Fmt(std::move(rhs.Fmt)),
125 static std::vector<ReplacementItem> parseFormatString(StringRef Fmt);
156 formatv_object(StringRef Fmt, Tuple &&Params)
157 : formatv_object_base(Fmt, std::tuple_size<Tuple>::value),
175 // Formats textual output. `Fmt` is a string consisting of one or more
253 inline auto formatv(const char *Fmt, Ts &&... Vals) -> formatv_object<decltype(
258 Fmt,