Searched refs:__from (Results 1 – 6 of 6) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _codecvt.h | 63 const intern_type* __from, 69 _STLP_VERBOSE_ASSERT(__from <= __from_end, _StlMsg_INVALID_ARGUMENT) 72 __from, __from_end, __from_next, 85 const extern_type* __from, 91 _STLP_VERBOSE_ASSERT(__from <= __from_end, _StlMsg_INVALID_ARGUMENT) 94 __from, __from_end, __from_next, 103 const extern_type* __from, 106 _STLP_VERBOSE_ASSERT(__from <= __from_end, _StlMsg_INVALID_ARGUMENT) 107 return do_length(__state, __from, __from_end, __max); 118 const intern_type* __from, [all …]
|
D | _ostream.c | 49 basic_ostream<_CharT, _Traits>::operator<<(basic_streambuf<_CharT, _Traits>* __from) { 52 if (__from) { 53 bool __any_inserted = __from->gptr() != __from->egptr() 54 ? this->_M_copy_buffered(__from, this->rdbuf()) 55 : this->_M_copy_unbuffered(__from, this->rdbuf()); 73 ::_M_copy_buffered(basic_streambuf<_CharT, _Traits>* __from, in _M_copy_buffered() argument 77 while (__from->egptr() != __from->gptr()) { in _M_copy_buffered() 78 const ptrdiff_t __avail = __from->egptr() - __from->gptr(); in _M_copy_buffered() 82 __nwritten = __to->sputn(__from->gptr(), __avail); in _M_copy_buffered() 83 __from->gbump((int)__nwritten); in _M_copy_buffered() [all …]
|
D | _ostream.h | 83 bool _M_copy_buffered(basic_streambuf<_CharT, _Traits>* __from, 85 bool _M_copy_unbuffered(basic_streambuf<_CharT, _Traits>* __from,
|
/ndk/sources/cxx-stl/stlport/src/ |
D | codecvt.cpp | 56 const char* __from, in do_in() argument 62 { __from_next = __from; __to_next = __to; return noconv; } in do_in() 66 const char* __from, in do_out() argument 72 { __from_next = __from; __to_next = __to; return noconv; } in do_out()
|
/ndk/tests/device/test-stlport/unit/ |
D | fstream_test.cpp | 644 const intern_type* __from, in out() argument 650 { __from_next = __from; __to_next = __to; return noconv; } in out() 653 const extern_type* __from, in in() argument 659 { __from_next = __from; __to_next = __to; return noconv; } in in() 674 const extern_type* __from, in length() argument 677 { return (int)min(static_cast<size_t>(__end - __from), __max); } in length()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | fstream_test.cpp | 644 const intern_type* __from, in out() argument 650 { __from_next = __from; __to_next = __to; return noconv; } in out() 653 const extern_type* __from, in in() argument 659 { __from_next = __from; __to_next = __to; return noconv; } in in() 674 const extern_type* __from, in length() argument 677 { return (int)min(static_cast<size_t>(__end - __from), __max); } in length()
|