HomeSort by relevance Sort by last modified time
    Searched refs:__s (Results 51 - 75 of 1197) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
strings.h 48 extern void bzero (void *__s, size_t __n) __THROW;
54 extern char *index (char *__s, int __c)
56 extern __const char *index (__const char *__s, int __c)
61 index (char *__s, int __c) __THROW
63 return __builtin_index (__s, __c);
67 index (__const char *__s, int __c) __THROW
69 return __builtin_index (__s, __c);
74 extern char *index (__const char *__s, int __c)
82 extern char *rindex (char *__s, int __c)
84 extern __const char *rindex (__const char *__s, int __c
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_hash_fun.h 44 inline size_t __stl_hash_string(const char* __s) {
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...]
_string.h 183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
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.size() - __pos))
    [all...]
_string_operators.h 29 operator+(const basic_string<_CharT,_Traits,_Alloc>& __s,
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,
48 _STLP_FIX_LITERAL_BUG(__s)
51 const size_t __n = _Traits::length(__s);
57 __result.append(__s, __s + __n)
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_hash_fun.h 44 inline size_t __stl_hash_string(const char* __s) {
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...]
_string.h 183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
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.size() - __pos))
    [all...]
_string_operators.h 29 operator+(const basic_string<_CharT,_Traits,_Alloc>& __s,
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,
48 _STLP_FIX_LITERAL_BUG(__s)
51 const size_t __n = _Traits::length(__s);
57 __result.append(__s, __s + __n)
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_hash_fun.h 44 inline size_t __stl_hash_string(const char* __s) {
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...]
_string.h 183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
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.size() - __pos))
    [all...]
_string_operators.h 29 operator+(const basic_string<_CharT,_Traits,_Alloc>& __s,
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,
48 _STLP_FIX_LITERAL_BUG(__s)
51 const size_t __n = _Traits::length(__s);
57 __result.append(__s, __s + __n)
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_hash_fun.h 44 inline size_t __stl_hash_string(const char* __s) {
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...]
_string.h 183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
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.size() - __pos))
    [all...]
_string_operators.h 29 operator+(const basic_string<_CharT,_Traits,_Alloc>& __s,
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,
48 _STLP_FIX_LITERAL_BUG(__s)
51 const size_t __n = _Traits::length(__s);
57 __result.append(__s, __s + __n)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_hash_fun.h 44 inline size_t __stl_hash_string(const char* __s) {
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...]
_string.h 183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
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.size() - __pos))
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_hash_fun.h 44 inline size_t __stl_hash_string(const char* __s) {
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...]
_string.h 183 basic_string(const _Self& __s, size_type __pos, size_type __n = npos,
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.size() - __pos))
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 97 basic_string(const _Self& __s)
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,
103 : _M_non_dbg_impl(__s._M_non_dbg_impl, __pos, __n, __a),
106 basic_string(const _CharT* __s, size_type __n,
108 : _ConstructCheck(__s), _M_non_dbg_impl(__s, __n, __a),
111 basic_string(const _CharT* __s,
113 : _ConstructCheck(__s),
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 97 basic_string(const _Self& __s)
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,
103 : _M_non_dbg_impl(__s._M_non_dbg_impl, __pos, __n, __a),
106 basic_string(const _CharT* __s, size_type __n,
108 : _ConstructCheck(__s), _M_non_dbg_impl(__s, __n, __a),
111 basic_string(const _CharT* __s,
113 : _ConstructCheck(__s),
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 97 basic_string(const _Self& __s)
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,
103 : _M_non_dbg_impl(__s._M_non_dbg_impl, __pos, __n, __a),
106 basic_string(const _CharT* __s, size_type __n,
108 : _ConstructCheck(__s), _M_non_dbg_impl(__s, __n, __a),
111 basic_string(const _CharT* __s,
113 : _ConstructCheck(__s),
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 97 basic_string(const _Self& __s)
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,
103 : _M_non_dbg_impl(__s._M_non_dbg_impl, __pos, __n, __a),
106 basic_string(const _CharT* __s, size_type __n,
108 : _ConstructCheck(__s), _M_non_dbg_impl(__s, __n, __a),
111 basic_string(const _CharT* __s,
113 : _ConstructCheck(__s),
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 97 basic_string(const _Self& __s)
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,
103 : _M_non_dbg_impl(__s._M_non_dbg_impl, __pos, __n, __a),
106 basic_string(const _CharT* __s, size_type __n,
108 : _ConstructCheck(__s), _M_non_dbg_impl(__s, __n, __a),
111 basic_string(const _CharT* __s,
113 : _ConstructCheck(__s),
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/debug/
_string.h 97 basic_string(const _Self& __s)
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,
103 : _M_non_dbg_impl(__s._M_non_dbg_impl, __pos, __n, __a),
106 basic_string(const _CharT* __s, size_type __n,
108 : _ConstructCheck(__s), _M_non_dbg_impl(__s, __n, __a),
111 basic_string(const _CharT* __s,
113 : _ConstructCheck(__s),
    [all...]
  /external/clang/test/CodeGen/
mips-constraint-regs.c 13 int __s, __v = 17; local
18 : "c" (__s), "I" (__v));
  /external/libcxx/src/support/solaris/
xlocale.c 27 #define vsnprintf_l(__s, __n, __l, __format, __va) \
28 vsnprintf(__s, __n, __format, __va)
30 int snprintf_l(char *__s, size_t __n, locale_t __l, const char *__format, ...)
34 int __res = vsnprintf_l(__s, __n , __l, __format, __va);
39 int asprintf_l(char **__s, locale_t __l, const char *__format, ...) {
43 int __res = vasprintf(__s, __format, __va);
48 int sscanf_l(const char *__s, locale_t __l, const char *__format, ...) {
52 int __res = vsscanf(__s, __format, __va);

Completed in 2181 milliseconds

1 23 4 5 6 7 8 91011>>