Home
last modified time | relevance | path

Searched refs:OutIt (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/libcxx/test/libcxx/utilities/format/format.formatter/format.context/
H A Dtypes.compile.pass.cpp32 template <class OutIt, class CharT>
36 OutIt>); in test()
39 typename std::basic_format_context<OutIt, CharT>::char_type, CharT>); in test()
45 OutIt, CharT>::template formatter_type<CharT>, in test()
52 OutIt, CharT>::template formatter_type<unsigned>, in test()
56 OutIt, CharT>::template formatter_type<long long>, in test()
59 std::is_same_v<typename std::basic_format_context<OutIt, CharT>:: in test()
65 OutIt, CharT>::template formatter_type<__int128_t>, in test()
74 OutIt, CharT>::template formatter_type<float>, in test()
78 OutIt, CharT>::template formatter_type<double>, in test()
[all …]
/llvm-project-15.0.7/libcxx/test/support/
H A Dtest_format_context.h40 template <class OutIt, class CharT>
41 std::basic_format_context<OutIt, CharT> test_format_context_create( in test_format_context_create()
42 OutIt out_it, in test_format_context_create()
43 std::basic_format_args<std::basic_format_context<OutIt, CharT>> args) { in test_format_context_create() argument
49 template <class OutIt, class CharT>
50 std::basic_format_context<OutIt, CharT> test_format_context_create( in test_format_context_create()
51 OutIt out_it, in test_format_context_create()
52 std::basic_format_args<std::basic_format_context<OutIt, CharT>> args, in test_format_context_create() argument
/llvm-project-15.0.7/libcxx/test/std/utilities/format/format.formatter/format.context/format.context/
H A Dctor.pass.cpp35 template <class OutIt, class CharT>
38 !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()
57 OutIt out_it{output}; in test()
82 OutIt out_it{output}; in test()
103 OutIt out_it{output}; in test()
H A Dadvance_to.pass.cpp22 template <class OutIt, class CharT>
24 std::basic_format_args<std::basic_format_context<OutIt, CharT>> args) { in test() argument
28 test_format_context_create(OutIt{str[0]}, args); in test()
30 context.advance_to(OutIt{str[1]}); in test()
32 context.advance_to(OutIt{str[2]}); in test()
H A Dlocale.pass.cpp28 template <class OutIt, class CharT>
36 …auto format_arg_store = std::make_format_args<std::basic_format_context<OutIt, CharT>>(true, CharT… in test()
41 OutIt out_it{output}; in test()
61 OutIt out_it{output}; in test()
H A Darg.pass.cpp23 template <class OutIt, class CharT>
26 auto store = std::make_format_args<std::basic_format_context<OutIt, CharT>>( in test()
32 test_format_context_create(OutIt{output}, args); in test()
H A Dout.pass.cpp22 template <class OutIt, class CharT>
24 std::basic_format_args<std::basic_format_context<OutIt, CharT>> args) { in test() argument
27 OutIt out_it{str}; in test()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DLiveInterval.cpp651 iterator OutIt = begin(); in join() local
652 OutIt->valno = NewVNInfo[LHSValNoAssignments[OutIt->valno->id]]; in join()
660 if (OutIt->valno == nextValNo && OutIt->end == I->start) { in join()
661 OutIt->end = I->end; in join()
664 ++OutIt; in join()
665 OutIt->valno = nextValNo; in join()
666 if (OutIt != I) { in join()
667 OutIt->start = I->start; in join()
668 OutIt->end = I->end; in join()
673 ++OutIt; in join()
[all …]
/llvm-project-15.0.7/libcxx/src/filesystem/
H A Doperations.cpp876 using OutIt = ostreambuf_iterator<char>;
879 OutIt bout(out);