Home
last modified time | relevance | path

Searched refs:__c (Results 1 – 25 of 130) sorted by relevance

123456

/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcctype51 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_isalnum(int __c) {return isalnum(__c);}
53 inline _LIBCPP_INLINE_VISIBILITY int isalnum(int __c) {return __libcpp_isalnum(__c);}
59 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_isalpha(int __c) {return isalpha(__c);}
61 inline _LIBCPP_INLINE_VISIBILITY int isalpha(int __c) {return __libcpp_isalpha(__c);}
67 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_isblank(int __c) {return isblank(__c);}
69 inline _LIBCPP_INLINE_VISIBILITY int isblank(int __c) {return __libcpp_isblank(__c);}
75 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_iscntrl(int __c) {return iscntrl(__c);}
77 inline _LIBCPP_INLINE_VISIBILITY int iscntrl(int __c) {return __libcpp_iscntrl(__c);}
83 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_isdigit(int __c) {return isdigit(__c);}
85 inline _LIBCPP_INLINE_VISIBILITY int isdigit(int __c) {return __libcpp_isdigit(__c);}
[all …]
Dcomplex276 complex(const complex<_Xp>& __c)
277 : __re_(__c.real()), __im_(__c.imag()) {}
292 template<class _Xp> _LIBCPP_INLINE_VISIBILITY complex& operator= (const complex<_Xp>& __c)
294 __re_ = __c.real();
295 __im_ = __c.imag();
298 template<class _Xp> _LIBCPP_INLINE_VISIBILITY complex& operator+=(const complex<_Xp>& __c)
300 __re_ += __c.real();
301 __im_ += __c.imag();
304 template<class _Xp> _LIBCPP_INLINE_VISIBILITY complex& operator-=(const complex<_Xp>& __c)
306 __re_ -= __c.real();
[all …]
D__split_buffer67 __split_buffer(__split_buffer&& __c)
69 __split_buffer(__split_buffer&& __c, const __alloc_rr& __a);
70 __split_buffer& operator=(__split_buffer&& __c)
150 void __move_assign_alloc(__split_buffer& __c, true_type)
153 __alloc() = _VSTD::move(__c.__alloc());
363 __split_buffer<_Tp, _Allocator>::__split_buffer(__split_buffer&& __c)
365 : __first_(_VSTD::move(__c.__first_)),
366 __begin_(_VSTD::move(__c.__begin_)),
367 __end_(_VSTD::move(__c.__end_)),
368 __end_cap_(_VSTD::move(__c.__end_cap_))
[all …]
D__debug51 __i_node(void* __i, __i_node* __next, __c_node* __c)
52 : __i_(__i), __next_(__next), __c_(__c) {}
74 __c_node(void* __c, __c_node* __next)
75 : __c_(__c), __next_(__next), beg_(nullptr), end_(nullptr), cap_(nullptr) {}
91 _C_node(void* __c, __c_node* __n)
92 : __c_node(__c, __n) {}
172 void __insert_c(_Cont* __c)
174 __c_node* __n = __insert_c(static_cast<void*>(__c));
179 __c_node* __insert_c(void* __c);
180 void __erase_c(void* __c);
[all …]
Dlist248 explicit __list_iterator(__node_pointer __p, const void* __c) _NOEXCEPT
251 __get_db()->__insert_ic(this, __c);
381 explicit __list_const_iterator(__node_pointer __p, const void* __c) _NOEXCEPT
384 __get_db()->__insert_ic(this, __c);
608 void swap(__list_imp& __c)
613 void __copy_assign_alloc(const __list_imp& __c)
614 {__copy_assign_alloc(__c, integral_constant<bool,
618 void __move_assign_alloc(__list_imp& __c)
622 {__move_assign_alloc(__c, integral_constant<bool,
645 void __copy_assign_alloc(const __list_imp& __c, true_type)
[all …]
/ndk/sources/cxx-stl/stlport/src/
Dcomplex_io.cpp52 char __c; in operator >>() local
54 __is >> __c; in operator >>()
55 if (__c == '(') { in operator >>()
56 __is >> __re >> __c; in operator >>()
57 if (__c == ',') in operator >>()
58 __is >> __im >> __c; in operator >>()
59 if (__c != ')') in operator >>()
63 __is.putback(__c); in operator >>()
78 char __c; in operator >>() local
80 __is >> __c; in operator >>()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ext/
D__hash28 size_t operator()(const char *__c) const _NOEXCEPT
30 return __do_string_hash(__c, __c + strlen(__c));
38 size_t operator()(char *__c) const _NOEXCEPT
40 return __do_string_hash<const char *>(__c, __c + strlen(__c));
48 size_t operator()(char __c) const _NOEXCEPT
50 return __c;
58 size_t operator()(signed char __c) const _NOEXCEPT
60 return __c;
68 size_t operator()(unsigned char __c) const _NOEXCEPT
70 return __c;
[all …]
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_ctype.h78 bool is(mask __m, char __c) const in is() argument
79 { return ((*(_M_ctype_table+(unsigned char)__c)) & __m) != 0; } in is()
91 char (toupper)(char __c) const { return do_toupper(__c); }
96 char (tolower)(char __c) const { return do_tolower(__c); }
101 char widen(char __c) const { return do_widen(__c); } in widen() argument
106 char narrow(char __c, char __dfault) const { in narrow() argument
107 return do_narrow(__c, __dfault); in narrow()
123 virtual char do_toupper(char __c) const;
124 virtual char do_tolower(char __c) const;
127 virtual char do_widen(char __c) const;
[all …]
D_messages_facets.h65 string_type get(catalog __c, int __set, int __msgid, in get() argument
67 { return do_get(__c, __set, __msgid, __dfault); } in get()
68 inline void close(catalog __c) const in close() argument
69 { do_close(__c); } in close()
78 virtual string_type do_get(catalog __c, int __set, int __msgid, in do_get() argument
81 virtual void do_close(catalog __c) const in do_close() argument
98 inline string_type get(catalog __c, int __set, int __msgid, in get() argument
100 { return do_get(__c, __set, __msgid, __dfault); } in get()
101 inline void close(catalog __c) const in close() argument
102 { do_close(__c); } in close()
[all …]
Dchar_traits.h160 static const char_type* _STLP_CALL find(const char_type* __s, size_t __n, const char_type& __c) { in find() argument
162 if (eq(*__s, __c)) in find()
175 static char_type* _STLP_CALL assign(char_type* __s, size_t __n, char_type __c) { in assign() argument
177 __s[__i] = __c; in assign()
181 static int_type _STLP_CALL not_eof(const int_type& __c) in not_eof() argument
182 { return !eq_int_type(__c, eof()) ? __c : __STATIC_CAST(int_type, 0); } in not_eof()
184 static char_type _STLP_CALL to_char_type(const int_type& __c) in to_char_type() argument
185 { return (char_type)__c; } in to_char_type()
187 static int_type _STLP_CALL to_int_type(const char_type& __c) in to_int_type() argument
188 { return (int_type)__c; } in to_int_type()
[all …]
D_ios.h110 static bool _STLP_CALL _S_eof(int_type __c) { in _S_eof() argument
112 return _Traits::eq_int_type(__c, __eof); in _S_eof()
145 basic_ios<_CharT, _Traits>::narrow(_CharT __c, char __default) const in narrow() argument
146 { return _M_ctype_facet()->narrow(__c, __default); } in narrow()
150 basic_ios<_CharT, _Traits>::widen(char __c) const in widen() argument
151 { return _M_ctype_facet()->widen(__c); } in widen()
156 basic_ios<char, char_traits<char> >::narrow(char __c, char) const in narrow() argument
158 return __c; in narrow()
163 basic_ios<char, char_traits<char> >::widen(char __c) const in widen() argument
165 return __c; in widen()
D_ctraits_fns.h46 _Eq_char_bound(typename _Traits::char_type __c) : __val(__c) {} in _Eq_char_bound()
56 _Neq_char_bound(typename _Traits::char_type __c) : __val(__c) {} in _Neq_char_bound()
66 _Eq_int_bound(typename _Traits::int_type __c) : __val(__c) {} in _Eq_int_bound()
D_ostream.h89 void _M_put_char(_CharT __c);
96 _Self& put(char_type __c);
241 operator<<(basic_ostream<_CharT, _Traits>& __os, _CharT __c){
242 __os._M_put_char(__c);
257 operator<<(basic_ostream<char, char_traits<char> >& __os, char __c) {
258 __os._M_put_char(__c);
263 operator<<(basic_ostream<char, char_traits<char> >& __os, signed char __c) {
264 __os._M_put_char(__c);
269 operator<<(basic_ostream<char, char_traits<char> >& __os, unsigned char __c) {
270 __os._M_put_char(__c);
[all …]
D_complex.c117 _CharT __c; variable
119 __is >> __c;
120 if (_Traits::eq(__c, __wpunct[0])) { // Left paren
121 __is >> __re >> __c;
122 if (_Traits::eq(__c, __wpunct[1])) // Comma
123 __is >> __im >> __c;
124 if (!_Traits::eq(__c, __wpunct[2])) // Right paren
128 __is.putback(__c);
D_num_get.c38 inline bool _STLP_CALL __get_fdigit(char __c, const char*) in __get_fdigit() argument
39 { return __c >= '0' && __c <= '9'; } in __get_fdigit()
41 inline bool _STLP_CALL __get_fdigit_or_sep(char& __c, char __sep, const char *__digits) { in __get_fdigit_or_sep() argument
42 if (__c == __sep) { in __get_fdigit_or_sep()
43 __c = ',' ; in __get_fdigit_or_sep()
47 return __get_fdigit(__c, __digits); in __get_fdigit_or_sep()
62 _CharT __c = *__in_ite; in __get_base_or_zero() local
64 if (__c == __atoms[1] /* __xminus_char */ ) { in __get_base_or_zero()
68 else if (__c == __atoms[0] /* __xplus_char */ ) in __get_base_or_zero()
132 const _CharT __c = *__first; in __get_integer() local
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/solaris/
Dxlocale.c34 wint_t btowc_l(int __c, locale_t __l) { in btowc_l() argument
36 return __l->lc_ctype->cmapp->core.user_api->btowc(__l->lc_ctype->cmapp, __c); in btowc_l()
39 int wctob_l(wint_t __c, locale_t __l) { in wctob_l() argument
41 return __l->lc_ctype->cmapp->core.user_api->wctob(__l->lc_ctype->cmapp, __c); in wctob_l()
113 int is##ctype##_l(int __c, locale_t __l) { \
114 if ((__c < 0) || (__c > 255)) return 0;\
116 return __l->lc_ctype->mask[__c] & m;\
118 int isw##ctype##_l(wchar_t __c, locale_t __l) { \
120 return __l->lc_ctype->core.user_api->iswctype(__l->lc_ctype, __c, m);\
136 int iswctype_l(wint_t __c, wctype_t __m, locale_t __l) { in LOCALE_ISCTYPE()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/patches.android/
D0007-Fix-libc-compiler-error-when-calling-std-feof.patch32 …inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putc(int __c, FILE* __stream) {return putc(__c, __st…
34 …inline _LIBCPP_INLINE_VISIBILITY int putc(int __c, FILE* __stream) {return __libcpp_putc(__c, __st…
38 +inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putchar(int __c) {return putchar(__c);}
40 +inline _LIBCPP_INLINE_VISIBILITY int putchar(int __c) {return __libcpp_putchar(__c);}
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.rvalue/
DCharT_pointer.pass.cpp41 overflow(typename base::int_type __c = base::traits_type::eof()) in overflow() argument
43 if (__c != base::traits_type::eof()) in overflow()
46 str_.push_back(__c); in overflow()
52 return __c; in overflow()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/
Dios_base.pass.cpp37 overflow(typename base::int_type __c = base::traits_type::eof()) in overflow() argument
39 if (__c != base::traits_type::eof()) in overflow()
42 str_.push_back(__c); in overflow()
48 return __c; in overflow()
Dostream.pass.cpp38 overflow(typename base::int_type __c = base::traits_type::eof()) in overflow() argument
40 if (__c != base::traits_type::eof()) in overflow()
43 str_.push_back(__c); in overflow()
49 return __c; in overflow()
Dbasic_ios.pass.cpp38 overflow(typename base::int_type __c = base::traits_type::eof()) in overflow() argument
40 if (__c != base::traits_type::eof()) in overflow()
43 str_.push_back(__c); in overflow()
49 return __c; in overflow()
Dstreambuf.pass.cpp44 overflow(typename base::int_type __c = base::traits_type::eof()) in overflow() argument
46 if (__c != base::traits_type::eof()) in overflow()
49 str_.push_back(__c); in overflow()
55 return __c; in overflow()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/
Dstreambuf.pass.cpp44 overflow(typename base::int_type __c = base::traits_type::eof()) in overflow() argument
46 if (__c != base::traits_type::eof()) in overflow()
49 str_.push_back(__c); in overflow()
55 return __c; in overflow()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.manip/
Dends.pass.cpp38 overflow(typename base::int_type __c = base::traits_type::eof()) in overflow() argument
40 if (__c != base::traits_type::eof()) in overflow()
43 str_.push_back(__c); in overflow()
49 return __c; in overflow()
Dendl.pass.cpp40 overflow(typename base::int_type __c = base::traits_type::eof()) in overflow() argument
42 if (__c != base::traits_type::eof()) in overflow()
45 str_.push_back(__c); in overflow()
51 return __c; in overflow()

123456