/third_party/boost/libs/nowide/test/ |
D | test_codecvt.cpp | 49 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/ |
D | test_codecvt.cpp | 54 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/ |
D | test_codecvt.hpp | 44 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/ |
D | generic_codecvt.hpp | 245 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/ |
D | utf8_codecvt_facet.cpp | 46 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
|
D | utf8_codecvt_facet.hpp | 78 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/ |
D | index_range.hpp | 42 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/ |
D | windows_file_codecvt.cpp | 25 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()
|
D | path_traits.cpp | 52 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()
|
D | windows_file_codecvt.hpp | 42 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/ |
D | utf8_codecvt.hpp | 142 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/ |
D | locale.hpp | 41 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/ |
D | dimtest.cpp | 32 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/ |
D | locale.hpp | 117 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/ |
D | utf8_codecvt_facet.hpp | 125 wchar_t * to_end, 135 char * to_end,
|
D | utf8_codecvt_facet.ipp | 49 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/ |
D | convert.cpp | 61 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/ |
D | circular_deque.h | 913 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/ |
D | math_ops.py | 1974 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/ |
D | ltmain.sh | 4295 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/ |
D | ltmain.sh | 5668 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/ |
D | ltmain.sh | 5883 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/ |
D | ltmain.sh | 5668 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/ |
D | ltmain.sh | 5668 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/ |
D | ltmain.sh | 5760 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)
|