/external/stlport/stlport/stl/ |
_strstream.h | 48 typedef char_traits<char> _Traits; 74 virtual int_type overflow(int_type __c = _Traits::eof()); 75 virtual int_type pbackfail(int_type __c = _Traits::eof());
|
_complex.c | 90 template <class _Tp, class _CharT, class _Traits> 91 basic_ostream<_CharT, _Traits>& _STLP_CALL 92 operator<<(basic_ostream<_CharT, _Traits>& __os, const complex<_Tp>& __z) { 93 basic_ostringstream<_CharT, _Traits, allocator<_CharT> > __tmp; 105 template <class _Tp, class _CharT, class _Traits> 106 basic_istream<_CharT, _Traits>& _STLP_CALL 107 operator>>(basic_istream<_CharT, _Traits>& __is, complex<_Tp>& __z) { 120 if (_Traits::eq(__c, __wpunct[0])) { // Left paren 122 if (_Traits::eq(__c, __wpunct[1])) // Comma 124 if (!_Traits::eq(__c, __wpunct[2])) // Right pare [all...] |
_bitset.c | 177 template <class _CharT, class _Traits, size_t _Nb> 178 basic_istream<_CharT, _Traits>& _STLP_CALL 179 operator>>(basic_istream<_CharT, _Traits>& __is, bitset<_Nb>& __x) { 180 basic_string<_CharT, _Traits> __tmp; 184 typename basic_istream<_CharT, _Traits>::sentry __sentry(__is); 186 basic_streambuf<_CharT, _Traits>* __buf = __is.rdbuf(); 188 static typename _Traits::int_type __eof = _Traits::eof(); 190 typename _Traits::int_type __c1 = __buf->sbumpc(); 191 if (_Traits::eq_int_type(__c1, __eof)) [all...] |
_string_io.c | 14 template <class _CharT, class _Traits> 16 __stlp_string_fill(basic_ostream<_CharT, _Traits>& __os, 17 basic_streambuf<_CharT, _Traits>* __buf, 21 if (_Traits::eq_int_type(__buf->sputc(__f), _Traits::eof())) 28 template <class _CharT, class _Traits, class _Alloc> 29 basic_ostream<_CharT, _Traits>& _STLP_CALL 30 operator << (basic_ostream<_CharT, _Traits>& __os, 31 const basic_string<_CharT,_Traits,_Alloc>& __s) { 32 typedef basic_ostream<_CharT, _Traits> __ostream [all...] |
_ostream.c | 36 template <class _CharT, class _Traits> 37 basic_ostream<_CharT, _Traits>::basic_ostream(basic_streambuf<_CharT, _Traits>* __buf) 38 : basic_ios<_CharT, _Traits>() { 42 template <class _CharT, class _Traits> 43 basic_ostream<_CharT, _Traits>::~basic_ostream() 47 template <class _CharT, class _Traits> 48 basic_ostream<_CharT, _Traits>& 49 basic_ostream<_CharT, _Traits>::operator<<(basic_streambuf<_CharT, _Traits>* __from) [all...] |
_stream_iterator.h | 65 # define __ISI_TMPL_HEADER_ARGUMENTS class _Tp, class _CharT, class _Traits, class _Dist 66 # define __ISI_TMPL_ARGUMENTS _Tp, _CharT, _Traits, _Dist 68 class _CharT = char, class _Traits = char_traits<_CharT>, 90 typedef char_traits<char> _Traits; 99 typedef _Traits traits_type; 100 typedef basic_istream<_CharT, _Traits> istream_type; 158 class _CharT = char, class _Traits = char_traits<_CharT> > 165 typedef char_traits<char> _Traits; 168 typedef ostream_iterator<_TpP, _CharT, _Traits> _Self; 172 typedef _Traits traits_type [all...] |
_tree.c | 45 # define __iterator__ _Rb_tree_iterator<_Value, _STLP_HEADER_TYPENAME _Traits::_NonConstTraits> 49 # define __iterator__ _STLP_TYPENAME_ON_RETURN_TYPE _Rb_tree<_Key, _Compare, _Value, _KeyOfValue, _Traits, _Alloc>::iterator 50 # define __size_type__ _STLP_TYPENAME_ON_RETURN_TYPE _Rb_tree<_Key, _Compare, _Value, _KeyOfValue, _Traits, _Alloc>::size_type 319 class _Value, class _KeyOfValue, class _Traits, class _Alloc> 320 _Rb_tree<_Key,_Compare,_Value,_KeyOfValue,_Traits,_Alloc>& 321 _Rb_tree<_Key,_Compare,_Value,_KeyOfValue,_Traits,_Alloc> ::operator=( 322 const _Rb_tree<_Key,_Compare,_Value,_KeyOfValue,_Traits,_Alloc>& __x) { 348 class _Value, class _KeyOfValue, class _Traits, class _Alloc> 350 _Rb_tree<_Key,_Compare,_Value,_KeyOfValue,_Traits,_Alloc> ::_M_insert(_Rb_tree_node_base * __parent, 385 class _Value, class _KeyOfValue, class _Traits, class _Alloc [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_strstream.h | 48 typedef char_traits<char> _Traits; 74 virtual int_type overflow(int_type __c = _Traits::eof()); 75 virtual int_type pbackfail(int_type __c = _Traits::eof());
|
_complex.c | 90 template <class _Tp, class _CharT, class _Traits> 91 basic_ostream<_CharT, _Traits>& _STLP_CALL 92 operator<<(basic_ostream<_CharT, _Traits>& __os, const complex<_Tp>& __z) { 93 basic_ostringstream<_CharT, _Traits, allocator<_CharT> > __tmp; 105 template <class _Tp, class _CharT, class _Traits> 106 basic_istream<_CharT, _Traits>& _STLP_CALL 107 operator>>(basic_istream<_CharT, _Traits>& __is, complex<_Tp>& __z) { 120 if (_Traits::eq(__c, __wpunct[0])) { // Left paren 122 if (_Traits::eq(__c, __wpunct[1])) // Comma 124 if (!_Traits::eq(__c, __wpunct[2])) // Right pare [all...] |
_bitset.c | 177 template <class _CharT, class _Traits, size_t _Nb> 178 basic_istream<_CharT, _Traits>& _STLP_CALL 179 operator>>(basic_istream<_CharT, _Traits>& __is, bitset<_Nb>& __x) { 180 basic_string<_CharT, _Traits> __tmp; 184 typename basic_istream<_CharT, _Traits>::sentry __sentry(__is); 186 basic_streambuf<_CharT, _Traits>* __buf = __is.rdbuf(); 188 static typename _Traits::int_type __eof = _Traits::eof(); 190 typename _Traits::int_type __c1 = __buf->sbumpc(); 191 if (_Traits::eq_int_type(__c1, __eof)) [all...] |
_string_io.c | 14 template <class _CharT, class _Traits> 16 __stlp_string_fill(basic_ostream<_CharT, _Traits>& __os, 17 basic_streambuf<_CharT, _Traits>* __buf, 21 if (_Traits::eq_int_type(__buf->sputc(__f), _Traits::eof())) 28 template <class _CharT, class _Traits, class _Alloc> 29 basic_ostream<_CharT, _Traits>& _STLP_CALL 30 operator << (basic_ostream<_CharT, _Traits>& __os, 31 const basic_string<_CharT,_Traits,_Alloc>& __s) { 32 typedef basic_ostream<_CharT, _Traits> __ostream [all...] |
_ostream.c | 36 template <class _CharT, class _Traits> 37 basic_ostream<_CharT, _Traits>::basic_ostream(basic_streambuf<_CharT, _Traits>* __buf) 38 : basic_ios<_CharT, _Traits>() { 42 template <class _CharT, class _Traits> 43 basic_ostream<_CharT, _Traits>::~basic_ostream() 47 template <class _CharT, class _Traits> 48 basic_ostream<_CharT, _Traits>& 49 basic_ostream<_CharT, _Traits>::operator<<(basic_streambuf<_CharT, _Traits>* __from) [all...] |
_stream_iterator.h | 65 # define __ISI_TMPL_HEADER_ARGUMENTS class _Tp, class _CharT, class _Traits, class _Dist 66 # define __ISI_TMPL_ARGUMENTS _Tp, _CharT, _Traits, _Dist 68 class _CharT = char, class _Traits = char_traits<_CharT>, 90 typedef char_traits<char> _Traits; 99 typedef _Traits traits_type; 100 typedef basic_istream<_CharT, _Traits> istream_type; 158 class _CharT = char, class _Traits = char_traits<_CharT> > 165 typedef char_traits<char> _Traits; 168 typedef ostream_iterator<_TpP, _CharT, _Traits> _Self; 172 typedef _Traits traits_type [all...] |
_tree.c | 45 # define __iterator__ _Rb_tree_iterator<_Value, _STLP_HEADER_TYPENAME _Traits::_NonConstTraits> 49 # define __iterator__ _STLP_TYPENAME_ON_RETURN_TYPE _Rb_tree<_Key, _Compare, _Value, _KeyOfValue, _Traits, _Alloc>::iterator 50 # define __size_type__ _STLP_TYPENAME_ON_RETURN_TYPE _Rb_tree<_Key, _Compare, _Value, _KeyOfValue, _Traits, _Alloc>::size_type 319 class _Value, class _KeyOfValue, class _Traits, class _Alloc> 320 _Rb_tree<_Key,_Compare,_Value,_KeyOfValue,_Traits,_Alloc>& 321 _Rb_tree<_Key,_Compare,_Value,_KeyOfValue,_Traits,_Alloc> ::operator=( 322 const _Rb_tree<_Key,_Compare,_Value,_KeyOfValue,_Traits,_Alloc>& __x) { 348 class _Value, class _KeyOfValue, class _Traits, class _Alloc> 350 _Rb_tree<_Key,_Compare,_Value,_KeyOfValue,_Traits,_Alloc> ::_M_insert(_Rb_tree_node_base * __parent, 385 class _Value, class _KeyOfValue, class _Traits, class _Alloc [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/ |
_strstream.h | 48 typedef char_traits<char> _Traits; 74 virtual int_type overflow(int_type __c = _Traits::eof()); 75 virtual int_type pbackfail(int_type __c = _Traits::eof());
|
_complex.c | 90 template <class _Tp, class _CharT, class _Traits> 91 basic_ostream<_CharT, _Traits>& _STLP_CALL 92 operator<<(basic_ostream<_CharT, _Traits>& __os, const complex<_Tp>& __z) { 93 basic_ostringstream<_CharT, _Traits, allocator<_CharT> > __tmp; 105 template <class _Tp, class _CharT, class _Traits> 106 basic_istream<_CharT, _Traits>& _STLP_CALL 107 operator>>(basic_istream<_CharT, _Traits>& __is, complex<_Tp>& __z) { 120 if (_Traits::eq(__c, __wpunct[0])) { // Left paren 122 if (_Traits::eq(__c, __wpunct[1])) // Comma 124 if (!_Traits::eq(__c, __wpunct[2])) // Right pare [all...] |
_bitset.c | 177 template <class _CharT, class _Traits, size_t _Nb> 178 basic_istream<_CharT, _Traits>& _STLP_CALL 179 operator>>(basic_istream<_CharT, _Traits>& __is, bitset<_Nb>& __x) { 180 basic_string<_CharT, _Traits> __tmp; 184 typename basic_istream<_CharT, _Traits>::sentry __sentry(__is); 186 basic_streambuf<_CharT, _Traits>* __buf = __is.rdbuf(); 188 static typename _Traits::int_type __eof = _Traits::eof(); 190 typename _Traits::int_type __c1 = __buf->sbumpc(); 191 if (_Traits::eq_int_type(__c1, __eof)) [all...] |
_string_io.c | 14 template <class _CharT, class _Traits> 16 __stlp_string_fill(basic_ostream<_CharT, _Traits>& __os, 17 basic_streambuf<_CharT, _Traits>* __buf, 21 if (_Traits::eq_int_type(__buf->sputc(__f), _Traits::eof())) 28 template <class _CharT, class _Traits, class _Alloc> 29 basic_ostream<_CharT, _Traits>& _STLP_CALL 30 operator << (basic_ostream<_CharT, _Traits>& __os, 31 const basic_string<_CharT,_Traits,_Alloc>& __s) { 32 typedef basic_ostream<_CharT, _Traits> __ostream [all...] |
_ostream.c | 36 template <class _CharT, class _Traits> 37 basic_ostream<_CharT, _Traits>::basic_ostream(basic_streambuf<_CharT, _Traits>* __buf) 38 : basic_ios<_CharT, _Traits>() { 42 template <class _CharT, class _Traits> 43 basic_ostream<_CharT, _Traits>::~basic_ostream() 47 template <class _CharT, class _Traits> 48 basic_ostream<_CharT, _Traits>& 49 basic_ostream<_CharT, _Traits>::operator<<(basic_streambuf<_CharT, _Traits>* __from) [all...] |
_stream_iterator.h | 65 # define __ISI_TMPL_HEADER_ARGUMENTS class _Tp, class _CharT, class _Traits, class _Dist 66 # define __ISI_TMPL_ARGUMENTS _Tp, _CharT, _Traits, _Dist 68 class _CharT = char, class _Traits = char_traits<_CharT>, 90 typedef char_traits<char> _Traits; 99 typedef _Traits traits_type; 100 typedef basic_istream<_CharT, _Traits> istream_type; 158 class _CharT = char, class _Traits = char_traits<_CharT> > 165 typedef char_traits<char> _Traits; 168 typedef ostream_iterator<_TpP, _CharT, _Traits> _Self; 172 typedef _Traits traits_type [all...] |
_tree.c | 45 # define __iterator__ _Rb_tree_iterator<_Value, _STLP_HEADER_TYPENAME _Traits::_NonConstTraits> 49 # define __iterator__ _STLP_TYPENAME_ON_RETURN_TYPE _Rb_tree<_Key, _Compare, _Value, _KeyOfValue, _Traits, _Alloc>::iterator 50 # define __size_type__ _STLP_TYPENAME_ON_RETURN_TYPE _Rb_tree<_Key, _Compare, _Value, _KeyOfValue, _Traits, _Alloc>::size_type 319 class _Value, class _KeyOfValue, class _Traits, class _Alloc> 320 _Rb_tree<_Key,_Compare,_Value,_KeyOfValue,_Traits,_Alloc>& 321 _Rb_tree<_Key,_Compare,_Value,_KeyOfValue,_Traits,_Alloc> ::operator=( 322 const _Rb_tree<_Key,_Compare,_Value,_KeyOfValue,_Traits,_Alloc>& __x) { 348 class _Value, class _KeyOfValue, class _Traits, class _Alloc> 350 _Rb_tree<_Key,_Compare,_Value,_KeyOfValue,_Traits,_Alloc> ::_M_insert(_Rb_tree_node_base * __parent, 385 class _Value, class _KeyOfValue, class _Traits, class _Alloc [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/ |
_strstream.h | 48 typedef char_traits<char> _Traits; 74 virtual int_type overflow(int_type __c = _Traits::eof()); 75 virtual int_type pbackfail(int_type __c = _Traits::eof());
|
_complex.c | 90 template <class _Tp, class _CharT, class _Traits> 91 basic_ostream<_CharT, _Traits>& _STLP_CALL 92 operator<<(basic_ostream<_CharT, _Traits>& __os, const complex<_Tp>& __z) { 93 basic_ostringstream<_CharT, _Traits, allocator<_CharT> > __tmp; 105 template <class _Tp, class _CharT, class _Traits> 106 basic_istream<_CharT, _Traits>& _STLP_CALL 107 operator>>(basic_istream<_CharT, _Traits>& __is, complex<_Tp>& __z) { 120 if (_Traits::eq(__c, __wpunct[0])) { // Left paren 122 if (_Traits::eq(__c, __wpunct[1])) // Comma 124 if (!_Traits::eq(__c, __wpunct[2])) // Right pare [all...] |
_bitset.c | 177 template <class _CharT, class _Traits, size_t _Nb> 178 basic_istream<_CharT, _Traits>& _STLP_CALL 179 operator>>(basic_istream<_CharT, _Traits>& __is, bitset<_Nb>& __x) { 180 basic_string<_CharT, _Traits> __tmp; 184 typename basic_istream<_CharT, _Traits>::sentry __sentry(__is); 186 basic_streambuf<_CharT, _Traits>* __buf = __is.rdbuf(); 188 static typename _Traits::int_type __eof = _Traits::eof(); 190 typename _Traits::int_type __c1 = __buf->sbumpc(); 191 if (_Traits::eq_int_type(__c1, __eof)) [all...] |
_string_io.c | 14 template <class _CharT, class _Traits> 16 __stlp_string_fill(basic_ostream<_CharT, _Traits>& __os, 17 basic_streambuf<_CharT, _Traits>* __buf, 21 if (_Traits::eq_int_type(__buf->sputc(__f), _Traits::eof())) 28 template <class _CharT, class _Traits, class _Alloc> 29 basic_ostream<_CharT, _Traits>& _STLP_CALL 30 operator << (basic_ostream<_CharT, _Traits>& __os, 31 const basic_string<_CharT,_Traits,_Alloc>& __s) { 32 typedef basic_ostream<_CharT, _Traits> __ostream [all...] |