Home
last modified time | relevance | path

Searched refs:char_type (Results 1 – 25 of 120) sorted by relevance

12345

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_ctraits_fns.h34 : public binary_function<typename _Traits::char_type,
35 typename _Traits::char_type,
37 bool operator()(const typename _Traits::char_type& __x, in operator()
38 const typename _Traits::char_type& __y) const in operator()
44 : public unary_function<typename _Traits::char_type, bool> {
45 typename _Traits::char_type __val;
46 _Eq_char_bound(typename _Traits::char_type __c) : __val(__c) {} in _Eq_char_bound()
47 bool operator()(const typename _Traits::char_type& __x) const in operator()
53 : public unary_function<typename _Traits::char_type, bool>
55 typename _Traits::char_type __val;
[all …]
D_streambuf.h53 typedef _CharT char_type; typedef
61 char_type* _M_gbegin; // Beginning of get area
62 char_type* _M_gnext; // Current position within the get area
63 char_type* _M_gend; // End of get area
65 char_type* _M_pbegin; // Beginning of put area
66 char_type* _M_pnext; // Current position within the put area
67 char_type* _M_pend; // End of put area
87 char_type* eback() const { return _M_gbegin; } // Beginning in eback()
88 char_type* gptr() const { return _M_gnext; } // Current position in gptr()
89 char_type* egptr() const { return _M_gend; } // End in egptr()
[all …]
Dchar_traits.h134 typedef _CharT char_type; typedef
140 static void _STLP_CALL assign(char_type& __c1, const char_type& __c2) { __c1 = __c2; } in assign()
141 static bool _STLP_CALL eq(const char_type& __c1, const char_type& __c2) in eq()
143 static bool _STLP_CALL lt(const char_type& __c1, const char_type& __c2) in lt()
146 static int _STLP_CALL compare(const char_type* __s1, const char_type* __s2, size_t __n) { in compare()
153 static size_t _STLP_CALL length(const char_type* __s) { in length()
154 const char_type _NullChar = _STLP_DEFAULT_CONSTRUCTED(char_type); in length()
160 static const char_type* _STLP_CALL find(const char_type* __s, size_t __n, const char_type& __c) { in find()
167 static char_type* _STLP_CALL move(char_type* __s1, const char_type* __s2, size_t _Sz) in move()
168 { return (_Sz == 0 ? __s1 : (char_type*)memmove(__s1, __s2, _Sz * sizeof(char_type))); } in move()
[all …]
D_ios.h51 typedef _CharT char_type; typedef
66 tie(basic_ostream<char_type, traits_type>* __new_tied_ostream) { in tie() argument
67 basic_ostream<char_type, traits_type>* __tmp = _M_tied_ostream; in tie()
76 rdbuf(basic_streambuf<char_type, traits_type>*);
81 char_type fill() const { return _M_fill; } in fill()
82 char_type fill(char_type __fill) { in fill()
83 char_type __tmp(_M_fill); in fill()
117 const ctype<char_type>* _M_cached_ctype;
121 const ctype<char_type>* _M_ctype_facet() const { return _M_cached_ctype; } in _M_ctype_facet()
135 char_type _M_fill; // The fill character, used for padding.
D_num_put.h54 typedef _CharT char_type; typedef
60 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put()
65 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put()
70 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put()
76 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put()
81 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put()
87 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put()
93 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put()
99 iter_type put(iter_type __s, ios_base& __f, char_type __fill, in put()
D_istream.c53 typedef typename _Traits::char_type argument_type;
65 typedef typename _Traits::char_type argument_type;
79 typedef typename _Traits::char_type char_type; typedef
80 typedef char_type* first_argument_type;
81 typedef char_type* second_argument_type;
82 typedef char_type* result_type;
84 const ctype<char_type>* _M_ctype;
86 _Scan_for_wspace(const ctype<char_type>* __ctype) : _M_ctype(__ctype) {} in _Scan_for_wspace()
87 const char_type*
88 operator()(const char_type* __first, const char_type* __last) const { in operator()
[all …]
D_monetary.c130 typedef _CharT char_type; in __money_do_get() typedef
133 typedef moneypunct<char_type, false> _Punct; in __money_do_get()
134 typedef moneypunct<char_type, true> _Punct_intl; in __money_do_get()
135 typedef ctype<char_type> _Ctype; in __money_do_get()
214 char_type __point = __intl ? __punct_intl.decimal_point() in __money_do_get()
224 char_type __sep = __grouping.empty() ? char_type() : in __money_do_get()
319 typedef _CharT char_type; in __money_do_put() typedef
321 typedef ctype<char_type> _Ctype; in __money_do_put()
322 typedef moneypunct<char_type, false> _Punct; in __money_do_put()
323 typedef moneypunct<char_type, true> _Punct_intl; in __money_do_put()
[all …]
D_istream.h74 typedef _CharT char_type; typedef
130 _Self& get(char_type& __c);
133 _Self& get(char_type* __s, streamsize __n, char_type __delim);
134 _Self& get(char_type* __s, streamsize __n) in get()
139 char_type __delim);
144 _Self& getline(char_type* __s, streamsize __n, char_type delim);
145 _Self& getline(char_type* __s, streamsize __n) in getline()
153 _Self& read(char_type* __s, streamsize __n);
154 streamsize readsome(char_type* __s, streamsize __n);
157 _Self& putback(char_type __c);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
D__locale184 typedef _CharT char_type;
185 typedef basic_string<char_type> string_type;
192 int compare(const char_type* __lo1, const char_type* __hi1,
193 const char_type* __lo2, const char_type* __hi2) const
199 string_type transform(const char_type* __lo, const char_type* __hi) const
205 long hash(const char_type* __lo, const char_type* __hi) const
214 virtual int do_compare(const char_type* __lo1, const char_type* __hi1,
215 const char_type* __lo2, const char_type* __hi2) const;
216 virtual string_type do_transform(const char_type* __lo, const char_type* __hi) const
218 virtual long do_hash(const char_type* __lo, const char_type* __hi) const;
[all …]
Dstreambuf25 typedef charT char_type;
38 basic_streambuf* pubsetbuf(char_type* s, streamsize n);
51 streamsize sgetn(char_type* s, streamsize n);
54 int_type sputbackc(char_type c);
58 int_type sputc(char_type c);
59 streamsize sputn(const char_type* s, streamsize n);
68 char_type* eback() const;
69 char_type* gptr() const;
70 char_type* egptr() const;
72 void setg(char_type* gbeg, char_type* gnext, char_type* gend);
[all …]
D__std_stream37 typedef _CharT char_type;
38 typedef char_traits<char_type> traits_type;
55 const codecvt<char_type, char, state_type>* __cv_;
82 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(__loc);
126 char_type __1buf;
128 __1buf = static_cast<char_type>(__extbuf[0]);
132 char_type* __inxt;
158 __1buf = static_cast<char_type>(__extbuf[0]);
194 const char_type __ci = traits_type::to_char_type(__last_consumed_);
195 const char_type* __inxt;
[all …]
Dsstream22 typedef charT char_type;
31 explicit basic_stringbuf(const basic_string<char_type, traits_type, allocator_type>& str,
40 basic_string<char_type, traits_type, allocator_type> str() const;
41 void str(const basic_string<char_type, traits_type, allocator_type>& s);
48 virtual basic_streambuf<char_type, traits_type>* setbuf(char_type*, streamsize);
67 typedef charT char_type;
76 explicit basic_istringstream(const basic_string<char_type, traits_type,allocator_type>& str,
85 basic_stringbuf<char_type, traits_type, allocator_type>* rdbuf() const;
86 basic_string<char_type, traits_type, allocator_type> str() const;
87 void str(const basic_string<char_type, traits_type, allocator_type>& s);
[all …]
Distream23 typedef charT char_type;
30 explicit basic_istream(basic_streambuf<char_type, traits_type>* sb);
43 basic_istream& operator>>(basic_ios<char_type, traits_type>&
44 (*pf)(basic_ios<char_type, traits_type>&));
46 basic_istream& operator>>(basic_streambuf<char_type, traits_type>* sb);
64 basic_istream& get(char_type& c);
65 basic_istream& get(char_type* s, streamsize n);
66 basic_istream& get(char_type* s, streamsize n, char_type delim);
67 basic_istream& get(basic_streambuf<char_type,traits_type>& sb);
68 basic_istream& get(basic_streambuf<char_type,traits_type>& sb, char_type delim);
[all …]
Dfstream22 typedef charT char_type;
50 virtual basic_streambuf<char_type, traits_type>* setbuf(char_type* s, streamsize n);
71 typedef charT char_type;
85 basic_filebuf<char_type, traits_type>* rdbuf() const;
104 typedef charT char_type;
118 basic_filebuf<char_type, traits_type>* rdbuf() const;
137 typedef charT char_type;
151 basic_filebuf<char_type, traits_type>* rdbuf() const;
187 typedef _CharT char_type;
218 virtual basic_streambuf<char_type, traits_type>* setbuf(char_type* __s, streamsize __n);
[all …]
Dlocale704 typedef _CharT char_type;
1003 char_type __atoms[26];
1004 char_type __thousands_sep;
1053 char_type __atoms[26];
1054 char_type __thousands_sep;
1102 char_type __atoms[32];
1103 char_type __decimal_point;
1104 char_type __thousands_sep;
1155 char_type __atoms[26];
1156 char_type __thousands_sep = 0;
[all …]
Dostream23 typedef charT char_type;
30 explicit basic_ostream(basic_streambuf<char_type,traits>* sb);
59 basic_ostream& operator<<(basic_streambuf<char_type,traits>* sb);
62 basic_ostream& put(char_type c);
63 basic_ostream& write(const char_type* s, streamsize n);
149 typedef _CharT char_type;
156 explicit basic_ostream(basic_streambuf<char_type, traits_type>* __sb);
180 basic_ostream& operator<<(basic_ios<char_type, traits_type>&
181 (*__pf)(basic_ios<char_type,traits_type>&));
196 basic_ostream& operator<<(basic_streambuf<char_type, traits_type>* __sb);
[all …]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/basic_cstring/
Dio.hpp39 typedef typename ut_detail::bcs_base_char<CharT>::type char_type; in operator <<() typedef
40 char_type const* const beg = reinterpret_cast<char_type const* const>( str.begin() ); in operator <<()
41 char_type const* const end = reinterpret_cast<char_type const* const>( str.end() ); in operator <<()
42 os << std::basic_string<char_type>( beg, end - beg ); in operator <<()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.traits/
Dlookup_collatename.xlocale.pass.cpp23 template <class char_type>
25 test(const char_type* A, const std::basic_string<char_type>& expected) in test()
27 std::regex_traits<char_type> t; in test()
28 typedef forward_iterator<const char_type*> F; in test()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/
Dargv_traverser.hpp46 unit_test::readwrite_property<char_type> p_separator;
49 void init( int argc, char_type** argv );
50 void remainder( int& argc, char_type** argv );
60 bool match_front( char_type c );
81 shared_array<char_type> m_remainder;
Dchar_parameter.hpp63 explicit char_parameter_t( char_type name ) : base( cstring( &name, 1 ) ) {} in char_parameter_t()
70 char_parameter( char_type name ) in char_parameter()
78 char_parameter( char_type name ) in char_parameter()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/
Dpbackfail.pass.cpp24 typedef typename base::char_type char_type; typedef
28 char_type* eback() const {return base::eback();} in eback()
29 char_type* gptr() const {return base::gptr();} in gptr()
30 char_type* egptr() const {return base::egptr();} in egptr()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/
Dpbackfail.pass.cpp27 typedef base::char_type char_type; typedef
33 char_type* eback() const {return base::eback();} in eback()
34 char_type* gptr() const {return base::gptr();} in gptr()
35 char_type* egptr() const {return base::egptr();} in egptr()
Dunderflow.pass.cpp27 typedef base::char_type char_type; typedef
33 char_type* eback() const {return base::eback();} in eback()
34 char_type* gptr() const {return base::gptr();} in gptr()
35 char_type* egptr() const {return base::egptr();} in egptr()
Doverflow.pass.cpp27 typedef base::char_type char_type; typedef
33 char_type* pbase() const {return base::pbase();} in pbase()
34 char_type* pptr() const {return base::pptr();} in pptr()
35 char_type* epptr() const {return base::epptr();} in epptr()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/
Dconfig.hpp58 typedef char char_type; typedef
67 typedef std::basic_ostream<char_type> out_stream;
114 typedef wchar_t char_type;
115 typedef std::basic_string<char_type> dstring;

12345