Searched refs:__s (Results 1 - 25 of 76) sorted by relevance

1234

/external/stlport/stlport/stl/
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_methods.h24 basic_string(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s) argument
25 : _STLP_STRING_SUM_BASE(_Reserve_t(), __s.size(), __s.get_allocator())
26 { _M_append_sum(__s); }
29 basic_string(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, argument
32 : _STLP_STRING_SUM_BASE(_Reserve_t(), (__pos <= __s.size()) ? ((min) (__n, __s.size() - __pos)) : 0, __a) {
33 size_type __size = __s.size();
37 _M_append_sum_pos(__s, __pos, (min) (__n, __size - __pos));
45 _CharT* _M_append_fast(_CharT const* __s, size_typ argument
47 _M_append_fast(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _CharT *__buf) argument
49 _M_append_fast(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _CharT *__buf) argument
51 _M_append_fast(_Self const& __s, _CharT *__buf) argument
56 _M_append_fast(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, _CharT *__buf) argument
65 _M_append_fast_pos(_CharT const* __s, size_type __s_size, _CharT *__buf, size_type __pos, size_type __n) argument
68 _M_append_fast_pos(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _CharT *__buf, size_type __pos, size_type __n) argument
71 _M_append_fast_pos(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _CharT *__buf, size_type __pos, size_type __n) argument
74 _M_append_fast_pos(_Self const& __s, _CharT *__buf, size_type __pos, size_type __n) argument
82 _M_append_fast_pos(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, _CharT *__buf, size_type __pos, size_type __n) argument
101 _M_append_sum(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s) argument
124 _M_append_sum_pos(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, size_type __pos, size_type __n) argument
148 _M_append_sum_no_overflow(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, size_type __pos, size_type __n) argument
[all...]
H A D_string_hash.h34 __stl_string_hash(const basic_string<_CharT,_Traits,_Alloc>& __s) { argument
36 size_t __len = __s.size();
37 const _CharT* __data = __s.data();
47 size_t operator()(const basic_string<_CharT,_Traits,_Alloc>& __s) const
48 { return __stl_string_hash(__s); }
55 size_t operator()(const string& __s) const
56 { return __stl_string_hash(__s); }
62 size_t operator()(const wstring& __s) const
63 { return __stl_string_hash(__s); }
H A D_hash_fun.h44 inline size_t __stl_hash_string(const char* __s) { argument
45 _STLP_FIX_LITERAL_BUG(__s)
47 for ( ; *__s; ++__s)
48 __h = 5*__h + *__s;
57 size_t operator()(const char* __s) const {
58 _STLP_FIX_LITERAL_BUG(__s)
59 return _STLP_PRIV __stl_hash_string(__s);
65 size_t operator()(const char* __s) const {
66 _STLP_FIX_LITERAL_BUG(__s)
[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_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_string_base.h168 void _M_swap(_Self &__s) { argument
171 if (__s._M_using_static_buf()) {
172 _STLP_STD::swap(_M_buffers, __s._M_buffers);
174 _M_finish = _M_start_of_storage._M_data + (__s._M_finish - __s._M_start_of_storage._M_data);
175 __s._M_finish = __s._M_buffers._M_static_buf + (__tmp - _M_start_of_storage._M_data);
177 _M_start_of_storage.swap(__s._M_start_of_storage);
179 __s._M_start_of_storage._M_data = __s
[all...]
H A D_num_put.h60 iter_type put(iter_type __s, ios_base& __f, char_type __fill, argument
62 return do_put(__s, __f, __fill, __val);
65 iter_type put(iter_type __s, ios_base& __f, char_type __fill, argument
67 return do_put(__s, __f, __fill, __val);
70 iter_type put(iter_type __s, ios_base& __f, char_type __fill, argument
72 return do_put(__s, __f, __fill, __val);
76 iter_type put(iter_type __s, ios_base& __f, char_type __fill, argument
78 return do_put(__s, __f, __fill, __val);
81 iter_type put(iter_type __s, ios_base& __f, char_type __fill, argument
83 return do_put(__s, __
87 put(iter_type __s, ios_base& __f, char_type __fill, double __val) const argument
93 put(iter_type __s, ios_base& __f, char_type __fill, long double __val) const argument
99 put(iter_type __s, ios_base& __f, char_type __fill, const void * __val) const 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_string_operators.h29 operator+(const basic_string<_CharT,_Traits,_Alloc>& __s, argument
35 _Str __result = _Str(_Reserve_t(), __s.size() + __y.size(), __s.get_allocator());
37 _Str __result(_Reserve_t(), __s.size() + __y.size(), __s.get_allocator());
39 __result.append(__s);
46 operator+(const _CharT* __s, argument
48 _STLP_FIX_LITERAL_BUG(__s)
51 const size_t __n = _Traits::length(__s);
57 __result.append(__s, __
80 operator +(const basic_string<_CharT,_Traits,_Alloc>& __x, const _CharT* __s) argument
311 operator ==(const _CharT* __s, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
320 operator ==(const basic_string<_CharT,_Traits,_Alloc>& __x, const _CharT* __s) argument
330 operator ==(const _CharT* __s, const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __y) argument
339 operator ==(const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __x, const _CharT* __s) argument
377 operator <(const _CharT* __s, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
387 operator <(const basic_string<_CharT,_Traits,_Alloc>& __x, const _CharT* __s) argument
398 operator <(const _CharT* __s, const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __y) argument
408 operator <(const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __x, const _CharT* __s) argument
465 operator !=(const _CharT* __s, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
473 operator !=(const basic_string<_CharT,_Traits,_Alloc>& __x, const _CharT* __s) argument
482 operator !=(const _CharT* __s, const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __y) argument
490 operator !=(const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __x, const _CharT* __s) argument
499 operator >(const _CharT* __s, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
507 operator >(const basic_string<_CharT,_Traits,_Alloc>& __x, const _CharT* __s) argument
516 operator >(const _CharT* __s, const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __y) argument
524 operator >(const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __x, const _CharT* __s) argument
533 operator <=(const _CharT* __s, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
541 operator <=(const basic_string<_CharT,_Traits,_Alloc>& __x, const _CharT* __s) argument
550 operator <=(const _CharT* __s, const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __y) argument
558 operator <=(const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __x, const _CharT* __s) argument
567 operator >=(const _CharT* __s, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
575 operator >=(const basic_string<_CharT,_Traits,_Alloc>& __x, const _CharT* __s) argument
584 operator >=(const _CharT* __s, const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __y) argument
592 operator >=(const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __x, const _CharT* __s) 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_time_facets.c152 const ios_base& __s, ios_base::iostate& __err, tm* __t) {
153 const ctype<_Ch>& __ct = use_facet<ctype<_Ch> >(__s.getloc());
304 time_get<_Ch, _InIt>::do_get_date(_InIt __s, _InIt __end, argument
313 = _STLP_PRIV __get_formatted_time(__s, __end, __format, __format_end,
320 if (__s == __end)
323 return __s;
328 time_get<_Ch, _InIt>::do_get_time(_InIt __s, _InIt __end, argument
336 = _STLP_PRIV __get_formatted_time(__s, __end, __format, __format_end,
341 if (__s == __end)
343 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
348 do_get_year(_InIt __s, _InIt __end, ios_base&, ios_base::iostate& __err, tm* __t) const argument
367 do_get_weekday(_InIt __s, _InIt __end, ios_base& , ios_base::iostate &__err, tm *__t) const argument
384 do_get_monthname(_InIt __s, _InIt __end, ios_base& , ios_base::iostate &__err, tm *__t) const argument
401 put(_OutputIter __s, ios_base& __f, _Ch __fill, const tm* __tmb, const _Ch* __pat, const _Ch* __pat_end) const argument
425 do_put(_OutputIter __s, ios_base& __f, _Ch , const tm* __tmb, char __format, char __modifier ) const 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_string_io.h36 const basic_string<_CharT,_Traits,_Alloc>& __s);
53 basic_string<_CharT,_Traits,_Alloc>& __s);
58 basic_string<_CharT,_Traits,_Alloc>& __s,
66 basic_string<_CharT,_Traits,_Alloc>& __s) {
67 return getline(__is, __s, __is.widen('\n'));
65 getline(basic_istream<_CharT, _Traits>& __is, basic_string<_CharT,_Traits,_Alloc>& __s) argument
H A D_string_io.c31 const basic_string<_CharT,_Traits,_Alloc>& __s) {
43 size_type __n = __s.size();
55 __ok = __ok && (__buf->sputn(__s.data(), streamsize(__n)) == streamsize(__n));
70 basic_string<_CharT,_Traits, _Alloc>& __s) {
85 __s.clear();
89 __n = __s.max_size();
95 (__width > __STATIC_CAST(streamsize, __s.max_size())))
99 __s.reserve(__n);
117 __s.push_back(__c);
122 if (__s
30 operator(basic_ostream<_CharT, _Traits>& __os, const basic_string<_CharT,_Traits,_Alloc>& __s) argument
69 operator(basic_istream<_CharT, _Traits>& __is, basic_string<_CharT,_Traits, _Alloc>& __s) argument
133 getline(basic_istream<_CharT, _Traits>& __is, basic_string<_CharT,_Traits,_Alloc>& __s, _CharT __delim) argument
[all...]
/external/tcpdump/
H A Dcpack.h49 #define cpack_int8(__s, __p) cpack_uint8((__s), (u_int8_t*)(__p))
50 #define cpack_int16(__s, __p) cpack_uint16((__s), (u_int16_t*)(__p))
51 #define cpack_int32(__s, __p) cpack_uint32((__s), (u_int32_t*)(__p))
52 #define cpack_int64(__s, __p) cpack_uint64((__s), (u_int64_t*)(__p))
/external/clang/test/CodeGen/
H A Dpr9614.c11 extern char *strrchr_foo (const char *__s, int __c) __asm ("strrchr");
12 extern inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) char * strrchr_foo (const char *__s, int __c) { argument
13 return __builtin_strrchr (__s, __c);
H A Dmips-constraint-regs.c13 int __s, __v = 17; local
18 : "c" (__s), "I" (__v));
/external/stlport/stlport/stl/debug/
H A D_string_sum_methods.h23 basic_string(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s) argument
24 : _M_non_dbg_impl(_Reserve_t(), __s.size(), __s.get_allocator()),
26 { _M_append_sum(__s, _M_non_dbg_impl); }
29 basic_string(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, argument
32 : _M_non_dbg_impl(_Reserve_t(), (__pos <= __s.size()) ? ((min) (__n, __s.size() - __pos)) : 0, __a),
34 size_type __size = __s.size();
39 _M_append_sum_pos(__s, __pos, (min) (__n, __size - __pos), _M_non_dbg_impl);
45 _Base& _M_append_fast(_CharT const* __s, size_typ argument
47 _M_append_fast(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _Base &__str) argument
49 _M_append_fast(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _Base &__str) argument
51 _M_append_fast(_Self const& __s, _Base &__str) argument
56 _M_append_fast(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, _Base &__str) argument
64 _M_append_fast_pos(_CharT const* __s, size_type __s_size, _Base &__str, size_type __pos, size_type __n) argument
67 _M_append_fast_pos(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _Base &__str, size_type __pos, size_type __n) argument
70 _M_append_fast_pos(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _Base &__str, size_type __pos, size_type __n) argument
73 _M_append_fast_pos(_Self const& __s, _Base &__str, size_type __pos, size_type __n) argument
80 _M_append_fast_pos(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, _Base &__str, size_type __pos, size_type __n) argument
99 _M_append_sum(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, _Base &__impl) argument
106 _M_append_sum_pos(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> const& __s, size_type __pos, size_type __n, _Base &__impl) argument
[all...]
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/stlport/
H A Diostream.h58 istream_withassign& operator=(istream& __s) { argument
59 ios::init(__s.rdbuf());
62 istream_withassign& operator=(streambuf* __s) { argument
63 ios::init(__s);
73 ostream_withassign& operator=(ostream& __s) { argument
74 ios::init(__s.rdbuf());
77 ostream_withassign& operator=(streambuf* __s) { argument
78 ios::init(__s);
91 iostream_withassign & operator=(streambuf* __s) { argument
92 ios::init(__s);
[all...]
/external/clang/test/CodeGenCXX/
H A Ddebug-info-template-quals.cpp7 assign(const _CharT* __s, const basic_string<_CharT> &x) argument
H A Dcrash.cpp21 string(const char *__s);
/external/libcxx/src/
H A Dregex.cpp279 __match_any_but_newline<char>::__exec(__state& __s) const
281 if (__s.__current_ != __s.__last_)
283 switch (*__s.__current_)
287 __s.__do_ = __state::__reject;
288 __s.__node_ = nullptr;
291 __s.__do_ = __state::__accept_and_consume;
292 ++__s.__current_;
293 __s.__node_ = this->first();
299 __s
[all...]
/external/libcxx/include/support/win32/
H A Dlocale_win32.h103 #define sscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ )
104 #define vsscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ )
105 #define sprintf_l( __s, __l, __f, ... ) _sprintf_l( __s, __f, __l, __VA_ARGS__ )
106 #define vsprintf_l( __s, __l, __f, ... ) _vsprintf_l( __s, __f, __l, __VA_ARGS__ )
107 #define vsnprintf_l( __s, __n, __l, __f, ... ) _vsnprintf_l( __s, __
[all...]

Completed in 380 milliseconds

1234