Searched refs:__c (Results 26 - 50 of 67) sorted by relevance

123

/external/stlport/stlport/stl/
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_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_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...]
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_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_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_string_sum.h130 _CharOnLeft operator += (_CharT __c) { return _CharOnLeft(*this, __c); } argument
143 _BString& append(size_type __n, _CharT __c) argument
144 {return _M_get_storage().append(__n, __c);}
154 _BString& assign(size_type __n, _CharT __c) {return _M_get_storage().assign(__n, __c);} argument
162 _BString& insert(size_type __pos, size_type __n, _CharT __c) {return _M_get_storage().insert(__pos, __n, __c);} argument
176 _BString& replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) argument
177 {return _M_get_storage().replace(__pos, __n1, __n2, __c);}
192 find(_CharT __c, size_type __pos = 0) const argument
197 rfind(_CharT __c, size_type __pos = _BString::npos) const argument
205 find_first_of(_CharT __c, size_type __pos = 0) const argument
214 find_last_of(_CharT __c, size_type __pos = _BString::npos) const argument
223 find_first_not_of(_CharT __c, size_type __pos = 0) const argument
232 find_last_not_of(_CharT __c, size_type __pos = _BString::npos) const argument
[all...]
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_fstream.c157 basic_filebuf<_CharT, _Traits>::pbackfail(int_type __c) { argument
167 (traits_type::eq_int_type(__c, __eof) ||
168 traits_type::eq(traits_type::to_char_type(__c), this->gptr()[-1]) ||
171 if (traits_type::eq_int_type(__c, __eof) ||
172 traits_type::eq(traits_type::to_char_type(__c), *this->gptr()))
175 else if (!traits_type::eq_int_type(__c, __eof)) {
197 *this->gptr() = traits_type::to_char_type(__c);
198 return __c;
202 // character __c (unless __c i
208 overflow(int_type __c) argument
[all...]
H A D_string_workaround.h70 basic_string(size_type __n, _CharT __c, argument
72 : _STLP_NO_MEM_T_STRING_BASE(__n, __c, __a) {}
107 _Self& operator=(_CharT __c) { argument
108 _Base::operator=(__c);
157 _Self& operator+=(_CharT __c) { argument
158 _Base::operator+=(__c);
183 _Self& append(size_type __n, _CharT __c) { argument
184 _Base::append(__n, __c);
271 _Self& assign(size_type __n, _CharT __c) { argument
272 _Base::assign(__n, __c);
341 insert(size_type __pos, size_type __n, _CharT __c) argument
346 insert(iterator __p, _CharT __c) argument
349 insert(iterator __p, size_t __n, _CharT __c) argument
496 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) argument
524 replace(iterator __first, iterator __last, size_type __n, _CharT __c) argument
[all...]
H A D_string.h237 basic_string(size_type __n, _CharT __c, argument
240 basic_string(size_type __n, _CharT __c)
242 this->_M_finish = _STLP_PRIV __uninitialized_fill_n(this->_M_Start(), __n, __c);
245 basic_string(size_type __n, _CharT __c, const allocator_type& __a)
248 this->_M_finish = _STLP_PRIV __uninitialized_fill_n(this->_M_Start(), __n, __c);
358 _Self& operator=(_CharT __c) argument
359 { return assign(__STATIC_CAST(size_type,1), __c); }
404 void resize(size_type __n, _CharT __c) { argument
408 append(__n - size(), __c);
453 _Self& operator+=(_CharT __c) { push_bac argument
534 push_back(_CharT __c) argument
649 insert(size_type __pos, size_type __n, _CharT __c) argument
658 insert(iterator __p, _CharT __c) argument
856 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) argument
984 find_first_of(_CharT __c, size_type __pos = 0) const argument
996 find_last_of(_CharT __c, size_type __pos = npos) const argument
[all...]
H A D_istreambuf_iterator.h92 int_type __c = _M_buf->sgetc();
93 _STLP_MUTABLE(_Self, _M_c) = traits_type::to_char_type(__c);
94 _STLP_MUTABLE(_Self, _M_eof) = traits_type::eq_int_type(__c, traits_type::eof());
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_rope.h672 _Rope_char_ref_proxy(_My_rope* __r, size_t __p, _CharT __c) argument
673 : _M_pos(__p), _M_current(__c), _M_current_valid(true), _M_root(__r) {}
675 _Self& operator= (_CharT __c);
677 _Self& operator= (const _Self& __c) { argument
678 return operator=((_CharT)__c);
1077 bool _S_apply_to_pieces(_CharConsumer& __c,
1185 _CharConsumer& __c) const
1186 { _S_apply_to_pieces(__c, _M_tree_ptr._M_data, __begin, __end); }
1392 rope(_CharT __c, const allocator_type& __a = allocator_type()) argument
1396 _Copy_Construct(__buf, __c);
1405 rope(size_t __n, _CharT __c, const allocator_type& __a = allocator_type()) argument
1683 append(_CharT __c) argument
1696 append(size_t __n, _CharT __c) argument
1736 insert(size_t __p, size_t __n, _CharT __c) argument
1757 insert(size_t __p, _CharT __c) argument
1762 _CharT __c = _CharT(); local
1795 replace(size_t __p, size_t __n, _CharT __c) argument
1824 replace(size_t __p, _CharT __c) argument
1870 insert(const iterator& __p, size_t __n, _CharT __c) argument
1872 insert(const iterator& __p, _CharT __c) argument
1894 replace(const iterator& __p, const iterator& __q, _CharT __c) argument
1915 replace(const iterator& __p, _CharT __c) argument
2302 __mutable_reference_at(crope& __c, size_t __i) argument
2306 __mutable_reference_at(wrope& __c, size_t __i) argument
[all...]
H A D_strstream.h74 virtual int_type overflow(int_type __c = _Traits::eof());
75 virtual int_type pbackfail(int_type __c = _Traits::eof());
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_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_sstream.h81 virtual int_type pbackfail(int_type __c);
82 virtual int_type overflow(int_type __c);
87 virtual streamsize _M_xsputnc(char_type __c, streamsize __n);
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...]
/external/stlport/src/
H A Dmessage_facets.h125 string do_get(catalog __c, int __set, int __msgid,
128 wstring do_get(catalog __c, int __set, int __msgid,
131 void do_close(catalog __c) const;
H A Dfstream.cpp49 int_type __c = traits_type::to_int_type(*__this->gptr()); local
50 return __c;
H A Dctype.cpp305 bool operator()(char __c) const { return (_M_table[(unsigned char) __c] & _Mask) != 0; }
313 bool operator()(char __c) const { return (_M_table[(unsigned char) __c] & _Mask) == 0; }
341 char ctype<char>::do_toupper(char __c) const
342 { return (char) _S_upper[(unsigned char) __c]; }
343 char ctype<char>::do_tolower(char __c) const
344 { return (char) _S_lower[(unsigned char) __c]; }
358 ctype<char>::do_widen(char __c) const { return __c; }
[all...]
/external/kernel-headers/original/asm-mips/
H A Dstring.h135 extern void *memset(void *__s, int __c, size_t __count);
/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();
H A D_debug.h287 __owned_link(const __owned_list* __c) : _M_self(this), _M_owner(0), _M_next(0) argument
288 { __stl_debugger::_M_attach(__CONST_CAST(__owned_list*,__c), this); }
293 __owned_link(const __owned_list* __c) : _M_owner(0), _M_next(0)
294 { __stl_debugger::_M_attach(__CONST_CAST(__owned_list*,__c), this); }

Completed in 329 milliseconds

123