HomeSort by relevance Sort by last modified time
    Searched defs:_CharT (Results 1 - 25 of 66) sorted by null

1 2 3

  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_ios.c 38 template <class _CharT, class _Traits>
39 basic_ios<_CharT, _Traits>
40 ::basic_ios(basic_streambuf<_CharT, _Traits>* __streambuf)
42 _M_fill(_STLP_NULL_CHAR_INIT(_CharT)), _M_streambuf(0), _M_tied_ostream(0) {
43 basic_ios<_CharT, _Traits>::init(__streambuf);
46 template <class _CharT, class _Traits>
47 basic_streambuf<_CharT, _Traits>*
48 basic_ios<_CharT, _Traits>::rdbuf(basic_streambuf<_CharT, _Traits>* __buf) {
49 basic_streambuf<_CharT, _Traits>* __tmp = _M_streambuf
    [all...]
_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) {
111 const ctype<_CharT>& __c_type = *__is._M_ctype_facet();
114 _CharT __wpunct[3]
    [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();
217 template <class _CharT, class _Traits, size_t _Nb>
218 basic_ostream<_CharT, _Traits>& _STLP_CALL
219 operator<<(basic_ostream<_CharT, _Traits>& __os,
221 basic_string<_CharT, _Traits> __tmp
    [all...]
_streambuf.c 30 template <class _CharT, class _Traits>
31 basic_streambuf<_CharT, _Traits>::basic_streambuf()
39 template <class _CharT, class _Traits>
40 basic_streambuf<_CharT, _Traits>::~basic_streambuf()
43 template <class _CharT, class _Traits>
45 basic_streambuf<_CharT, _Traits>::pubimbue(const locale& __loc) {
52 template <class _CharT, class _Traits>
54 basic_streambuf<_CharT, _Traits>::xsgetn(_CharT* __s, streamsize __n) {
82 template <class _CharT, class _Traits
    [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,
19 _CharT __f = __os.fill();
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;
33 typedef typename basic_string<_CharT, _Traits, _Alloc>::size_type size_type
    [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>,
89 typedef char _CharT;
98 typedef _CharT char_type;
100 typedef basic_istream<_CharT, _Traits> istream_type;
158 class _CharT = char, class _Traits = char_traits<_CharT> >
164 typedef char _CharT;
    [all...]
_time_facets.c 38 template <class _CharT, class _InputIterator>
39 locale::id time_get<_CharT, _InputIterator>::id;
41 template <class _CharT, class _OutputIterator>
42 locale::id time_put<_CharT, _OutputIterator>::id;
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_ios.c 38 template <class _CharT, class _Traits>
39 basic_ios<_CharT, _Traits>
40 ::basic_ios(basic_streambuf<_CharT, _Traits>* __streambuf)
42 _M_fill(_STLP_NULL_CHAR_INIT(_CharT)), _M_streambuf(0), _M_tied_ostream(0) {
43 basic_ios<_CharT, _Traits>::init(__streambuf);
46 template <class _CharT, class _Traits>
47 basic_streambuf<_CharT, _Traits>*
48 basic_ios<_CharT, _Traits>::rdbuf(basic_streambuf<_CharT, _Traits>* __buf) {
49 basic_streambuf<_CharT, _Traits>* __tmp = _M_streambuf
    [all...]
_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) {
111 const ctype<_CharT>& __c_type = *__is._M_ctype_facet();
114 _CharT __wpunct[3]
    [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();
217 template <class _CharT, class _Traits, size_t _Nb>
218 basic_ostream<_CharT, _Traits>& _STLP_CALL
219 operator<<(basic_ostream<_CharT, _Traits>& __os,
221 basic_string<_CharT, _Traits> __tmp
    [all...]
_streambuf.c 30 template <class _CharT, class _Traits>
31 basic_streambuf<_CharT, _Traits>::basic_streambuf()
39 template <class _CharT, class _Traits>
40 basic_streambuf<_CharT, _Traits>::~basic_streambuf()
43 template <class _CharT, class _Traits>
45 basic_streambuf<_CharT, _Traits>::pubimbue(const locale& __loc) {
52 template <class _CharT, class _Traits>
54 basic_streambuf<_CharT, _Traits>::xsgetn(_CharT* __s, streamsize __n) {
82 template <class _CharT, class _Traits
    [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,
19 _CharT __f = __os.fill();
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;
33 typedef typename basic_string<_CharT, _Traits, _Alloc>::size_type size_type
    [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>,
89 typedef char _CharT;
98 typedef _CharT char_type;
100 typedef basic_istream<_CharT, _Traits> istream_type;
158 class _CharT = char, class _Traits = char_traits<_CharT> >
164 typedef char _CharT;
    [all...]
_time_facets.c 38 template <class _CharT, class _InputIterator>
39 locale::id time_get<_CharT, _InputIterator>::id;
41 template <class _CharT, class _OutputIterator>
42 locale::id time_put<_CharT, _OutputIterator>::id;
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_ios.c 38 template <class _CharT, class _Traits>
39 basic_ios<_CharT, _Traits>
40 ::basic_ios(basic_streambuf<_CharT, _Traits>* __streambuf)
42 _M_fill(_STLP_NULL_CHAR_INIT(_CharT)), _M_streambuf(0), _M_tied_ostream(0) {
43 basic_ios<_CharT, _Traits>::init(__streambuf);
46 template <class _CharT, class _Traits>
47 basic_streambuf<_CharT, _Traits>*
48 basic_ios<_CharT, _Traits>::rdbuf(basic_streambuf<_CharT, _Traits>* __buf) {
49 basic_streambuf<_CharT, _Traits>* __tmp = _M_streambuf
    [all...]
_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) {
111 const ctype<_CharT>& __c_type = *__is._M_ctype_facet();
114 _CharT __wpunct[3]
    [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();
217 template <class _CharT, class _Traits, size_t _Nb>
218 basic_ostream<_CharT, _Traits>& _STLP_CALL
219 operator<<(basic_ostream<_CharT, _Traits>& __os,
221 basic_string<_CharT, _Traits> __tmp
    [all...]
_streambuf.c 30 template <class _CharT, class _Traits>
31 basic_streambuf<_CharT, _Traits>::basic_streambuf()
39 template <class _CharT, class _Traits>
40 basic_streambuf<_CharT, _Traits>::~basic_streambuf()
43 template <class _CharT, class _Traits>
45 basic_streambuf<_CharT, _Traits>::pubimbue(const locale& __loc) {
52 template <class _CharT, class _Traits>
54 basic_streambuf<_CharT, _Traits>::xsgetn(_CharT* __s, streamsize __n) {
82 template <class _CharT, class _Traits
    [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,
19 _CharT __f = __os.fill();
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;
33 typedef typename basic_string<_CharT, _Traits, _Alloc>::size_type size_type
    [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...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
regex_executor.h 56 typedef typename iterator_traits<_BiIter>::value_type _CharT;
57 typedef basic_regex<_CharT, _TraitsT> _RegexT;
114 _M_is_word(_CharT __ch) const
116 static const _CharT __s[2] = { 'w' };
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
regex_executor.h 56 typedef typename iterator_traits<_BiIter>::value_type _CharT;
57 typedef basic_regex<_CharT, _TraitsT> _RegexT;
114 _M_is_word(_CharT __ch) const
116 static const _CharT __s[2] = { 'w' };
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
regex_executor.h 56 typedef typename iterator_traits<_BiIter>::value_type _CharT;
57 typedef basic_regex<_CharT, _TraitsT> _RegexT;
114 _M_is_word(_CharT __ch) const
116 static const _CharT __s[2] = { 'w' };

Completed in 1213 milliseconds

1 2 3