Lines Matching defs:__args

34 __vprint_nonunicode(ostream& __os, string_view __fmt, format_args __args, bool __write_nl) {
48 string __o = std::vformat(__os.getloc(), __fmt, __args);
78 _LIBCPP_HIDE_FROM_ABI inline void vprint_nonunicode(ostream& __os, string_view __fmt, format_args __args) {
79 std::__vprint_nonunicode(__os, __fmt, __args, false);
99 _LIBCPP_HIDE_FROM_ABI void __vprint_unicode(ostream& __os, string_view __fmt, format_args __args, bool __write_nl) {
101 return std::__vprint_nonunicode(__os, __fmt, __args, __write_nl);
105 return std::__vprint_nonunicode(__os, __fmt, __args, __write_nl);
124 __print::__vprint_unicode_posix(__file, __fmt, __args, __write_nl, true);
126 __print::__vprint_unicode_windows(__file, __fmt, __args, __write_nl, true);
141 _LIBCPP_HIDE_FROM_ABI inline void vprint_unicode(ostream& __os, string_view __fmt, format_args __args) {
142 std::__vprint_unicode(__os, __fmt, __args, false);
147 _LIBCPP_HIDE_FROM_ABI void print(ostream& __os, format_string<_Args...> __fmt, _Args&&... __args) {
150 std::__vprint_unicode(__os, __fmt.get(), std::make_format_args(__args...), false);
152 std::__vprint_nonunicode(__os, __fmt.get(), std::make_format_args(__args...), false);
154 std::__vprint_nonunicode(__os, __fmt.get(), std::make_format_args(__args...), false);
159 _LIBCPP_HIDE_FROM_ABI void println(ostream& __os, format_string<_Args...> __fmt, _Args&&... __args) {
165 std::__vprint_unicode(__os, __fmt.get(), std::make_format_args(__args...), true);
167 std::__vprint_nonunicode(__os, __fmt.get(), std::make_format_args(__args...), true);
169 std::__vprint_nonunicode(__os, __fmt.get(), std::make_format_args(__args...), true);