HomeSort by relevance Sort by last modified time
    Searched refs:__s (Results 101 - 125 of 344) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/libs/x86/include/bits/
time_members.h 57 __timepunct<_CharT>::__timepunct(__c_locale __cloc, const char* __s,
61 if (__builtin_strcmp(__s, _S_get_c_name()) != 0)
63 const size_t __len = __builtin_strlen(__s) + 1;
65 __builtin_memcpy(__tmp, __s, __len);
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_stdexcept.h 35 logic_error(const string& __s) : __Named_exception(__s) {}
43 runtime_error(const string& __s) : __Named_exception(__s) {}
_string_io.c 31 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.empty()
    [all...]
_time_facets.h 140 iter_type get_time(iter_type __s, iter_type __end, ios_base& __str,
142 { return do_get_time(__s, __end, __str, __err, __t); }
143 iter_type get_date(iter_type __s, iter_type __end, ios_base& __str,
145 { return do_get_date(__s, __end, __str, __err, __t); }
146 iter_type get_weekday(iter_type __s, iter_type __end, ios_base& __str,
148 { return do_get_weekday(__s, __end, __str, __err, __t); }
149 iter_type get_monthname(iter_type __s, iter_type __end, ios_base& __str,
151 { return do_get_monthname(__s, __end, __str, __err, __t); }
152 iter_type get_year(iter_type __s, iter_type __end, ios_base& __str,
154 { return do_get_year(__s, __end, __str, __err, __t);
    [all...]
_num_put.c 115 __do_put_float(_OutputIter __s, ios_base& __f,
122 return __put_float(__buf, __s, __f, __fill,
192 __put_integer(char* __buf, char* __iend, _OutputIter __s,
224 return __copy_integer_and_fill((wchar_t*)__wbuf, __len, __s,
232 __put_integer(char* __buf, char* __iend, _OutputIter __s,
260 return __copy_integer_and_fill(__buf, __len, __s, __flags, __f.width(0), __fill, '+', '-');
372 __do_put_integer(_OutputIter __s, ios_base& __f, _CharT __fill, _Integer __x) {
381 return __put_integer(__ibeg, (char*)__buf + __buf_size, __s, __f, __flags, __fill);
386 __do_put_bool(_OutputIter __s, ios_base& __f, _CharT __fill, bool __x) {
393 return _STLP_STD::copy(__str.begin(), __str.end(), __s);
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
string2.h 106 ? ({ void *__s = (s); __bzero (__s, n); __s; }) \
109 # define __memset_1(s, c) ({ void *__s = (s); \
110 *((__uint8_t *) __s) = (__uint8_t) c; __s; })
113 ({ void *__s = (s); \
118 } *__u = __s; \
180 __s; })
184 ? ({ void *__s = (s); __bzero (__s, n); __s; })
    [all...]
wchar2.h 121 extern wchar_t *__wmemset_chk (wchar_t *__s, wchar_t __c, size_t __n,
123 extern wchar_t *__REDIRECT_NTH (__wmemset_alias, (wchar_t *__s, wchar_t __c,
126 (wchar_t *__s, wchar_t __c, size_t __n,
132 __NTH (wmemset (wchar_t *__restrict __s, wchar_t __c, size_t __n))
134 if (__bos0 (__s) != (size_t) -1)
137 return __wmemset_chk (__s, __c, __n, __bos0 (__s) / sizeof (wchar_t));
139 if (__n > __bos0 (__s) / sizeof (wchar_t))
140 return __wmemset_chk_warn (__s, __c, __n,
141 __bos0 (__s) / sizeof (wchar_t))
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
string.h 59 extern void *memset (void *__s, int __c, size_t __n) __THROW __nonnull ((1));
66 extern void *memchr (__const void *__s, int __c, size_t __n)
73 extern void *rawmemchr (__const void *__s, int __c)
77 extern void *memrchr (__const void *__s, int __c, size_t __n)
130 extern char *strdup (__const char *__s)
167 extern char *strchr (__const char *__s, int __c)
170 extern char *strrchr (__const char *__s, int __c)
177 extern char *strchrnul (__const char *__s, int __c)
184 extern size_t strcspn (__const char *__s, __const char *__reject)
188 extern size_t strspn (__const char *__s, __const char *__accept
    [all...]
  /external/stlport/stlport/stl/
_string_io.c 31 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.empty()
    [all...]
_time_facets.h 140 iter_type get_time(iter_type __s, iter_type __end, ios_base& __str,
142 { return do_get_time(__s, __end, __str, __err, __t); }
143 iter_type get_date(iter_type __s, iter_type __end, ios_base& __str,
145 { return do_get_date(__s, __end, __str, __err, __t); }
146 iter_type get_weekday(iter_type __s, iter_type __end, ios_base& __str,
148 { return do_get_weekday(__s, __end, __str, __err, __t); }
149 iter_type get_monthname(iter_type __s, iter_type __end, ios_base& __str,
151 { return do_get_monthname(__s, __end, __str, __err, __t); }
152 iter_type get_year(iter_type __s, iter_type __end, ios_base& __str,
154 { return do_get_year(__s, __end, __str, __err, __t);
    [all...]
_num_put.c 115 __do_put_float(_OutputIter __s, ios_base& __f,
122 return __put_float(__buf, __s, __f, __fill,
192 __put_integer(char* __buf, char* __iend, _OutputIter __s,
224 return __copy_integer_and_fill((wchar_t*)__wbuf, __len, __s,
232 __put_integer(char* __buf, char* __iend, _OutputIter __s,
260 return __copy_integer_and_fill(__buf, __len, __s, __flags, __f.width(0), __fill, '+', '-');
372 __do_put_integer(_OutputIter __s, ios_base& __f, _CharT __fill, _Integer __x) {
381 return __put_integer(__ibeg, (char*)__buf + __buf_size, __s, __f, __flags, __fill);
386 __do_put_bool(_OutputIter __s, ios_base& __f, _CharT __fill, bool __x) {
393 return _STLP_STD::copy(__str.begin(), __str.end(), __s);
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_string_io.c 31 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.empty()
    [all...]
_time_facets.h 140 iter_type get_time(iter_type __s, iter_type __end, ios_base& __str,
142 { return do_get_time(__s, __end, __str, __err, __t); }
143 iter_type get_date(iter_type __s, iter_type __end, ios_base& __str,
145 { return do_get_date(__s, __end, __str, __err, __t); }
146 iter_type get_weekday(iter_type __s, iter_type __end, ios_base& __str,
148 { return do_get_weekday(__s, __end, __str, __err, __t); }
149 iter_type get_monthname(iter_type __s, iter_type __end, ios_base& __str,
151 { return do_get_monthname(__s, __end, __str, __err, __t); }
152 iter_type get_year(iter_type __s, iter_type __end, ios_base& __str,
154 { return do_get_year(__s, __end, __str, __err, __t);
    [all...]
_num_put.c 115 __do_put_float(_OutputIter __s, ios_base& __f,
122 return __put_float(__buf, __s, __f, __fill,
192 __put_integer(char* __buf, char* __iend, _OutputIter __s,
224 return __copy_integer_and_fill((wchar_t*)__wbuf, __len, __s,
232 __put_integer(char* __buf, char* __iend, _OutputIter __s,
260 return __copy_integer_and_fill(__buf, __len, __s, __flags, __f.width(0), __fill, '+', '-');
372 __do_put_integer(_OutputIter __s, ios_base& __f, _CharT __fill, _Integer __x) {
381 return __put_integer(__ibeg, (char*)__buf + __buf_size, __s, __f, __flags, __fill);
386 __do_put_bool(_OutputIter __s, ios_base& __f, _CharT __fill, bool __x) {
393 return _STLP_STD::copy(__str.begin(), __str.end(), __s);
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_string_io.c 31 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.empty()
    [all...]
_time_facets.h 140 iter_type get_time(iter_type __s, iter_type __end, ios_base& __str,
142 { return do_get_time(__s, __end, __str, __err, __t); }
143 iter_type get_date(iter_type __s, iter_type __end, ios_base& __str,
145 { return do_get_date(__s, __end, __str, __err, __t); }
146 iter_type get_weekday(iter_type __s, iter_type __end, ios_base& __str,
148 { return do_get_weekday(__s, __end, __str, __err, __t); }
149 iter_type get_monthname(iter_type __s, iter_type __end, ios_base& __str,
151 { return do_get_monthname(__s, __end, __str, __err, __t); }
152 iter_type get_year(iter_type __s, iter_type __end, ios_base& __str,
154 { return do_get_year(__s, __end, __str, __err, __t);
    [all...]
_num_put.c 115 __do_put_float(_OutputIter __s, ios_base& __f,
122 return __put_float(__buf, __s, __f, __fill,
192 __put_integer(char* __buf, char* __iend, _OutputIter __s,
224 return __copy_integer_and_fill((wchar_t*)__wbuf, __len, __s,
232 __put_integer(char* __buf, char* __iend, _OutputIter __s,
260 return __copy_integer_and_fill(__buf, __len, __s, __flags, __f.width(0), __fill, '+', '-');
372 __do_put_integer(_OutputIter __s, ios_base& __f, _CharT __fill, _Integer __x) {
381 return __put_integer(__ibeg, (char*)__buf + __buf_size, __s, __f, __flags, __fill);
386 __do_put_bool(_OutputIter __s, ios_base& __f, _CharT __fill, bool __x) {
393 return _STLP_STD::copy(__str.begin(), __str.end(), __s);
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
char_traits.h 114 length(const char_type* __s);
117 find(const char_type* __s, std::size_t __n, const char_type& __a);
126 assign(char_type* __s, std::size_t __n, char_type __a);
176 find(const char_type* __s, std::size_t __n, const char_type& __a)
179 if (eq(__s[__i], __a))
180 return __s + __i;
206 assign(char_type* __s, std::size_t __n, char_type __a)
209 std::fill_n(__s, __n, __a);
210 return __s;
262 length(const char_type* __s)
    [all...]
stream_iterator.h 61 istream_iterator(istream_type& __s)
62 : _M_stream(&__s)
164 ostream_iterator(ostream_type& __s) : _M_stream(&__s), _M_string(0) {}
176 ostream_iterator(ostream_type& __s, const _CharT* __c)
177 : _M_stream(&__s), _M_string(__c) { }
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
char_traits.h 114 length(const char_type* __s);
117 find(const char_type* __s, std::size_t __n, const char_type& __a);
126 assign(char_type* __s, std::size_t __n, char_type __a);
176 find(const char_type* __s, std::size_t __n, const char_type& __a)
179 if (eq(__s[__i], __a))
180 return __s + __i;
206 assign(char_type* __s, std::size_t __n, char_type __a)
209 std::fill_n(__s, __n, __a);
210 return __s;
262 length(const char_type* __s)
    [all...]
stream_iterator.h 61 istream_iterator(istream_type& __s)
62 : _M_stream(&__s)
164 ostream_iterator(ostream_type& __s) : _M_stream(&__s), _M_string(0) {}
176 ostream_iterator(ostream_type& __s, const _CharT* __c)
177 : _M_stream(&__s), _M_string(__c) { }
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
char_traits.h 114 length(const char_type* __s);
117 find(const char_type* __s, std::size_t __n, const char_type& __a);
126 assign(char_type* __s, std::size_t __n, char_type __a);
176 find(const char_type* __s, std::size_t __n, const char_type& __a)
179 if (eq(__s[__i], __a))
180 return __s + __i;
206 assign(char_type* __s, std::size_t __n, char_type __a)
209 std::fill_n(__s, __n, __a);
210 return __s;
262 length(const char_type* __s)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
pod_char_traits.h 118 length(const char_type* __s)
120 const char_type* __p = __s;
123 return (__p - __s);
127 find(const char_type* __s, size_t __n, const char_type& __a)
129 for (const char_type* __p = __s; size_t(__p - __s) < __n; ++__p)
150 assign(char_type* __s, size_t __n, char_type __a)
152 std::fill_n(__s, __n, __a);
153 return __s;
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/
pod_char_traits.h 118 length(const char_type* __s)
120 const char_type* __p = __s;
123 return (__p - __s);
127 find(const char_type* __s, size_t __n, const char_type& __a)
129 for (const char_type* __p = __s; size_t(__p - __s) < __n; ++__p)
150 assign(char_type* __s, size_t __n, char_type __a)
152 std::fill_n(__s, __n, __a);
153 return __s;
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/
pod_char_traits.h 118 length(const char_type* __s)
120 const char_type* __p = __s;
123 return (__p - __s);
127 find(const char_type* __s, size_t __n, const char_type& __a)
129 for (const char_type* __p = __s; size_t(__p - __s) < __n; ++__p)
150 assign(char_type* __s, size_t __n, char_type __a)
152 std::fill_n(__s, __n, __a);
153 return __s;

Completed in 1458 milliseconds

1 2 3 45 6 7 8 91011>>