Home
last modified time | relevance | path

Searched defs:__s (Results 1 – 25 of 66) sorted by relevance

123

/external/libcxx/include/
Dstring.h74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);} in __libcpp_strchr()
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);} in strchr()
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);} in strchr()
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);} in __libcpp_strrchr()
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);} in strrchr()
92 char* strrchr( char* __s, int __c) {return __libcpp_strrchr(__s, __c);} in strrchr()
95 void* __libcpp_memchr(const void* __s, int __c, size_t __n) {return (void*)memchr(__s, __c, __n);} in __libcpp_memchr()
97 const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);} in memchr()
99 void* memchr( void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);} in memchr()
Dwchar.h137 wchar_t* __libcpp_wcschr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcschr(__s, __c);} in __libcpp_wcschr()
139 const wchar_t* wcschr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} in wcschr()
141 wchar_t* wcschr( wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} in wcschr()
151 wchar_t* __libcpp_wcsrchr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcsrchr(__s, __c);} in __libcpp_wcsrchr()
153 const wchar_t* wcsrchr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcsrchr(__s, __c);} in wcsrchr()
155 wchar_t* wcsrchr( wchar_t* __s, wchar_t __c) {return __libcpp_wcsrchr(__s, __c);} in wcsrchr()
165 wchar_t* __libcpp_wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return (wchar_t*)wmemchr(__… in __libcpp_wmemchr()
167 const wchar_t* wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, _… in wmemchr()
169 …wchar_t* wmemchr( wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, __c, _… in wmemchr()
D__bsd_locale_fallbacks.h57 size_t __libcpp_wcrtomb_l(char *__s, wchar_t __wc, mbstate_t *__ps, locale_t __l) in __libcpp_wcrtomb_l()
72 size_t __libcpp_mbrtowc_l(wchar_t *__pwc, const char *__s, size_t __n, in __libcpp_mbrtowc_l()
87 size_t __libcpp_mbrlen_l(const char *__s, size_t __n, mbstate_t *__ps, locale_t __l) in __libcpp_mbrlen_l()
109 int __libcpp_snprintf_l(char *__s, size_t __n, locale_t __l, const char *__format, ...) { in __libcpp_snprintf_l()
119 int __libcpp_asprintf_l(char **__s, locale_t __l, const char *__format, ...) { in __libcpp_asprintf_l()
129 int __libcpp_sscanf_l(const char *__s, locale_t __l, const char *__format, ...) { in __libcpp_sscanf_l()
/external/cronet/buildtools/third_party/libc++/trunk/include/
Dwchar.h143 wchar_t* __libcpp_wcschr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcschr(__s, __c);} in __libcpp_wcschr()
145 const wchar_t* wcschr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} in wcschr()
147 wchar_t* wcschr( wchar_t* __s, wchar_t __c) {return __libcpp_wcschr(__s, __c);} in wcschr()
157 wchar_t* __libcpp_wcsrchr(const wchar_t* __s, wchar_t __c) {return (wchar_t*)wcsrchr(__s, __c);} in __libcpp_wcsrchr()
159 const wchar_t* wcsrchr(const wchar_t* __s, wchar_t __c) {return __libcpp_wcsrchr(__s, __c);} in wcsrchr()
161 wchar_t* wcsrchr( wchar_t* __s, wchar_t __c) {return __libcpp_wcsrchr(__s, __c);} in wcsrchr()
171 wchar_t* __libcpp_wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return (wchar_t*)wmemchr(__… in __libcpp_wmemchr()
173 const wchar_t* wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, _… in wmemchr()
175 …wchar_t* wmemchr( wchar_t* __s, wchar_t __c, size_t __n) {return __libcpp_wmemchr(__s, __c, _… in wmemchr()
Dstring.h74 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strchr(const char* __s, int __c… in strchr()
77 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strchr(char* __s, int __c) { in strchr()
88 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const char* strrchr(const char* __s, int __… in strrchr()
91 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD char* strrchr(char* __s, int __c) { in strrchr()
95 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const void* memchr(const void* __s, int __c… in memchr()
98 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD void* memchr(void* __s, int __c, size_t __n… in memchr()
D__bsd_locale_fallbacks.h56 size_t __libcpp_wcrtomb_l(char *__s, wchar_t __wc, mbstate_t *__ps, locale_t __l) in __libcpp_wcrtomb_l()
71 size_t __libcpp_mbrtowc_l(wchar_t *__pwc, const char *__s, size_t __n, in __libcpp_mbrtowc_l()
86 size_t __libcpp_mbrlen_l(const char *__s, size_t __n, mbstate_t *__ps, locale_t __l) in __libcpp_mbrlen_l()
111 int __libcpp_snprintf_l(char *__s, size_t __n, locale_t __l, const char *__format, ...) { in __libcpp_snprintf_l()
121 int __libcpp_asprintf_l(char **__s, locale_t __l, const char *__format, ...) { in __libcpp_asprintf_l()
131 int __libcpp_sscanf_l(const char *__s, locale_t __l, const char *__format, ...) { in __libcpp_sscanf_l()
/external/cronet/buildtools/third_party/libc++/trunk/include/__format/
Dformat_error.h27 _LIBCPP_HIDE_FROM_ABI explicit format_error(const string& __s) in format_error()
29 _LIBCPP_HIDE_FROM_ABI explicit format_error(const char* __s) in format_error()
42 __throw_format_error(const char* __s) { in __throw_format_error()
/external/cronet/buildtools/third_party/libc++/trunk/src/support/solaris/
Dxlocale.cpp27 #define vsnprintf_l(__s, __n, __l, __format, __va) \ argument
30 int snprintf_l(char *__s, size_t __n, locale_t __l, const char *__format, ...) in snprintf_l()
39 int asprintf_l(char **__s, locale_t __l, const char *__format, ...) { in asprintf_l()
48 int sscanf_l(const char *__s, locale_t __l, const char *__format, ...) { in sscanf_l()
/external/libcxx/src/support/solaris/
Dxlocale.cpp28 #define vsnprintf_l(__s, __n, __l, __format, __va) \ argument
31 int snprintf_l(char *__s, size_t __n, locale_t __l, const char *__format, ...) in snprintf_l()
40 int asprintf_l(char **__s, locale_t __l, const char *__format, ...) { in asprintf_l()
49 int sscanf_l(const char *__s, locale_t __l, const char *__format, ...) { in sscanf_l()
/external/cronet/buildtools/third_party/libc++/trunk/include/__iterator/
Dmove_sentinel.h34 explicit move_sentinel(_Sent __s) : __last_(std::move(__s)) {} in move_sentinel()
39 move_sentinel(const move_sentinel<_S2>& __s) : __last_(__s.base()) {} in move_sentinel()
Distreambuf_iterator.h54 explicit __proxy(char_type __c, streambuf_type* __s) in __proxy()
74 _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(istream_type& __s) _NOEXCEPT in istreambuf_iterator()
76 _LIBCPP_INLINE_VISIBILITY istreambuf_iterator(streambuf_type* __s) _NOEXCEPT in istreambuf_iterator()
Dostreambuf_iterator.h51 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator(ostream_type& __s) _NOEXCEPT in ostreambuf_iterator()
53 _LIBCPP_INLINE_VISIBILITY ostreambuf_iterator(streambuf_type* __s) _NOEXCEPT in ostreambuf_iterator()
Dostream_iterator.h52 _LIBCPP_INLINE_VISIBILITY ostream_iterator(ostream_type& __s) _NOEXCEPT in ostream_iterator()
54 … _LIBCPP_INLINE_VISIBILITY ostream_iterator(ostream_type& __s, const _CharT* __delimiter) _NOEXCEPT in ostream_iterator()
/external/libcxx/include/support/win32/
Dlocale_win32.h177 #define strftime_l( __s, __l, __f, __tm, __loc ) strftime( __s, __l, __f, __tm ) argument
181 #define sscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ ) argument
182 #define sprintf_l( __s, __l, __f, ... ) _sprintf_l( __s, __f, __l, __VA_ARGS__ ) argument
183 #define vsprintf_l( __s, __l, __f, ... ) _vsprintf_l( __s, __f, __l, __VA_ARGS__ ) argument
184 #define vsnprintf_l( __s, __n, __l, __f, ... ) _vsnprintf_l( __s, __n, __f, __l, __VA_ARGS__ ) argument
/external/clang/test/CodeGen/
Dpr9614.c12 …always_inline__)) __attribute__ ((__gnu_inline__)) char * strrchr_foo (const char *__s, int __c) { in strrchr_foo()
21 extern inline __attribute__((__always_inline__, __gnu_inline__)) void *memchr(void *__s, int __c, _… in memchr()
/external/cronet/buildtools/third_party/libc++/trunk/include/__filesystem/
Doperations.h97 inline _LIBCPP_HIDE_FROM_ABI bool status_known(file_status __s) noexcept { return __s.type() != fil… in status_known()
98 inline _LIBCPP_HIDE_FROM_ABI bool exists(file_status __s) noexcept { return status_known(__s) && __… in exists()
102 auto __s = __status(__p, &__ec); in exists() local
112 inline _LIBCPP_HIDE_FROM_ABI bool is_block_file(file_status __s) noexcept { return __s.type() == fi… in is_block_file()
115 inline _LIBCPP_HIDE_FROM_ABI bool is_character_file(file_status __s) noexcept { return __s.type() =… in is_character_file()
118 inline _LIBCPP_HIDE_FROM_ABI bool is_directory(file_status __s) noexcept { return __s.type() == fil… in is_directory()
124 inline _LIBCPP_HIDE_FROM_ABI bool is_fifo(file_status __s) noexcept { return __s.type() == file_typ… in is_fifo()
127 inline _LIBCPP_HIDE_FROM_ABI bool is_regular_file(file_status __s) noexcept { return __s.type() == … in is_regular_file()
130 inline _LIBCPP_HIDE_FROM_ABI bool is_symlink(file_status __s) noexcept { return __s.type() == file_… in is_symlink()
133 inline _LIBCPP_HIDE_FROM_ABI bool is_other(file_status __s) noexcept { return exists(__s) && !is_re… in is_other()
[all …]
/external/libcxx/test/support/
Dconstexpr_char_traits.hpp77 constexpr_char_traits<_CharT>::length(const char_type* __s) in length()
87 constexpr_char_traits<_CharT>::find(const char_type* __s, size_t __n, const char_type& __a) in find()
131 constexpr_char_traits<_CharT>::assign(char_type* __s, size_t __n, char_type __a) in assign()
/external/cronet/buildtools/third_party/libc++/trunk/include/__random/
Dlognormal_distribution.h44 : __nd_(__m, __s) {} in __nd_() argument
82 : __p_(param_type(__m, __s)) {} in __p_() argument
Dseed_seq.h84 for (_InputIterator __s = __first; __s != __last; ++__s) in __init() local
96 const size_t __s = __v_.size(); in generate() local
/external/cronet/buildtools/third_party/libc++/trunk/include/__support/win32/
Dlocale_win32.h264 #define sscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ ) argument
265 #define sprintf_l( __s, __l, __f, ... ) _sprintf_l( __s, __f, __l, __VA_ARGS__ ) argument
266 #define vsprintf_l( __s, __l, __f, ... ) _vsprintf_l( __s, __f, __l, __VA_ARGS__ ) argument
267 #define vsnprintf_l( __s, __n, __l, __f, ... ) _vsnprintf_l( __s, __n, __f, __l, __VA_ARGS__ ) argument
/external/cronet/buildtools/third_party/libc++/trunk/include/__chrono/
Dostream.h105 basic_ostringstream<_CharT, _Traits> __s; variable
Dconvert_to_timespec.h33 seconds __s = duration_cast<seconds>(__ns); in __convert_to_timespec() local
/external/cronet/buildtools/third_party/libc++/trunk/include/__algorithm/
Dsearch.h92 …const _Iter1 __s = __first1 + __size1 - _DiffT1(__size2 - 1); // Start of pattern match can't go b… in __search_random_access_impl() local
194 search(_ForwardIterator __f, _ForwardIterator __l, const _Searcher& __s) { in search()
/external/cronet/buildtools/third_party/libc++/trunk/src/
Dthread.cpp185 __thread_struct_imp::__make_ready_at_thread_exit(__assoc_sub_state* __s) in __make_ready_at_thread_exit()
210 __thread_struct::__make_ready_at_thread_exit(__assoc_sub_state* __s) in __make_ready_at_thread_exit()
/external/libcxx/src/
Dthread.cpp190 __thread_struct_imp::__make_ready_at_thread_exit(__assoc_sub_state* __s) in __make_ready_at_thread_exit()
215 __thread_struct::__make_ready_at_thread_exit(__assoc_sub_state* __s) in __make_ready_at_thread_exit()

123