Home
last modified time | relevance | path

Searched refs:to_next (Results 1 – 17 of 17) sorted by relevance

/third_party/boost/libs/nowide/test/
Dtest_codecvt.cpp50 wchar_t* to_next = to; in test_codecvt_in_n_m() local
53 std::codecvt_base::result r = cvt.in(mb, from, end, from_next, to, to_end, to_next); in test_codecvt_in_n_m()
64 TEST(count == to_next - to); in test_codecvt_in_n_m()
74 while(to != to_next) in test_codecvt_in_n_m()
80 to = to_next; in test_codecvt_in_n_m()
100 char* to_next = to; in test_codecvt_out_n_m() local
115 std::codecvt_base::result r = cvt.out(mb, from, from_end, from_next, to, to_end, to_next); in test_codecvt_out_n_m()
122 TEST(to_end - to_next < cvt.max_length()); in test_codecvt_out_n_m()
132 while(to != to_next) in test_codecvt_out_n_m()
142 TEST(cvt.unshift(mb, to, to + n, to_next) == cvt_type::ok); in test_codecvt_out_n_m()
[all …]
/third_party/boost/libs/locale/test/
Dtest_codecvt.cpp55 wchar_t *to_next = to; in test_codecvt_in_n_m() local
59 std::codecvt_base::result r = cvt.in(mb,from,end,from_next,to,to_end,to_next); in test_codecvt_in_n_m()
70 TEST(count == to_next - to); in test_codecvt_in_n_m()
81 while(to!=to_next) { in test_codecvt_in_n_m()
86 to=to_next; in test_codecvt_in_n_m()
107 char *to_next = to; in test_codecvt_out_n_m() local
120 std::codecvt_base::result r = cvt.out(mb,from,from_end,from_next,to,to_end,to_next); in test_codecvt_out_n_m()
123 TEST(to_end - to_next < cvt.max_length()); in test_codecvt_out_n_m()
132 while(to!=to_next) { in test_codecvt_out_n_m()
141 TEST(cvt.unshift(mb,to,to+n,to_next)==cvt_type::ok); in test_codecvt_out_n_m()
[all …]
/third_party/boost/libs/iostreams/test/detail/
Dutf8_codecvt_facet.cpp47 wchar_t * & to_next in do_in()
62 to_next = to; in do_in()
88 to_next = to; in do_in()
104 to_next = to; in do_in()
110 to_next = to; in do_in()
124 char * & to_next in do_out()
138 to_next = to; in do_out()
166 to_next = to - (i+1); in do_out()
172 to_next = to; in do_out()
281 char * & to_next
[all …]
Dutf8_codecvt_facet.hpp79 wchar_t*& to_next
85 char * to, char * to_end, char * & to_next
159 char * & to_next
169 char * & to_next
/third_party/boost/libs/filesystem/src/
Dwindows_file_codecvt.cpp25 wchar_t* to, wchar_t* to_end, wchar_t*& to_next) const in do_in()
37 to_next = to + count; in do_in()
38 *to_next = L'\0'; in do_in()
45 char* to, char* to_end, char* & to_next) const in do_out()
57 to_next = to + count; in do_out()
58 *to_next = '\0'; in do_out()
Dpath_traits.cpp65 wchar_t* to_next; in convert_aux() local
70 to, to_end, to_next)) != std::codecvt_base::ok) in convert_aux()
76 target.append(to, to_next); in convert_aux()
99 char* to_next; in convert_aux() local
104 to, to_end, to_next)) != std::codecvt_base::ok) in convert_aux()
110 target.append(to, to_next); in convert_aux()
Dwindows_file_codecvt.hpp42 wchar_t* to, wchar_t* to_end, wchar_t*& to_next) const;
46 char* to, char* to_end, char*& to_next) const;
/third_party/boost/boost/process/detail/windows/
Dlocale.hpp41 wchar_t* to, wchar_t* to_end, wchar_t*& to_next) const override in do_in()
61 to_next = to + count; in do_in()
62 *to_next = L'\0'; in do_in()
68 char* to, char* to_end, char*& to_next) const override in do_out()
88 to_next = to + count; in do_out()
89 *to_next = '\0'; in do_out()
/third_party/boost/libs/filesystem/example/
Dmbpath.cpp42 external_string_type::value_type * to_next; in to_external() local
45 work.get()+work_size, to_next ) != std::codecvt_base::ok ) in to_external()
50 *to_next = '\0'; in to_external()
61 internal_string_type::value_type * to_next; in to_internal() local
64 work.get()+work_size, to_next ) != std::codecvt_base::ok ) in to_internal()
69 *to_next = L'\0'; in to_internal()
/third_party/boost/libs/filesystem/test/
Dtest_codecvt.hpp44 wchar_t* to, wchar_t* to_end, wchar_t*& to_next) const in do_in()
52 to_next = to; in do_in()
58 char* to, char* to_end, char*& to_next) const in do_out()
66 to_next = to; in do_out()
/third_party/boost/boost/nowide/
Dutf8_codecvt.hpp143 uchar*& to_next) const override in do_in()
201 to_next = to; in do_in()
214 char*& to_next) const override in do_out()
282 to_next = to; in do_out()
362 uchar*& to_next) const override in do_in()
384 to_next = to; in do_in()
396 char*& to_next) const override in do_out()
417 to_next = to; in do_out()
/third_party/boost/libs/program_options/test/
Dtest_convert.cpp55 wchar_t* to_next = buffer; in from_8_bit_2() local
58 cvt.in(state, from, from_end, from, buffer, buffer + 32, to_next); in from_8_bit_2()
67 if (to_next == buffer) in from_8_bit_2()
71 result.append(buffer, to_next); in from_8_bit_2()
/third_party/boost/boost/process/
Dlocale.hpp123 wchar_t* to_next; in convert() local
126 to, to_end, to_next); in convert()
133 return to_next - to; in convert()
145 char* to_next; in convert() local
150 to, to_end, to_next)) != std::codecvt_base::ok) in convert()
154 return to_next - to; in convert()
/third_party/boost/libs/program_options/src/
Dconvert.cpp59 ToChar* to_next = buffer; in convert() local
63 fun(state, from, from_end, from, buffer, to_end, to_next); in convert()
73 if (to_next == buffer) in convert()
78 result.append(buffer, to_next); in convert()
/third_party/boost/boost/detail/
Dutf8_codecvt_facet.ipp50 wchar_t * & to_next
65 to_next = to;
91 to_next = to;
107 to_next = to;
113 to_next = to;
127 char * & to_next
141 to_next = to;
168 to_next = to - (i+1);
174 to_next = to;
Dutf8_codecvt_facet.hpp126 wchar_t*& to_next
136 char * & to_next
/third_party/boost/boost/locale/
Dgeneric_codecvt.hpp246 uchar *&to_next) const in do_in()
310 to_next=to; in do_in()
342 char *&to_next) const in do_out()
420 to_next=to; in do_out()
530 uchar *&to_next) const in do_in()
565 to_next=to; in do_in()
597 char *&to_next) const in do_out()
628 to_next=to; in do_out()