Searched defs:__c (Results 26 - 45 of 45) sorted by relevance

12

/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_sstream.c107 int_type __c = _Traits::to_int_type(*this->gptr()); local
109 return __c;
117 basic_stringbuf<_CharT, _Traits, _Alloc>::pbackfail(int_type __c) { argument
119 if (!_Traits::eq_int_type(__c, _Traits::eof())) {
120 if (_Traits::eq(_Traits::to_char_type(__c), this->gptr()[-1])) {
122 return __c;
126 *this->gptr() = _Traits::to_char_type(__c);
127 return __c;
134 return _Traits::not_eof(__c);
142 __BSB_int_type__ basic_stringbuf<_CharT, _Traits, _Alloc>::overflow(int_type __c) argument
213 _M_xsputnc(char_type __c, streamsize __n) argument
[all...]
H A D_streambuf.h188 // Extension: writes up to __n copies of __c. Return value is the number
190 virtual streamsize _M_xsputnc(char_type __c, streamsize __n);
198 int_type sputc(char_type __c) { argument
199 return ((_M_pnext < _M_pend) ? _Traits::to_int_type(*_M_pnext++ = __c)
200 : this->overflow(_Traits::to_int_type(__c)));
207 // Extension: write __n copies of __c.
208 streamsize _M_sputnc(char_type __c, streamsize __n) argument
209 { return this->_M_xsputnc(__c, __n); }
241 int_type sputbackc(char_type __c) { argument
242 return ((_M_gbegin < _M_gnext) && _Traits::eq(__c, *(_M_gnex
[all...]
H A D_time_facets.c160 char __c = *__format; local
161 if (__c == '#') { //MS extension
163 __c = *__format;
166 switch (__c) {
406 char __c = _Ct.narrow(*__pat, 0); local
407 if (__c == '%') {
410 __c = _Ct.narrow(*__pat++, 0);
411 if (__c == '#') { // MS extension
412 __mod = __c;
413 __c
[all...]
H A D_valarray.h490 inline valarray<_Tp> _STLP_CALL operator*(const valarray<_Tp>& __x, const _Tp& __c) { argument
494 __tmp[__i] = __x[__i] * __c;
499 inline valarray<_Tp> _STLP_CALL operator*(const _Tp& __c, const valarray<_Tp>& __x) { argument
503 __tmp[__i] = __c * __x[__i];
508 inline valarray<_Tp> _STLP_CALL operator/(const valarray<_Tp>& __x, const _Tp& __c) { argument
512 __tmp[__i] = __x[__i] / __c;
517 inline valarray<_Tp> _STLP_CALL operator/(const _Tp& __c, const valarray<_Tp>& __x) { argument
521 __tmp[__i] = __c / __x[__i];
526 inline valarray<_Tp> _STLP_CALL operator%(const valarray<_Tp>& __x, const _Tp& __c) { argument
530 __tmp[__i] = __x[__i] % __c;
535 operator %(const _Tp& __c, const valarray<_Tp>& __x) argument
544 operator +(const valarray<_Tp>& __x, const _Tp& __c) argument
553 operator +(const _Tp& __c, const valarray<_Tp>& __x) argument
562 operator -(const valarray<_Tp>& __x, const _Tp& __c) argument
571 operator -(const _Tp& __c, const valarray<_Tp>& __x) argument
580 operator ^(const valarray<_Tp>& __x, const _Tp& __c) argument
589 operator ^(const _Tp& __c, const valarray<_Tp>& __x) argument
598 operator &(const valarray<_Tp>& __x, const _Tp& __c) argument
607 operator &(const _Tp& __c, const valarray<_Tp>& __x) argument
616 operator |(const valarray<_Tp>& __x, const _Tp& __c) argument
625 operator |(const _Tp& __c, const valarray<_Tp>& __x) argument
634 operator <<(const valarray<_Tp>& __x, const _Tp& __c) argument
643 operator <<(const _Tp& __c, const valarray<_Tp>& __x) argument
652 operator >>(const valarray<_Tp>& __x, const _Tp& __c) argument
661 operator >>(const _Tp& __c, const valarray<_Tp>& __x) argument
[all...]
H A Dchar_traits.h160 static const char_type* _STLP_CALL find(const char_type* __s, size_t __n, const char_type& __c) { argument
162 if (eq(*__s, __c))
175 static char_type* _STLP_CALL assign(char_type* __s, size_t __n, char_type __c) { argument
177 __s[__i] = __c;
181 static int_type _STLP_CALL not_eof(const int_type& __c) argument
182 { return !eq_int_type(__c, eof()) ? __c : __STATIC_CAST(int_type, 0); }
184 static char_type _STLP_CALL to_char_type(const int_type& __c) argument
185 { return (char_type)__c; }
187 static int_type _STLP_CALL to_int_type(const char_type& __c) argument
219 to_char_type(const int& __c) argument
222 to_int_type(const char& __c) argument
234 assign(char* __s, size_t __n, char __c) argument
260 assign(wchar_t* __s, size_t __n, wchar_t __c) argument
[all...]
H A D_fstream.c157 basic_filebuf<_CharT, _Traits>::pbackfail(int_type __c) { argument
167 (traits_type::eq_int_type(__c, __eof) ||
168 traits_type::eq(traits_type::to_char_type(__c), this->gptr()[-1]) ||
171 if (traits_type::eq_int_type(__c, __eof) ||
172 traits_type::eq(traits_type::to_char_type(__c), *this->gptr()))
175 else if (!traits_type::eq_int_type(__c, __eof)) {
197 *this->gptr() = traits_type::to_char_type(__c);
198 return __c;
202 // character __c (unless __c i
208 overflow(int_type __c) argument
[all...]
H A D_num_get.c38 inline bool _STLP_CALL __get_fdigit(char __c, const char*) argument
39 { return __c >= '0' && __c <= '9'; }
41 inline bool _STLP_CALL __get_fdigit_or_sep(char& __c, char __sep, const char *__digits) { argument
42 if (__c == __sep) {
43 __c = ',' ;
47 return __get_fdigit(__c, __digits);
62 _CharT __c = *__in_ite; local
64 if (__c == __atoms[1] /* __xminus_char */ ) {
68 else if (__c
132 const _CharT __c = *__first; local
192 const _CharT __c = *__first; local
300 _CharT __c = *__first; local
319 _CharT __c = *__first; local
342 _CharT __c = *__first; local
459 _CharT __c = *__in_ite; local
[all...]
H A D_string.c180 basic_string<_CharT,_Traits,_Alloc>::append(size_type __n, _CharT __c) { argument
186 _STLP_PRIV __uninitialized_fill_n(this->_M_finish + 1, __n - 1, __c);
188 _Traits::assign(*end(), __c); local
222 basic_string<_CharT,_Traits,_Alloc>::assign(size_type __n, _CharT __c) { argument
224 _Traits::assign(this->_M_Start(), __n, __c);
229 _Traits::assign(this->_M_Start(), size(), __c);
230 append(__n - size(), __c);
233 _Self __str(__n, __c);
257 _CharT __c) {
262 _Traits::assign(*__p, __c);
256 _M_insert_aux(_CharT* __p, _CharT __c) argument
280 insert(iterator __pos, size_t __n, _CharT __c) argument
372 replace(iterator __first, iterator __last, size_type __n, _CharT __c) argument
438 find(_CharT __c, size_type __pos) const argument
468 rfind(_CharT __c, size_type __pos) const argument
528 find_first_not_of(_CharT __c, size_type __pos) const argument
559 find_last_not_of(_CharT __c, size_type __pos) const argument
[all...]
H A D_string_workaround.h70 basic_string(size_type __n, _CharT __c, argument
72 : _STLP_NO_MEM_T_STRING_BASE(__n, __c, __a) {}
107 _Self& operator=(_CharT __c) { argument
108 _Base::operator=(__c);
157 _Self& operator+=(_CharT __c) { argument
158 _Base::operator+=(__c);
183 _Self& append(size_type __n, _CharT __c) { argument
184 _Base::append(__n, __c);
271 _Self& assign(size_type __n, _CharT __c) { argument
272 _Base::assign(__n, __c);
341 insert(size_type __pos, size_type __n, _CharT __c) argument
346 insert(iterator __p, _CharT __c) argument
349 insert(iterator __p, size_t __n, _CharT __c) argument
496 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) argument
524 replace(iterator __first, iterator __last, size_type __n, _CharT __c) argument
[all...]
H A D_fstream.h415 int_type __c = traits_type::to_int_type(*__this->gptr()); local
416 return __c;
H A D_string_sum.h130 _CharOnLeft operator += (_CharT __c) { return _CharOnLeft(*this, __c); } argument
143 _BString& append(size_type __n, _CharT __c) argument
144 {return _M_get_storage().append(__n, __c);}
154 _BString& assign(size_type __n, _CharT __c) {return _M_get_storage().assign(__n, __c);} argument
162 _BString& insert(size_type __pos, size_type __n, _CharT __c) {return _M_get_storage().insert(__pos, __n, __c);} argument
176 _BString& replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) argument
177 {return _M_get_storage().replace(__pos, __n1, __n2, __c);}
192 find(_CharT __c, size_type __pos = 0) const argument
197 rfind(_CharT __c, size_type __pos = _BString::npos) const argument
205 find_first_of(_CharT __c, size_type __pos = 0) const argument
214 find_last_of(_CharT __c, size_type __pos = _BString::npos) const argument
223 find_first_not_of(_CharT __c, size_type __pos = 0) const argument
232 find_last_not_of(_CharT __c, size_type __pos = _BString::npos) const argument
[all...]
H A D_rope.c173 const _RopeConcat* __c = __STATIC_CAST(const _RopeConcat*, __curr_rope); local
174 _RopeRep* __left = __c->_M_left;
180 __curr_rope = __c->_M_right;
215 const _RopeConcat* __c; local
229 __c = __STATIC_CAST(const _RopeConcat*, __current_node);
232 __node_start_pos -= __c->_M_left->_M_size._M_data;
241 __c = __STATIC_CAST(const _RopeConcat*, __current_node);
245 __node_start_pos += __c->_M_left->_M_size._M_data;
246 __current_node = __c->_M_right;
330 _RopeConcatenation* __c local
641 _RopeConcatenation* __c = __STATIC_CAST(_RopeConcatenation*, __base); local
785 _S_apply_to_pieces(_CharConsumer& __c, _Rope_RopeRep<_CharT, _Alloc> * __r, size_t __begin, size_t __end) argument
923 _RopeConcatenation* __c = __STATIC_CAST(_RopeConcatenation*, __r); local
959 _RopeConcatenation* __c = __STATIC_CAST(_RopeConcatenation*, __r); local
1069 _RopeConcatenation* __c = (_RopeConcatenation*)__r; local
1133 _RopeConcatenation* __c = (_RopeConcatenation*)__r; local
1184 _RopeConcatenation* __c = (_RopeConcatenation*)__r; local
[all...]
H A D_string.h237 basic_string(size_type __n, _CharT __c, argument
240 basic_string(size_type __n, _CharT __c)
242 this->_M_finish = _STLP_PRIV __uninitialized_fill_n(this->_M_Start(), __n, __c);
245 basic_string(size_type __n, _CharT __c, const allocator_type& __a)
248 this->_M_finish = _STLP_PRIV __uninitialized_fill_n(this->_M_Start(), __n, __c);
358 _Self& operator=(_CharT __c) argument
359 { return assign(__STATIC_CAST(size_type,1), __c); }
404 void resize(size_type __n, _CharT __c) { argument
408 append(__n - size(), __c);
453 _Self& operator+=(_CharT __c) { push_bac argument
534 push_back(_CharT __c) argument
649 insert(size_type __pos, size_type __n, _CharT __c) argument
658 insert(iterator __p, _CharT __c) argument
856 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) argument
984 find_first_of(_CharT __c, size_type __pos = 0) const argument
996 find_last_of(_CharT __c, size_type __pos = npos) const argument
[all...]
H A D_algo.c62 const _Tp& __median(const _Tp& __a, const _Tp& __b, const _Tp& __c) { argument
64 if (__b < __c)
66 else if (__a < __c)
67 return __c;
70 else if (__a < __c)
72 else if (__b < __c)
73 return __c;
83 __median(const _Tp& __a, const _Tp& __b, const _Tp& __c, _Compare __comp) { argument
86 if (__comp(__b, __c)) {
87 _STLP_VERBOSE_ASSERT(!__comp(__c, __
[all...]
H A D_rope.h672 _Rope_char_ref_proxy(_My_rope* __r, size_t __p, _CharT __c) argument
673 : _M_pos(__p), _M_current(__c), _M_current_valid(true), _M_root(__r) {}
675 _Self& operator= (_CharT __c);
677 _Self& operator= (const _Self& __c) { argument
678 return operator=((_CharT)__c);
1079 bool _S_apply_to_pieces(_CharConsumer& __c,
1187 _CharConsumer& __c) const
1188 { _S_apply_to_pieces(__c, _M_tree_ptr._M_data, __begin, __end); }
1394 rope(_CharT __c, const allocator_type& __a = allocator_type()) argument
1398 _Copy_Construct(__buf, __c);
1407 rope(size_t __n, _CharT __c, const allocator_type& __a = allocator_type()) argument
1685 append(_CharT __c) argument
1698 append(size_t __n, _CharT __c) argument
1738 insert(size_t __p, size_t __n, _CharT __c) argument
1759 insert(size_t __p, _CharT __c) argument
1764 _CharT __c = _CharT(); local
1797 replace(size_t __p, size_t __n, _CharT __c) argument
1826 replace(size_t __p, _CharT __c) argument
1872 insert(const iterator& __p, size_t __n, _CharT __c) argument
1874 insert(const iterator& __p, _CharT __c) argument
1896 replace(const iterator& __p, const iterator& __q, _CharT __c) argument
1917 replace(const iterator& __p, _CharT __c) argument
2304 __mutable_reference_at(crope& __c, size_t __i) argument
2308 __mutable_reference_at(wrope& __c, size_t __i) argument
[all...]
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
H A D_iterator.h103 __container_type* __c = __it._Get_container_ptr(); local
104 return (__c != 0) && ((__n == 1 && __it._M_iterator != __c->end() ) ||
105 (__n == -1 && __it._M_iterator != __c->begin()));
111 __container_type* __c = __it._Get_container_ptr(); local
112 if (__c == 0) return false;
113 ptrdiff_t __new_pos = (__it._M_iterator - __c->begin()) + __n;
114 return (__new_pos >= 0) && (__STATIC_CAST(typename __container_type::size_type, __new_pos) <= __c->size());
138 _DBG_iter_base(const __owned_list* __c, const _Const_iterator& __it) : argument
140 __owned_link(__c), _M_iterato
193 _DBG_iter_mid(const __owned_list* __c, const _Const_iterator& __it) argument
223 _DBG_iter(const __owned_list* __c, const _Const_iterator& __it) argument
[all...]
H A D_debug.h287 __owned_link(const __owned_list* __c) : _M_self(this), _M_owner(0), _M_next(0) argument
288 { __stl_debugger::_M_attach(__CONST_CAST(__owned_list*,__c), this); }
293 __owned_link(const __owned_list* __c) : _M_owner(0), _M_next(0)
294 { __stl_debugger::_M_attach(__CONST_CAST(__owned_list*,__c), this); }
H A D_string.h116 basic_string(size_type __n, _CharT __c, argument
118 : _M_non_dbg_impl(__n, __c, __a), _M_iter_list(&_M_non_dbg_impl) {}
178 _Self& operator=(_CharT __c) { argument
179 return assign(1, __c);
198 void resize(size_type __n, _CharT __c) { argument
203 _M_non_dbg_impl.resize(__n, __c);
240 _Self& operator+=(_CharT __c) { return append(1, __c); } argument
305 _Self& append(size_type __n, _CharT __c) { argument
307 _M_non_dbg_impl.append(__n, __c);
312 push_back(_CharT __c) argument
354 assign(size_type __n, _CharT __c) argument
419 insert(size_type __pos, size_type __n, _CharT __c) argument
426 insert(iterator __p, _CharT __c) argument
434 insert(iterator __p, size_t __n, _CharT __c) argument
548 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) argument
583 replace(iterator __f, iterator __l, size_type __n, _CharT __c) argument
707 find(_CharT __c, size_type __pos ) const argument
723 rfind(_CharT __c, size_type __pos = npos) const argument
739 find_first_of(_CharT __c, size_type __pos = 0) const argument
755 find_last_of(_CharT __c, size_type __pos = npos) const argument
771 find_first_not_of(_CharT __c, size_type __pos = 0) const argument
787 find_last_not_of(_CharT __c, size_type __pos = npos) const argument
[all...]
/ndk/tests/build/b9193874-neon/jni/
H A Db9193874-neon.c119 vmulq_lane_s32 (int32x4_t __a, int32x2_t __b, const int __c) argument
121 return (int32x4_t)__builtin_neon_vmul_lanev4si (__a, __b, __c, 1);
124 vmlal_lane_s16 (int32x4_t __a, int16x4_t __b, int16x4_t __c, const int __d) argument
126 return (int32x4_t)__builtin_neon_vmlal_lanev4hi (__a, __b, __c, __d, 1);
129 vqdmlal_lane_s16 (int32x4_t __a, int16x4_t __b, int16x4_t __c, const int __d) argument
131 return (int32x4_t)__builtin_neon_vqdmlal_lanev4hi (__a, __b, __c, __d, 1);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
H A Dlocale.cpp4741 __time_get_c_storage<char>::__c() const function in class:__time_get_c_storage
4749 __time_get_c_storage<wchar_t>::__c() const function in class:__time_get_c_storage

Completed in 314 milliseconds

12