Searched defs:__c (Results 1 - 25 of 41) sorted by relevance

12

/external/stlport/src/
H A Dcomplex_io.cpp52 char __c; local
54 __is >> __c; local
55 if (__c == '(') {
56 __is >> __re >> __c; local
57 if (__c == ',')
58 __is >> __im >> __c; local
59 if (__c != ')')
63 __is.putback(__c);
78 char __c; local
80 __is >> __c; local
82 __is >> __re >> __c; local
84 __is >> __im >> __c; local
105 char __c; local
107 __is >> __c; local
109 __is >> __re >> __c; local
111 __is >> __im >> __c; local
[all...]
H A Dfstream.cpp49 int_type __c = traits_type::to_int_type(*__this->gptr()); local
50 return __c;
/external/stlport/stlport/stl/
H A D_ctraits_fns.h46 _Eq_char_bound(typename _Traits::char_type __c) : __val(__c) {} argument
56 _Neq_char_bound(typename _Traits::char_type __c) : __val(__c) {} argument
66 _Eq_int_bound(typename _Traits::int_type __c) : __val(__c) {} argument
H A D_istream.c59 bool operator()(argument_type __c) const
60 { return !_M_ctype->is(ctype_base::space, __c); } member in struct:_Is_not_wspace
71 bool operator()(argument_type __c) const {
72 return _Traits::eq(__c, argument_type()) ||
73 _M_ctype->is(ctype_base::space, __c);
168 __pushback(basic_streambuf<_CharT, _Traits>* __buf, _CharT __c) {
172 ret = !_Traits::eq_int_type(__buf->sputbackc(__c), __eof);
364 basic_istream<_CharT, _Traits>::get(_CharT& __c) {
379 __c = _Traits::to_char_type(__tmp);
400 int_type __c;
[all...]
H A D_string_operators.h64 operator+(_CharT __c, argument
73 __result.push_back(__c);
99 const _CharT __c) {
108 __result.push_back(__c);
235 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x, const _CharT __c) {
239 __root_type __root(__c, _STLP_PRIV __sum_storage_elem<_CharT, _Traits, _Alloc>(__x.get_allocator()));
252 operator+(const _CharT __c, const basic_string<_CharT,_Traits,_Alloc>& __x) {
258 __root_type, _STLP_PRIV __on_right>(__c, __root);
266 operator+(const _STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir>& __x, const _CharT __c) {
268 _STLP_PRIV __char_wrapper<_CharT>, _STLP_PRIV __on_left>(__x, __c);
98 operator +(const basic_string<_CharT,_Traits,_Alloc>& __x, const _CharT __c) argument
[all...]
H A D_complex.c117 _CharT __c; local
119 __is >> __c; local
120 if (_Traits::eq(__c, __wpunct[0])) { // Left paren
121 __is >> __re >> __c; local
122 if (_Traits::eq(__c, __wpunct[1])) // Comma
123 __is >> __im >> __c; local
124 if (!_Traits::eq(__c, __wpunct[2])) // Right paren
128 __is.putback(__c);
H A D_messages_facets.h65 string_type get(catalog __c, int __set, int __msgid, argument
67 { return do_get(__c, __set, __msgid, __dfault); }
68 inline void close(catalog __c) const
69 { do_close(__c); }
78 virtual string_type do_get(catalog __c, int __set, int __msgid, argument
81 virtual void do_close(catalog __c) const
98 inline string_type get(catalog __c, int __set, int __msgid, argument
100 { return do_get(__c, __set, __msgid, __dfault); }
101 inline void close(catalog __c) const
102 { do_close(__c); }
111 do_get(catalog __c, int __set, int __msgid, const string_type& __dfault) const argument
[all...]
H A D_ostreambuf_iterator.h61 ostreambuf_iterator<_CharT, _Traits>& operator=(char_type __c) { argument
62 _M_ok = _M_ok && !traits_type::eq_int_type(_M_buf->sputc(__c),
H A D_string_sum_methods.h41 _CharT* _M_append_fast(_STLP_PRIV __char_wrapper<_CharT> __c, _CharT *__buf) { argument
42 _STLP_STD::_Copy_Construct(__buf, __c.getValue());
59 _CharT* _M_append_fast_pos(_STLP_PRIV __char_wrapper<_CharT> __c, _CharT *__buf, size_type /*__pos*/, size_type __n) { argument
62 _STLP_STD::_Copy_Construct(__buf, __c.getValue());
H A D_bitset.c197 char __c = __is.narrow(__c2, '*'); local
199 if (__c == '0' || __c == '1')
200 __tmp.push_back(__c);
H A D_iomanip.h137 _Setfill_Manip(_CharT __c) : _M_c(__c) {} argument
160 inline _STLP_PRIV _Setfill_Manip<_CharT> _STLP_CALL setfill(_CharT __c) argument
161 { return _STLP_PRIV _Setfill_Manip<_CharT>(__c); }
H A D_ios.h110 static bool _STLP_CALL _S_eof(int_type __c) { argument
112 return _Traits::eq_int_type(__c, __eof);
145 basic_ios<_CharT, _Traits>::narrow(_CharT __c, char __default) const argument
146 { return _M_ctype_facet()->narrow(__c, __default); }
150 basic_ios<_CharT, _Traits>::widen(char __c) const
151 { return _M_ctype_facet()->widen(__c); }
156 basic_ios<char, char_traits<char> >::narrow(char __c, char) const argument
158 return __c;
163 basic_ios<char, char_traits<char> >::widen(char __c) const
165 return __c;
[all...]
H A D_queue.h87 explicit queue(const _Sequence& __c) : c(__c) {} argument
212 const _Compare& __x, const _Sequence& __c)
213 : c(__c), comp(__x)
211 priority_queue(const value_type* __first, const value_type* __last, const _Compare& __x, const _Sequence& __c) argument
H A D_stream_iterator.h178 ostream_iterator(ostream_type& __s, const _CharT* __c) argument
179 : _M_stream(&__s), _M_string(__c) {}
H A D_streambuf.c68 int_type __c = this->sbumpc(); local
69 if (!_Traits::eq_int_type(__c, __eof)) {
70 *__s = _Traits::to_char_type(__c);
112 basic_streambuf<_CharT, _Traits>::_M_xsputnc(_CharT __c, streamsize __n) argument
121 _Traits::assign(_M_pnext, __chunk, __c);
126 else if (!_Traits::eq_int_type(this->overflow(_Traits::to_int_type(__c)),
H A D_string_io.c109 _CharT __c = _Traits::to_char_type(__c1); local
111 if (_Ctype.is(_C_type::space, __c)) {
112 if (_Traits::eq_int_type(__buf->sputbackc(__c), _Traits::eof()))
117 __s.push_back(__c);
152 _CharT __c = _Traits::to_char_type(__c1); local
153 if (!_Traits::eq(__c, __delim))
154 __s.push_back(__c);
H A D_ctype.h78 bool is(mask __m, char __c) const
79 { return ((*(_M_ctype_table+(unsigned char)__c)) & __m) != 0; }
91 char (toupper)(char __c) const { return do_toupper(__c); }
96 char (tolower)(char __c) const { return do_tolower(__c); }
101 char widen(char __c) const { return do_widen(__c); }
106 char narrow(char __c, char __dfault) const { argument
107 return do_narrow(__c, __dfaul
137 operator ()(char __c) argument
211 narrow(wchar_t __c, char __dfault) const argument
[all...]
H A D_istream.h130 _Self& get(char_type& __c);
157 _Self& putback(char_type __c);
168 void _M_formatted_get(_CharT& __c);
238 operator>>(basic_istream<_CharT, _Traits>& __in_str, _CharT& __c) { argument
239 __in_str._M_formatted_get(__c);
245 operator>>(basic_istream<char, _Traits>& __in_str, unsigned char& __c) { argument
246 __in_str._M_formatted_get(__REINTERPRET_CAST(char&,__c));
252 operator>>(basic_istream<char, _Traits>& __in_str, signed char& __c) { argument
253 __in_str._M_formatted_get(__REINTERPRET_CAST(char&,__c));
H A D_map.h66 value_compare(_Compare __c) : comp(__c) {} argument
258 value_compare(_Compare __c) : comp(__c) {} argument
H A D_ostream.c122 : __pfrom(pfrom), __c(0), __do_guard(false) {}
125 __pfrom->sputbackc(_Traits::to_char_type(__c));
130 __c = c;
139 int_type __c; member in struct:_SPutBackC
149 int_type __c; local
155 __c = __from->sbumpc();
162 if (this->_S_eof(__c))
165 __cguard.guard(__c);
169 if (this->_S_eof(__to->sputc(_Traits::to_char_type(__c))))
300 void basic_ostream<_CharT, _Traits>::_M_put_char(_CharT __c) { argument
408 put(char_type __c) argument
[all...]
H A D_ostream.h89 void _M_put_char(_CharT __c);
96 _Self& put(char_type __c);
241 operator<<(basic_ostream<_CharT, _Traits>& __os, _CharT __c){ argument
242 __os._M_put_char(__c);
257 operator<<(basic_ostream<char, char_traits<char> >& __os, char __c) { argument
258 __os._M_put_char(__c);
263 operator<<(basic_ostream<char, char_traits<char> >& __os, signed char __c) { argument
264 __os._M_put_char(__c);
269 operator<<(basic_ostream<char, char_traits<char> >& __os, unsigned char __c) { argument
270 __os._M_put_char(__c);
297 operator <<(basic_ostream<_CharT, _Traits>& __os, char __c) argument
304 operator <<(basic_ostream<char, _Traits>& __os, char __c) argument
311 operator <<(basic_ostream<char, _Traits>& __os, signed char __c) argument
318 operator <<(basic_ostream<char, _Traits>& __os, unsigned char __c) argument
[all...]
H A D_sstream.c107 int_type __c = _Traits::to_int_type(*this->gptr()); local
109 return __c;
117 basic_stringbuf<_CharT, _Traits, _Alloc>::pbackfail(int_type __c) { argument
119 if (!_Traits::eq_int_type(__c, _Traits::eof())) {
120 if (_Traits::eq(_Traits::to_char_type(__c), this->gptr()[-1])) {
122 return __c;
126 *this->gptr() = _Traits::to_char_type(__c);
127 return __c;
134 return _Traits::not_eof(__c);
142 __BSB_int_type__ basic_stringbuf<_CharT, _Traits, _Alloc>::overflow(int_type __c) argument
213 _M_xsputnc(char_type __c, streamsize __n) argument
[all...]
H A D_streambuf.h188 // Extension: writes up to __n copies of __c. Return value is the number
190 virtual streamsize _M_xsputnc(char_type __c, streamsize __n);
198 int_type sputc(char_type __c) { argument
199 return ((_M_pnext < _M_pend) ? _Traits::to_int_type(*_M_pnext++ = __c)
200 : this->overflow(_Traits::to_int_type(__c)));
207 // Extension: write __n copies of __c.
208 streamsize _M_sputnc(char_type __c, streamsize __n) argument
209 { return this->_M_xsputnc(__c, __n); }
241 int_type sputbackc(char_type __c) { argument
242 return ((_M_gbegin < _M_gnext) && _Traits::eq(__c, *(_M_gnex
[all...]
H A D_time_facets.c161 char __c = *__format; local
162 if (__c == '#') { //MS extension
164 __c = *__format;
167 switch (__c) {
407 char __c = _Ct.narrow(*__pat, 0); local
408 if (__c == '%') {
411 __c = _Ct.narrow(*__pat++, 0);
412 if (__c == '#') { // MS extension
413 __mod = __c;
414 __c
[all...]
/external/stlport/stlport/stl/debug/
H A D_string_sum_methods.h43 _Base& _M_append_fast(_STLP_PRIV __char_wrapper<_CharT> __c, _Base &__str) argument
44 { return __str += __c.getValue(); }
59 _Base& _M_append_fast_pos(_STLP_PRIV __char_wrapper<_CharT> __c, _Base &__str, size_type /*__pos*/, size_type __n) { argument
62 return __str += __c.getValue();

Completed in 163 milliseconds

12