Home
last modified time | relevance | path

Searched refs:basic_format_context (Results 1 – 25 of 31) sorted by relevance

12

/llvm-project-15.0.7/libcxx/include/__format/
H A Dformat_context.h48 _LIBCPP_HIDE_FROM_ABI basic_format_context<_OutIt, _CharT>
51 basic_format_args<basic_format_context<_OutIt, _CharT>> __args,
58 _LIBCPP_HIDE_FROM_ABI basic_format_context<_OutIt, _CharT>
70 using wformat_context = basic_format_context<
83 basic_format_context { in _LIBCPP_PREFERRED_NAME()
90 basic_format_context(const basic_format_context&) = delete; in _LIBCPP_PREFERRED_NAME()
91 basic_format_context& operator=(const basic_format_context&) = delete; in _LIBCPP_PREFERRED_NAME()
93 _LIBCPP_HIDE_FROM_ABI basic_format_arg<basic_format_context> in _LIBCPP_PREFERRED_NAME()
109 basic_format_args<basic_format_context> __args_; in _LIBCPP_PREFERRED_NAME()
130 explicit basic_format_context(_OutIt __out_it, in _LIBCPP_PREFERRED_NAME()
[all …]
H A Dformat_fwd.h30 class _LIBCPP_TEMPLATE_VIS _LIBCPP_AVAILABILITY_FORMAT basic_format_context; variable
H A Dconcepts.h43 basic_format_context<__fmt_iter_for<_CharT>, _CharT> __fc, in requires()
/llvm-project-15.0.7/libcxx/test/libcxx/utilities/format/format.formatter/format.context/
H A Dtypes.compile.pass.cpp44 std::is_same_v<typename std::basic_format_context< in test()
51 std::is_same_v<typename std::basic_format_context< in test()
55 std::is_same_v<typename std::basic_format_context< in test()
64 std::is_same_v<typename std::basic_format_context< in test()
68 std::is_same_v<typename std::basic_format_context< in test()
73 std::is_same_v<typename std::basic_format_context< in test()
77 std::is_same_v<typename std::basic_format_context< in test()
81 std::is_same_v<typename std::basic_format_context< in test()
85 std::is_same_v<typename std::basic_format_context< in test()
115 std::basic_format_context<
[all …]
/llvm-project-15.0.7/libcxx/test/std/utilities/format/format.formatter/format.context/format.context/
H A Dout.pass.cpp24 std::basic_format_args<std::basic_format_context<OutIt, CharT>> args) { in test()
28 std::basic_format_context context = in test()
43 std::make_format_args<std::basic_format_context< in test()
47 std::make_format_args<std::basic_format_context< in test()
52 std::make_format_args<std::basic_format_context< in test()
56 std::make_format_args<std::basic_format_context< in test()
60 std::make_format_args<std::basic_format_context< in test()
H A Dadvance_to.pass.cpp24 std::basic_format_args<std::basic_format_context<OutIt, CharT>> args) { in test()
27 std::basic_format_context context = in test()
46 std::make_format_args<std::basic_format_context< in test()
51 std::make_format_args<std::basic_format_context< in test()
56 std::make_format_args<std::basic_format_context< in test()
60 std::make_format_args<std::basic_format_context< in test()
64 std::make_format_args<std::basic_format_context< in test()
H A Dctor.pass.cpp38 !std::is_copy_constructible_v<std::basic_format_context<OutIt, CharT>>); in test()
40 !std::is_copy_assignable_v<std::basic_format_context<OutIt, CharT>>); in test()
44 !std::is_move_constructible_v<std::basic_format_context<OutIt, CharT>>); in test()
46 !std::is_move_assignable_v<std::basic_format_context<OutIt, CharT>>); in test()
52 …auto format_arg_store = std::make_format_args<std::basic_format_context<OutIt, CharT>>(true, CharT… in test()
58 std::basic_format_context context = in test()
83 std::basic_format_context context = in test()
104 std::basic_format_context context = in test()
H A Dlocale.pass.cpp36 …auto format_arg_store = std::make_format_args<std::basic_format_context<OutIt, CharT>>(true, CharT… in test()
42 std::basic_format_context context = in test()
62 std::basic_format_context context = in test()
H A Darg.pass.cpp26 auto store = std::make_format_args<std::basic_format_context<OutIt, CharT>>( in test()
31 const std::basic_format_context context = in test()
/llvm-project-15.0.7/libcxx/test/support/
H A Dtest_format_context.h41 std::basic_format_context<OutIt, CharT> test_format_context_create( in test_format_context_create()
43 std::basic_format_args<std::basic_format_context<OutIt, CharT>> args) { in test_format_context_create()
50 std::basic_format_context<OutIt, CharT> test_format_context_create( in test_format_context_create()
52 std::basic_format_args<std::basic_format_context<OutIt, CharT>> args, in test_format_context_create()
/llvm-project-15.0.7/libcxx/test/std/utilities/format/format.arguments/format.arg.store/
H A Dmake_format_args.sh.cpp25 std::make_format_args<std::basic_format_context< in test()
/llvm-project-15.0.7/libcxx/test/std/utilities/format/format.arguments/format.arg/
H A Doperator_bool.pass.cpp27 using Context = std::basic_format_context<CharT*, CharT>; in test()
H A Dctor.pass.cpp25 using Context = std::basic_format_context<CharT*, CharT>; in test()
/llvm-project-15.0.7/libcxx/test/std/utilities/format/format.arguments/format.args/
H A Dctor.pass.cpp24 using Context = std::basic_format_context<CharT*, CharT>; in test()
/llvm-project-15.0.7/libcxx/test/std/utilities/format/format.formatter/format.formatter.spec/
H A Dformatter.handle.pass.cpp47 using FormatCtxT = std::basic_format_context<decltype(out), char>; in test()
H A Dformatter.bool.pass.cpp44 using FormatCtxT = std::basic_format_context<decltype(out), CharT>; in test()
H A Dformatter.char.pass.cpp43 using FormatCtxT = std::basic_format_context<decltype(out), CharT>; in test()
H A Dformatter.unsigned_integral.pass.cpp51 using FormatCtxT = std::basic_format_context<decltype(out), CharT>; in test()
H A Dformatter.pointer.pass.cpp49 using FormatCtxT = std::basic_format_context<decltype(out), CharT>; in test()
H A Dformatter.c_string.pass.cpp42 using FormatCtxT = std::basic_format_context<decltype(out), CharT>; in test()
H A Dformatter.signed_integral.pass.cpp51 using FormatCtxT = std::basic_format_context<decltype(out), CharT>; in test()
H A Dformatter.const_char_array.pass.cpp56 using FormatCtxT = std::basic_format_context<decltype(out), CharT>; in test()
H A Dformatter.char_array.pass.cpp54 using FormatCtxT = std::basic_format_context<decltype(out), CharT>; in test()
H A Dformatter.string.pass.cpp50 using FormatCtxT = std::basic_format_context<decltype(out), CharT>; in test()
/llvm-project-15.0.7/libcxx/include/
H A Dformat16 // [format.context], class template basic_format_context
17 template<class Out, class charT> class basic_format_context;
18 using format_context = basic_format_context<unspecified, char>;
19 using wformat_context = basic_format_context<unspecified, wchar_t>;
535 basic_format_args<basic_format_context<_FormatOutIt, _CharT>> __args) {
666 basic_format_args<basic_format_context<_FormatOutIt, _CharT>> __args) {

12