HomeSort by relevance Sort by last modified time
    Searched defs:__c (Results 101 - 125 of 180) sorted by null

1 2 3 45 6 7 8

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/
sso_string_base.h 121 _M_construct_aux_2(size_type __req, _CharT __c)
122 { _M_construct(__req, __c); }
146 _M_construct(size_type __req, _CharT __c);
211 __sso_string_base(size_type __n, _CharT __c, const _Alloc& __a);
394 __sso_string_base(size_type __n, _CharT __c, const _Alloc& __a)
396 { _M_construct(__n, __c); }
488 _M_construct(size_type __n, _CharT __c)
497 this->_S_assign(_M_data(), __n, __c); local
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
sso_string_base.h 140 _M_construct(size_type __req, _CharT __c);
205 __sso_string_base(size_type __n, _CharT __c, const _Alloc& __a);
388 __sso_string_base(size_type __n, _CharT __c, const _Alloc& __a)
390 { _M_construct(__n, __c); }
482 _M_construct(size_type __n, _CharT __c)
491 this->_S_assign(_M_data(), __n, __c); local
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_num_get.c 38 inline bool _STLP_CALL __get_fdigit(char __c, const char*)
39 { return __c >= '0' && __c <= '9'; }
41 inline bool _STLP_CALL __get_fdigit_or_sep(char& __c, char __sep, const char *__digits) {
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 == __atoms[0] /* __xplus_char */
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...]
_sstream.c 107 int_type __c = _Traits::to_int_type(*this->gptr()); local
109 return __c;
117 basic_stringbuf<_CharT, _Traits, _Alloc>::pbackfail(int_type __c) {
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)
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/debug/
_iterator.h 103 __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) :
140 __owned_link(__c), _M_iterator(*__REINTERPRET_CAST(const _Nonconst_iterator *, &__it)) {
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/
sso_string_base.h 140 _M_construct(size_type __req, _CharT __c);
205 __sso_string_base(size_type __n, _CharT __c, const _Alloc& __a);
388 __sso_string_base(size_type __n, _CharT __c, const _Alloc& __a)
390 { _M_construct(__n, __c); }
482 _M_construct(size_type __n, _CharT __c)
491 this->_S_assign(_M_data(), __n, __c); local
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_num_get.c 38 inline bool _STLP_CALL __get_fdigit(char __c, const char*)
39 { return __c >= '0' && __c <= '9'; }
41 inline bool _STLP_CALL __get_fdigit_or_sep(char& __c, char __sep, const char *__digits) {
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 == __atoms[0] /* __xplus_char */
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...]
_sstream.c 107 int_type __c = _Traits::to_int_type(*this->gptr()); local
109 return __c;
117 basic_stringbuf<_CharT, _Traits, _Alloc>::pbackfail(int_type __c) {
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)
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/debug/
_iterator.h 103 __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) :
140 __owned_link(__c), _M_iterator(*__REINTERPRET_CAST(const _Nonconst_iterator *, &__it)) {
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/
sso_string_base.h 140 _M_construct(size_type __req, _CharT __c);
205 __sso_string_base(size_type __n, _CharT __c, const _Alloc& __a);
388 __sso_string_base(size_type __n, _CharT __c, const _Alloc& __a)
390 { _M_construct(__n, __c); }
482 _M_construct(size_type __n, _CharT __c)
491 this->_S_assign(_M_data(), __n, __c); local
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_num_get.c 38 inline bool _STLP_CALL __get_fdigit(char __c, const char*)
39 { return __c >= '0' && __c <= '9'; }
41 inline bool _STLP_CALL __get_fdigit_or_sep(char& __c, char __sep, const char *__digits) {
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 == __atoms[0] /* __xplus_char */
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...]
_sstream.c 107 int_type __c = _Traits::to_int_type(*this->gptr()); local
109 return __c;
117 basic_stringbuf<_CharT, _Traits, _Alloc>::pbackfail(int_type __c) {
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)
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/debug/
_iterator.h 103 __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) :
140 __owned_link(__c), _M_iterator(*__REINTERPRET_CAST(const _Nonconst_iterator *, &__it)) {
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/
sso_string_base.h 140 _M_construct(size_type __req, _CharT __c);
205 __sso_string_base(size_type __n, _CharT __c, const _Alloc& __a);
388 __sso_string_base(size_type __n, _CharT __c, const _Alloc& __a)
390 { _M_construct(__n, __c); }
482 _M_construct(size_type __n, _CharT __c)
491 this->_S_assign(_M_data(), __n, __c); local
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
sso_string_base.h 121 _M_construct_aux_2(size_type __req, _CharT __c)
122 { _M_construct(__req, __c); }
146 _M_construct(size_type __req, _CharT __c);
211 __sso_string_base(size_type __n, _CharT __c, const _Alloc& __a);
394 __sso_string_base(size_type __n, _CharT __c, const _Alloc& __a)
396 { _M_construct(__n, __c); }
488 _M_construct(size_type __n, _CharT __c)
497 this->_S_assign(_M_data(), __n, __c); local
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
sso_string_base.h 114 _M_construct_aux_2(size_type __req, _CharT __c)
115 { _M_construct(__req, __c); }
139 _M_construct(size_type __req, _CharT __c);
190 __sso_string_base(size_type __n, _CharT __c, const _Alloc& __a);
373 __sso_string_base(size_type __n, _CharT __c, const _Alloc& __a)
375 { _M_construct(__n, __c); }
467 _M_construct(size_type __n, _CharT __c)
476 this->_S_assign(_M_data(), __n, __c); local
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_num_get.c 38 inline bool _STLP_CALL __get_fdigit(char __c, const char*)
39 { return __c >= '0' && __c <= '9'; }
41 inline bool _STLP_CALL __get_fdigit_or_sep(char& __c, char __sep, const char *__digits) {
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 == __atoms[0] /* __xplus_char */
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...]
_sstream.c 107 int_type __c = _Traits::to_int_type(*this->gptr()); local
109 return __c;
117 basic_stringbuf<_CharT, _Traits, _Alloc>::pbackfail(int_type __c) {
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)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/debug/
_iterator.h 103 __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) :
140 __owned_link(__c), _M_iterator(*__REINTERPRET_CAST(const _Nonconst_iterator *, &__it)) {
    [all...]
  /external/stlport/stlport/stl/
_fstream.h 415 int_type __c = traits_type::to_int_type(*__this->gptr()); local
416 return __c;
_string.c 180 basic_string<_CharT,_Traits,_Alloc>::append(size_type __n, _CharT __c) {
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) {
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);
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_fstream.h 415 int_type __c = traits_type::to_int_type(*__this->gptr()); local
416 return __c;
_string.c 180 basic_string<_CharT,_Traits,_Alloc>::append(size_type __n, _CharT __c) {
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) {
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);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
string2.h 119 __uint8_t __c = (__uint8_t) (c); \
125 __u->__ui = __c * 0x01010101; \
128 __u->__ui = __c * 0x01010101; \
131 __u->__ui = __c * 0x01010101; \
134 __u->__usi = (unsigned short int) __c * 0x0101; \
136 __u->__uc = (unsigned char) __c; \
140 __u->__ui = __c * 0x01010101; \
143 __u->__ui = __c * 0x01010101; \
146 __u->__ui = __c * 0x01010101; \
149 __u->__usi = (unsigned short int) __c * 0x0101;
251 unsigned char __c; member in union:__anon26182
348 char __c; member in union:__anon26183
530 char __c; member in union:__anon26185
622 char __c; member in union:__anon26186
714 char __c; member in union:__anon26187
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
regex_nfa.h 126 _CharMatcher(char_type __c, const _TraitsT& __t = _TraitsT())
127 : _M_traits(__t), _M_c(_M_traits.translate(__c))
134 _CursorT __c = static_cast<_CursorT>(__pc); local
135 return _M_traits.translate(__c._M_current()) == _M_c;
158 _CursorT __c = static_cast<_CursorT>(__pc); local
163 _M_add_char(_CharT __c)

Completed in 2140 milliseconds

1 2 3 45 6 7 8