Home
last modified time | relevance | path

Searched refs:to_end (Results 1 – 25 of 32) sorted by relevance

12

/third_party/boost/libs/nowide/test/
Dtest_codecvt.cpp49 wchar_t* to_end = to + m; 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()
55 int count = cvt.length(mb2, from, end, to_end - to); in test_codecvt_in_n_m()
101 char* to_end = to + n; in test_codecvt_out_n_m() local
110 if(to_end == to) in test_codecvt_out_n_m()
112 to_end = to + n; in test_codecvt_out_n_m()
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()
123 to_end += n; in test_codecvt_out_n_m()
124 if(to_end > real_to_end) in test_codecvt_out_n_m()
[all …]
/third_party/boost/libs/locale/test/
Dtest_codecvt.cpp54 wchar_t *to_end = to + m; 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()
62 int count = cvt.length(mb2,from,end,to_end - to); in test_codecvt_in_n_m()
108 char *to_end = to + n; in test_codecvt_out_n_m() local
116 if(to_end == to) { in test_codecvt_out_n_m()
117 to_end = to+n; in test_codecvt_out_n_m()
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()
124 to_end += n; in test_codecvt_out_n_m()
125 if(to_end > real_to_end) in test_codecvt_out_n_m()
[all …]
/third_party/boost/libs/filesystem/test/
Dtest_codecvt.hpp44 wchar_t* to, wchar_t* to_end, wchar_t*& to_next) const in do_in() argument
46 for (; from != from_end && to != to_end; ++from, ++to) in do_in()
48 if (to == to_end) in do_in()
58 char* to, char* to_end, char*& to_next) const in do_out() argument
60 for (; from != from_end && to != to_end; ++from, ++to) in do_out()
62 if (to == to_end) in do_out()
/third_party/boost/boost/locale/
Dgeneric_codecvt.hpp245 uchar *to_end, in do_in() argument
258 while(to < to_end && from < from_end) in do_in()
263 … std::cout << "Left in " << std::dec << from_end - from << " out " << to_end -to << std::endl; in do_in()
330 … std::cout << "Left in " << std::dec << from_end - from << " out " << to_end -to << std::endl; in do_in()
341 char *to_end, in do_out() argument
355 while(to < to_end && from < from_end) in do_out()
360 … std::cout << "Left in " << std::dec << from_end - from << " out " << to_end -to << std::endl; in do_out()
405 boost::uint32_t len = implementation().from_unicode(cvt_state,ch,to,to_end); in do_out()
440 … std::cout << "Left in " << std::dec << from_end - from << " out " << to_end -to << std::endl; in do_out()
529 uchar *to_end, in do_in() argument
[all …]
/third_party/boost/libs/iostreams/test/detail/
Dutf8_codecvt_facet.cpp46 wchar_t * to_end, in do_in() argument
57 while (from != from_end && to != to_end) { in do_in()
123 char * to_end, in do_out() argument
132 while (from != from_end && to != to_end) { in do_out()
158 while (i != cont_octet_count && to != to_end) { in do_out()
164 if(to == to_end && i != cont_octet_count) { in do_out()
280 char * to_end,
309 char * to_end,
324 to_next, to_end, to_next
Dutf8_codecvt_facet.hpp78 wchar_t * to_end,
85 char * to, char * to_end, char * & to_next
158 char * to_end,
168 char * to_end,
/third_party/boost/boost/multi_array/
Dindex_range.hpp42 static index to_end() in to_end() function in boost::detail::multi_array::index_range
50 finish_ = to_end(); in index_range()
101 index get_finish(index high_index_range = index_range::to_end()) const in get_finish()
103 if (finish_ == to_end()) in get_finish()
112 return (start_ == from_start() || finish_ == to_end()) in size()
124 { return index_range(from_start(), to_end(), 1); } in all()
/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() argument
31 static_cast<int>(from_end - from), to, static_cast<int>(to_end - to))) == 0) in do_in()
45 char* to, char* to_end, char* & to_next) const in do_out() argument
51 static_cast<int>(from_end - from), to, static_cast<int>(to_end - to), 0, 0)) == 0) in do_out()
Dpath_traits.cpp52 wchar_t* to, wchar_t* to_end, in convert_aux() argument
70 to, to_end, to_next)) != std::codecvt_base::ok) in convert_aux()
86 char* to, char* to_end, in convert_aux() argument
104 to, to_end, to_next)) != std::codecvt_base::ok) 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/nowide/
Dutf8_codecvt.hpp142 uchar* to_end, in do_in() argument
153 while(to < to_end && from < from_end) in do_in()
213 char* to_end, in do_out() argument
225 while(to < to_end && from < from_end) in do_out()
272 if(to_end - to < len) in do_out()
361 uchar* to_end, in do_in() argument
366 while(to < to_end && from < from_end) in do_in()
395 char* to_end, in do_out() argument
399 while(to < to_end && from < from_end) in do_out()
408 if(to_end - to < len) in do_out()
/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() argument
55 static_cast<int>(from_end - from), to, static_cast<int>(to_end - to))) == 0) in do_in()
68 char* to, char* to_end, char*& to_next) const override in do_out() argument
82 static_cast<int>(from_end - from), to, static_cast<int>(to_end - to), 0, 0)) == 0) in do_out()
/third_party/boost/libs/multi_array/test/
Ddimtest.cpp32 finish_ = to_end(); in index_range()
85 if (finish_ == to_end()) in get_finish()
92 if ((start_ == from_start()) || (finish_ == to_end())) in size()
113 { return index_range(from_start(), to_end(), 1); } in all()
146 static Index to_end() in to_end() function in index_range
/third_party/boost/boost/process/
Dlocale.hpp117 wchar_t* to, wchar_t* to_end, in convert() argument
126 to, to_end, to_next); in convert()
139 char* to, char* to_end, in convert() argument
150 to, to_end, to_next)) != std::codecvt_base::ok) in convert()
/third_party/boost/boost/detail/
Dutf8_codecvt_facet.hpp125 wchar_t * to_end,
135 char * to_end,
Dutf8_codecvt_facet.ipp49 wchar_t * to_end,
60 while (from != from_end && to != to_end) {
126 char * to_end,
136 while (from != from_end && to != to_end) {
160 while (i != cont_octet_count && to != to_end) {
166 if(to == to_end && i != cont_octet_count) {
/third_party/boost/libs/program_options/src/
Dconvert.cpp61 ToChar* to_end = buffer + 32; in convert() local
63 fun(state, from, from_end, from, buffer, to_end, to_next); in convert()
/third_party/gn/src/base/containers/
Dcircular_deque.h913 size_t* to_end) { in MoveBuffer() argument
921 *to_end = from_end - from_begin; in MoveBuffer()
930 *to_end = right_size + from_end; in MoveBuffer()
933 *to_end = 0; in MoveBuffer()
/third_party/mindspore/mindspore/numpy/
Dmath_ops.py1974 def ediff1d(ary, to_end=None, to_begin=None): argument
2013 if to_end is not None:
2014 if isinstance(to_end, Tensor):
2015 to_end = to_end.ravel()
2017 to_end = _to_tensor(to_end).ravel()
2018 to_end = to_end.astype(ary.dtype)
2019 combined += (to_end,)
/third_party/skia/third_party/externals/microhttpd/
Dltmain.sh4295 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
4878 lt_extend_str (const char *orig_value, const char *add, int to_end)
4886 if (to_end)
/third_party/skia/third_party/externals/libpng/
Dltmain.sh5668 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
6256 lt_extend_str (const char *orig_value, const char *add, int to_end)
6264 if (to_end)
/third_party/mtdev/config-aux/
Dltmain.sh5883 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
6471 lt_extend_str (const char *orig_value, const char *add, int to_end)
6479 if (to_end)
/third_party/libffi/
Dltmain.sh5668 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
6256 lt_extend_str (const char *orig_value, const char *add, int to_end)
6264 if (to_end)
/third_party/libevdev/build-aux/
Dltmain.sh5668 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
6256 lt_extend_str (const char *orig_value, const char *add, int to_end)
6264 if (to_end)
/third_party/e2fsprogs/config/
Dltmain.sh5760 char *lt_extend_str (const char *orig_value, const char *add, int to_end);
6348 lt_extend_str (const char *orig_value, const char *add, int to_end)
6356 if (to_end)

12