Lines Matching refs:Args
27 template<class charT, class... Args>
38 template<class... Args>
40 basic_format_string<char, type_identity_t<Args>...>;
41 template<class... Args>
43 basic_format_string<wchar_t, type_identity_t<Args>...>;
64 template<class... Args>
65 string format(format-string<Args...> fmt, Args&&... args);
66 template<class... Args>
67 wstring format(wformat-string<Args...> fmt, Args&&... args);
68 template<class... Args>
69 string format(const locale& loc, format-string<Args...> fmt, Args&&... args);
70 template<class... Args>
71 wstring format(const locale& loc, wformat-string<Args...> fmt, Args&&... args);
78 template<class Out, class... Args>
79 Out format_to(Out out, format-string<Args...> fmt, Args&&... args);
80 template<class Out, class... Args>
81 Out format_to(Out out, wformat-string<Args...> fmt, Args&&... args);
82 template<class Out, class... Args>
83 Out format_to(Out out, const locale& loc, format-string<Args...> fmt, Args&&... args);
84 template<class Out, class... Args>
85 Out format_to(Out out, const locale& loc, wformat-string<Args...> fmt, Args&&... args);
102 template<class Out, class... Args>
104 format-string<Args...> fmt, Args&&... args);
105 template<class Out, class... Args>
107 wformat-string<Args...> fmt, Args&&... args);
108 template<class Out, class... Args>
110 const locale& loc, format-string<Args...> fmt,
111 Args&&... args);
112 template<class Out, class... Args>
114 const locale& loc, wformat-string<Args...> fmt,
115 Args&&... args);
117 template<class... Args>
118 size_t formatted_size(format-string<Args...> fmt, Args&&... args);
119 template<class... Args>
120 size_t formatted_size(wformat-string<Args...> fmt, Args&&... args);
121 template<class... Args>
122 size_t formatted_size(const locale& loc, format-string<Args...> fmt, Args&&... args);
123 template<class... Args>
124 size_t formatted_size(const locale& loc, wformat-string<Args...> fmt, Args&&... args);
176 template<class Context, class... Args> struct format-arg-store; // exposition only
178 template<class Context = format_context, class... Args>
179 format-arg-store<Context, Args...>
180 make_format_args(Args&... args);
181 template<class... Args>
182 format-arg-store<wformat_context, Args...>
183 make_wformat_args(Args&... args);