Searched defs:__s (Results 26 - 43 of 43) sorted by relevance

12

/external/stlport/stlport/stl/
H A D_streambuf.h142 basic_streambuf<_CharT, _Traits>* pubsetbuf(char_type* __s, streamsize __n) argument
143 { return this->setbuf(__s, __n); }
165 virtual streamsize xsgetn(char_type* __s, streamsize __n);
186 virtual streamsize xsputn(const char_type* __s, streamsize __n);
204 streamsize sputn(const char_type* __s, streamsize __n) argument
205 { return this->xsputn(__s, __n); }
238 streamsize sgetn(char_type* __s, streamsize __n) argument
239 { return this->xsgetn(__s, __n); }
H A D_time_facets.c152 const ios_base& __s, ios_base::iostate& __err, tm* __t) {
153 const ctype<_Ch>& __ct = use_facet<ctype<_Ch> >(__s.getloc());
305 time_get<_Ch, _InIt>::do_get_date(_InIt __s, _InIt __end, argument
314 = _STLP_PRIV __get_formatted_time(__s, __end, __format, __format_end,
321 if (__s == __end)
324 return __s;
329 time_get<_Ch, _InIt>::do_get_time(_InIt __s, _InIt __end, argument
337 = _STLP_PRIV __get_formatted_time(__s, __end, __format, __format_end,
342 if (__s == __end)
344 return __s;
149 _STLP_WEAK(_InIt1 __first, _InIt1 __last, string::const_iterator __format, string::const_iterator __format_end, _Ch*, const _TimeInfo& __table, const ios_base& __s, ios_base::iostate& __err, tm* __t) argument
349 do_get_year(_InIt __s, _InIt __end, ios_base&, ios_base::iostate& __err, tm* __t) const argument
368 do_get_weekday(_InIt __s, _InIt __end, ios_base &__str, ios_base::iostate &__err, tm *__t) const argument
385 do_get_monthname(_InIt __s, _InIt __end, ios_base &__str, ios_base::iostate &__err, tm *__t) const argument
402 put(_OutputIter __s, ios_base& __f, _Ch __fill, const tm* __tmb, const _Ch* __pat, const _Ch* __pat_end) const argument
426 do_put(_OutputIter __s, ios_base& __f, _Ch , const tm* __tmb, char __format, char __modifier ) const argument
[all...]
H A D_time_facets.h140 iter_type get_time(iter_type __s, iter_type __end, ios_base& __str, argument
142 { return do_get_time(__s, __end, __str, __err, __t); }
143 iter_type get_date(iter_type __s, iter_type __end, ios_base& __str, argument
145 { return do_get_date(__s, __end, __str, __err, __t); }
146 iter_type get_weekday(iter_type __s, iter_type __end, ios_base& __str, argument
148 { return do_get_weekday(__s, __end, __str, __err, __t); }
149 iter_type get_monthname(iter_type __s, iter_type __end, ios_base& __str, argument
151 { return do_get_monthname(__s, __end, __str, __err, __t); }
152 iter_type get_year(iter_type __s, iter_type __end, ios_base& __str, argument
154 { return do_get_year(__s, __en
260 put(iter_type __s, ios_base& __f, _Ch __fill, const tm* __tmb, char __format, char __modifier = 0) const argument
[all...]
H A Dchar_traits.h153 static size_t _STLP_CALL length(const char_type* __s) { argument
156 for (; !eq(__s[__i], _NullChar); ++__i) {}
160 static const char_type* _STLP_CALL find(const char_type* __s, size_t __n, const char_type& __c) { argument
161 for ( ; __n > 0 ; ++__s, --__n)
162 if (eq(*__s, __c))
163 return __s;
175 static char_type* _STLP_CALL assign(char_type* __s, size_t __n, char_type __c) { argument
177 __s[__i] = __c;
178 return __s;
228 static size_t _STLP_CALL length(const char* __s) argument
234 assign(char* __s, size_t __n, char __c) argument
260 assign(wchar_t* __s, size_t __n, wchar_t __c) argument
263 length(const wchar_t* __s) argument
[all...]
H A D_monetary.c122 _InputIter __money_do_get(_InputIter __s, _InputIter __end, bool __intl, argument
125 if (__s == __end) {
127 return __s;
156 if (!__c_type.is(ctype_base::space, *__s)) {
158 return __s;
160 ++__s;
162 while (__s != __end && __c_type.is(ctype_base::space, *__s))
163 ++__s;
169 __result = __get_string(__s, __en
279 do_get(_InputIter __s, _InputIter __end, bool __intl, ios_base& __str, ios_base::iostate& __err, _STLP_LONGEST_FLOAT_TYPE& __units) const argument
304 do_get(iter_type __s, iter_type __end, bool __intl, ios_base& __str, ios_base::iostate& __err, string_type& __digits) const argument
316 __money_do_put(_OutputIter __s, bool __intl, ios_base& __str, _CharT __fill, const _Str& __digits, bool __check_digits, _Str_Type * ) argument
506 do_put(_OutputIter __s, bool __intl, ios_base& __str, char_type __fill, _STLP_LONGEST_FLOAT_TYPE __units) const argument
516 do_put(_OutputIter __s, bool __intl, ios_base& __str, char_type __fill, const string_type& __digits) const argument
[all...]
H A D_num_get.c500 ios_base& __s, ios_base::iostate& __err, bool& __x) const {
501 if (__s.flags() & ios_base::boolalpha) {
502 return _STLP_PRIV __do_get_alphabool(__in_ite, __end, __s, __err, __x, (_CharT*)0);
506 _InputIter __tmp = _STLP_PRIV __do_get_integer(__in_ite, __end, __s, __err, __lx, (_CharT*)0 );
499 do_get(_InputIter __in_ite, _InputIter __end, ios_base& __s, ios_base::iostate& __err, bool& __x) const argument
H A D_string.c420 __size_type__ basic_string<_CharT,_Traits,_Alloc>::find( const _CharT* __s, size_type __pos, argument
433 __s, __s + __n, _STLP_PRIV _Eq_traits<_Traits>());
451 __size_type__ basic_string<_CharT,_Traits,_Alloc>::rfind(const _CharT* __s, size_type __pos, argument
463 __s, __s + __n, _STLP_PRIV _Eq_traits<_Traits>());
482 basic_string<_CharT,_Traits,_Alloc> ::find_first_of(const _CharT* __s, size_type __pos, argument
488 __s, __s + __n,
496 basic_string<_CharT,_Traits,_Alloc> ::find_last_of(const _CharT* __s, size_typ argument
513 find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const argument
540 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const argument
578 _S_string_copy(const basic_string<_CharT,_Traits,_Alloc>& __s, _CharT* __buf, size_t __n) argument
631 basic_string(const _CharT* __s) argument
639 basic_string(const _CharT* __s, const allocator_type& __a) argument
647 basic_string(const basic_string<_CharT, _Traits, _Alloc> & __s) argument
[all...]
H A D_string_workaround.h55 basic_string(const _Self& __s) argument
56 : _STLP_NO_MEM_T_STRING_BASE(__s) {}
58 basic_string(const _Self& __s, size_type __pos, size_type __n = npos, argument
60 : _STLP_NO_MEM_T_STRING_BASE(__s, __pos, __n, __a) {}
62 basic_string(const _CharT* __s, size_type __n, argument
64 : _STLP_NO_MEM_T_STRING_BASE(__s, __n, __a) {}
66 basic_string(const _CharT* __s, argument
68 : _STLP_NO_MEM_T_STRING_BASE(__s, __a) {}
97 _Self& operator=(const _Self& __s) { argument
98 _Base::operator=(__s);
102 operator =(const _CharT* __s) argument
148 operator +=(const _Self& __s) argument
152 operator +=(const _CharT* __s) argument
162 append(const _Self& __s) argument
167 append(const _Self& __s, size_type __pos, size_type __n) argument
173 append(const _CharT* __s, size_type __n) argument
178 append(const _CharT* __s) argument
248 assign(const _Self& __s) argument
253 assign(const _Self& __s, size_type __pos, size_type __n) argument
259 assign(const _CharT* __s, size_type __n) argument
265 assign(const _CharT* __s) argument
319 insert(size_type __pos, const _Self& __s) argument
324 insert(size_type __pos, const _Self& __s, size_type __beg, size_type __n) argument
329 insert(size_type __pos, const _CharT* __s, size_type __n) argument
335 insert(size_type __pos, const _CharT* __s) argument
472 replace(size_type __pos, size_type __n, const _Self& __s) argument
477 replace(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) argument
483 replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) argument
490 replace(size_type __pos, size_type __n1, const _CharT* __s) argument
502 replace(iterator __first, iterator __last, const _Self& __s) argument
508 replace(iterator __first, iterator __last, const _CharT* __s, size_type __n) argument
516 replace(iterator __first, iterator __last, const _CharT* __s) argument
576 swap(_Self& __s) argument
[all...]
H A D_bitset.h421 explicit bitset(const basic_string<_CharT,_Traits,_Alloc>& __s, argument
424 if (__pos > __s.size())
426 _M_copy_from_string(__s, __pos,
430 bitset(const basic_string<_CharT, _Traits, _Alloc>& __s, argument
434 if (__pos > __s.size())
436 _M_copy_from_string(__s, __pos, __n);
439 explicit bitset(const string& __s, argument
443 if (__pos > __s.size())
445 _M_copy_from_string(__s, __pos, __n);
632 void _M_copy_from_string(const basic_string<_CharT,_Traits,_Alloc>& __s, argument
[all...]
H A D_fstream.h168 _Self* open(const char* __s, ios_base::openmode __m) { argument
169 return _M_base._M_open(__s, __m) ? this : 0;
174 _Self* open(const char* __s, ios_base::openmode __m, argument
176 return _M_base._M_open(__s, __m, __protection) ? this : 0;
462 explicit basic_ifstream(const char* __s, ios_base::openmode __mod = ios_base::in) : argument
466 if (!_M_buf.open(__s, __mod | ios_base::in))
477 basic_ifstream(const char* __s, ios_base::openmode __m, argument
481 if (!_M_buf.open(__s, __m | ios_base::in, __protection))
505 void open(const char* __s, ios_base::openmode __mod = ios_base::in) { argument
506 if (!this->rdbuf()->open(__s, __mo
542 basic_ofstream(const char* __s, ios_base::openmode __mod = ios_base::out) argument
557 basic_ofstream(const char* __s, ios_base::openmode __m, long __protection) argument
584 open(const char* __s, ios_base::openmode __mod= ios_base::out) argument
622 basic_fstream(const char* __s, ios_base::openmode __mod = ios_base::in | ios_base::out) argument
638 basic_fstream(const char* __s, ios_base::openmode __m, long __protection) argument
665 open(const char* __s, ios_base::openmode __mod = ios_base::in | ios_base::out) argument
[all...]
H A D_ios_base.h267 inline ios_base& _STLP_CALL boolalpha(ios_base& __s) argument
268 { __s.setf(ios_base::boolalpha); return __s;}
270 inline ios_base& _STLP_CALL noboolalpha(ios_base& __s) argument
271 { __s.unsetf(ios_base::boolalpha); return __s;}
273 inline ios_base& _STLP_CALL showbase(ios_base& __s) argument
274 { __s.setf(ios_base::showbase); return __s;}
276 inline ios_base& _STLP_CALL noshowbase(ios_base& __s) argument
279 showpoint(ios_base& __s) argument
282 noshowpoint(ios_base& __s) argument
285 showpos(ios_base& __s) argument
288 noshowpos(ios_base& __s) argument
291 skipws(ios_base& __s) argument
294 noskipws(ios_base& __s) argument
297 uppercase(ios_base& __s) argument
300 nouppercase(ios_base& __s) argument
303 unitbuf(ios_base& __s) argument
306 nounitbuf(ios_base& __s) argument
311 internal(ios_base& __s) argument
314 left(ios_base& __s) argument
317 right(ios_base& __s) argument
321 dec(ios_base& __s) argument
324 hex(ios_base& __s) argument
327 oct(ios_base& __s) argument
332 fixed(ios_base& __s) argument
335 scientific(ios_base& __s) argument
[all...]
H A D_string_sum.h67 __bstr_wrapper (_BString const& __s) : argument
68 _BStr(__s) {}
124 _BStrOnLeft operator += (const _BString& __s) { return append(__s); } argument
127 _CStrOnLeft operator += (const _CharT* __s) { return append(__s); } argument
133 _BStrOnLeft append (const _BString& __s) argument
134 { return _BStrOnLeft(*this, __s); }
135 _BString& append(const _BString& __s, size_type __pos, size_type __n) argument
136 { return _M_get_storage().append(__s, __po
137 append(const _CharT* __s) argument
141 append(const _CharT* __s, size_type __n) argument
150 assign(const _BString& __s) argument
151 assign(const _BString& __s, size_type __pos, size_type __n) argument
152 assign(const _CharT* __s, size_type __n) argument
153 assign(const _CharT* __s) argument
157 insert(size_type __pos, const _BString& __s) argument
158 insert(size_type __pos, const _BString& __s, size_type __beg, size_type __n) argument
160 insert(size_type __pos, const _CharT* __s, size_type __n) argument
161 insert(size_type __pos, const _CharT* __s) argument
168 replace(size_type __pos, size_type __n, const _BString& __s) argument
170 replace(size_type __pos1, size_type __n1, const _BString& __s, size_type __pos2, size_type __n2) argument
172 replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) argument
174 replace(size_type __pos, size_type __n1, const _CharT* __s) argument
179 copy(_CharT* __s, size_type __n, size_type __pos = 0) const argument
182 swap(_BString& __s) argument
189 find(const _BString& __s, size_type __pos = 0) const argument
190 find(const _CharT* __s, size_type __pos = 0) const argument
191 find(const _CharT* __s, size_type __pos, size_type __n) const argument
194 rfind(const _BString& __s, size_type __pos = _BString::npos) const argument
195 rfind(const _CharT* __s, size_type __pos = _BString::npos) const argument
196 rfind(const _CharT* __s, size_type __pos, size_type __n) const argument
199 find_first_of(const _BString& __s, size_type __pos = 0) const argument
201 find_first_of(const _CharT* __s, size_type __pos = 0) const argument
203 find_first_of(const _CharT* __s, size_type __pos, size_type __n) const argument
208 find_last_of(const _BString& __s, size_type __pos = _BString::npos) const argument
210 find_last_of(const _CharT* __s, size_type __pos = _BString::npos) const argument
212 find_last_of(const _CharT* __s, size_type __pos, size_type __n) const argument
217 find_first_not_of(const _BString& __s, size_type __pos = 0) const argument
219 find_first_not_of(const _CharT* __s, size_type __pos = 0) const argument
221 find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const argument
226 find_last_not_of(const _BString& __s, size_type __pos = _BString::npos) const argument
228 find_last_not_of(const _CharT* __s, size_type __pos =_BString:: npos) const argument
230 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const argument
243 compare(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) const argument
249 compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const argument
[all...]
H A D_rope.c475 const _CharT*__s, size_t __slen) {
482 return _S_RopeLeaf_from_unowned_char_ptr(__s, __slen, __r->get_allocator());
485 __result = _S_leaf_concat_char_iter((_RopeLeaf*)__r, __s, __slen);
494 _RopeRep* __nright = _S_leaf_concat_char_iter((_RopeLeaf*)__right, __s, __slen);
505 _S_RopeLeaf_from_unowned_char_ptr(__s, __slen, __r->get_allocator());
518 _RopeRep* __r, const _CharT* __s, size_t __slen) {
521 return _S_RopeLeaf_from_unowned_char_ptr(__s, __slen,
528 return _S_concat_char_iter(__r, __s, __slen);
535 return _S_destr_leaf_concat_char_iter((_RopeLeaf*)__r, __s, __slen);
541 _RopeRep* __new_right = _S_destr_leaf_concat_char_iter(__right, __s, __sle
517 _S_destr_concat_char_iter( _RopeRep* __r, const _CharT* __s, size_t __slen) argument
1084 size_t __s = __r->_M_size._M_data; local
1344 size_t __s = size(); local
[all...]
H A D_string.h183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos, argument
186 basic_string(const _Self& __s, size_type __pos)
188 if (__pos > __s.size())
191 _M_range_initialize(__s._M_Start() + __pos, __s._M_Finish());
193 basic_string(const _Self& __s, size_type __pos, size_type __n)
195 if (__pos > __s.size())
198 _M_range_initialize(__s._M_Start() + __pos,
199 __s._M_Start() + __pos + (min) (__n, __s
213 basic_string(const _CharT* __s, size_type __n, const allocator_type& __a = allocator_type()) argument
347 operator =(const _Self& __s) argument
353 operator =(const _CharT* __s) argument
451 operator +=(const _Self& __s) argument
452 operator +=(const _CharT* __s) argument
516 append(const _Self& __s) argument
519 append(const _Self& __s, size_type __pos, size_type __n) argument
527 append(const _CharT* __s, size_type __n) argument
529 append(const _CharT* __s) argument
548 assign(const _Self& __s) argument
551 assign(const _Self& __s, size_type __pos, size_type __n) argument
559 assign(const _CharT* __s, size_type __n) argument
562 assign(const _CharT* __s) argument
608 insert(size_type __pos, const _Self& __s) argument
617 insert(size_type __pos, const _Self& __s, size_type __beg, size_type __n) argument
628 insert(size_type __pos, const _CharT* __s, size_type __n) argument
638 insert(size_type __pos, const _CharT* __s) argument
813 replace(size_type __pos, size_type __n, const _Self& __s) argument
824 replace(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) argument
838 replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) argument
851 replace(size_type __pos, size_type __n1, const _CharT* __s) argument
867 replace(iterator __first, iterator __last, const _Self& __s) argument
872 replace(iterator __first, iterator __last, const _CharT* __s, size_type __n) argument
879 replace(iterator __first, iterator __last, const _CharT* __s) argument
933 copy(_CharT* __s, size_type __n, size_type __pos = 0) const argument
942 swap(_Self& __s) argument
953 find(const _Self& __s, size_type __pos = 0) const argument
956 find(const _CharT* __s, size_type __pos = 0) const argument
966 rfind(const _Self& __s, size_type __pos = npos) const argument
969 rfind(const _CharT* __s, size_type __pos = npos) const argument
976 find_first_of(const _Self& __s, size_type __pos = 0) const argument
979 find_first_of(const _CharT* __s, size_type __pos = 0) const argument
988 find_last_of(const _Self& __s, size_type __pos = npos) const argument
991 find_last_of(const _CharT* __s, size_type __pos = npos) const argument
1000 find_first_not_of(const _Self& __s, size_type __pos = 0) const argument
1003 find_first_not_of(const _CharT* __s, size_type __pos = 0) const argument
1011 find_last_not_of(const _Self& __s, size_type __pos = npos) const argument
1014 find_last_not_of(const _CharT* __s, size_type __pos = npos) const argument
1037 compare(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) const argument
1061 compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const argument
[all...]
H A D_vector.h665 void _M_set(pointer __s, pointer __f, pointer __e) { argument
666 this->_M_start = __s;
H A D_rope.h233 sequence_buffer(_Sequence& __s) : _M_prefix(&__s), _M_buf_count(0) {} argument
256 void append(const value_type *__s, size_t __len) { argument
261 _M_buffer[__i] = __s[__j];
265 _M_prefix->append(__s, __s + __len);
268 append(__s, __len);
271 _Self& write(const value_type *__s, size_t __len) { argument
272 append(__s, __len);
411 static void _S_free_string( _CharT* __s, size_ argument
587 _CharT* __s = local
601 _Rope_RopeSubstring(_RopeRep* __b, size_t __s, size_t __l, allocator_type __a) argument
1195 _S_new_RopeLeaf(_CharT *__s, size_t _p_size, allocator_type __a) argument
1221 _S_new_RopeSubstring(_Rope_RopeRep<_CharT,_Alloc>* __b, size_t __s, size_t __l, allocator_type __a) argument
1229 _S_RopeLeaf_from_unowned_char_ptr(const _CharT *__s, size_t _p_size, allocator_type __a) argument
1278 _S_char_ptr_len(const _CharT* __s) argument
1363 rope(const _CharT* __s, const allocator_type& __a = allocator_type()) argument
1367 rope(const _CharT* __s, size_t __len, const allocator_type& __a = allocator_type()) argument
1375 rope(const _CharT *__s, const _CharT *__e, const allocator_type& __a = allocator_type()) argument
1380 rope(const const_iterator& __s, const const_iterator& __e, const allocator_type& __a = allocator_type()) argument
1386 rope(const iterator& __s, const iterator& __e, const allocator_type& __a = allocator_type()) argument
1670 append(const _CharT* __s, const _CharT* __e) argument
1675 append(const_iterator __s, const_iterator __e) argument
1968 find(const _Self& __s, size_type __pos = 0) const argument
1985 find(const _CharT* __s, size_type __pos = 0) const argument
[all...]
/external/stlport/stlport/stl/debug/
H A D_string.h97 basic_string(const _Self& __s) argument
98 : _ConstructCheck(__s),
99 _M_non_dbg_impl(__s._M_non_dbg_impl), _M_iter_list(&_M_non_dbg_impl) {}
101 basic_string(const _Self& __s, size_type __pos, size_type __n = npos, argument
103 : _M_non_dbg_impl(__s._M_non_dbg_impl, __pos, __n, __a),
106 basic_string(const _CharT* __s, size_type __n, argument
108 : _ConstructCheck(__s), _M_non_dbg_impl(__s, __n, __a),
111 basic_string(const _CharT* __s, argument
113 : _ConstructCheck(__s),
165 operator =(const _Self& __s) argument
172 operator =(const _CharT* __s) argument
234 operator +=(const _Self& __s) argument
235 operator +=(const _CharT* __s) argument
273 append(const _Self& __s) argument
280 append(const _Self& __s, size_type __pos, size_type __n) argument
287 append(const _CharT* __s, size_type __n) argument
296 append(const _CharT* __s) argument
324 assign(const _Self& __s) argument
330 assign(const _Self& __s, size_type __pos, size_type __n) argument
338 assign(const _CharT* __s, size_type __n) argument
346 assign(const _CharT* __s) argument
389 insert(size_type __pos, const _Self& __s) argument
396 insert(size_type __pos, const _Self& __s, size_type __beg, size_type __n) argument
404 insert(size_type __pos, const _CharT* __s, size_type __n) argument
413 insert(size_type __pos, const _CharT* __s) argument
515 replace(size_type __pos, size_type __n, const _Self& __s) argument
522 replace(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) argument
530 replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) argument
539 replace(size_type __pos, size_type __n1, const _CharT* __s) argument
555 replace(iterator __f, iterator __l, const _Self& __s) argument
563 replace(iterator __f, iterator __l, const _CharT* __s, size_type __n) argument
573 replace(iterator __f, iterator __l, const _CharT* __s) argument
643 swap(_Self& __s) argument
655 compare(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) const argument
666 compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const argument
689 copy(_CharT* __s, size_type __n, size_type __pos = 0) const argument
693 find(const _Self& __s, size_type __pos = 0) const argument
695 find(const _CharT* __s, size_type __pos = 0) const argument
700 find(const _CharT* __s, size_type __pos, size_type __n) const argument
711 rfind(const _Self& __s, size_type __pos = npos) const argument
713 rfind(const _CharT* __s, size_type __pos = npos) const argument
718 rfind(const _CharT* __s, size_type __pos, size_type __n) const argument
727 find_first_of(const _Self& __s, size_type __pos = 0) const argument
729 find_first_of(const _CharT* __s, size_type __pos = 0) const argument
734 find_first_of(const _CharT* __s, size_type __pos, size_type __n) const argument
743 find_last_of(const _Self& __s, size_type __pos = npos) const argument
745 find_last_of(const _CharT* __s, size_type __pos = npos) const argument
750 find_last_of(const _CharT* __s, size_type __pos, size_type __n) const argument
759 find_first_not_of(const _Self& __s, size_type __pos = 0) const argument
761 find_first_not_of(const _CharT* __s, size_type __pos = 0) const argument
766 find_first_not_of(const _CharT* __s, size_type __pos, size_type __n) const argument
775 find_last_not_of(const _Self& __s, size_type __pos = npos) const argument
777 find_last_not_of(const _CharT* __s, size_type __pos = npos) const argument
782 find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const argument
[all...]
/external/stlport/src/
H A Dallocators.cpp886 _Pthread_alloc_per_thread_state* __s = (_Pthread_alloc_per_thread_state*)__instance; local
887 __s -> __next = _S_free_per_thread_states;
888 _S_free_per_thread_states = __s;

Completed in 229 milliseconds

12