/ndk/sources/cxx-stl/stlport/stlport/stl/ |
H A D | _ctype.h | 78 bool is(mask __m, char __c) const argument 79 { return ((*(_M_ctype_table+(unsigned char)__c)) & __m) != 0; } 88 const char* scan_is(mask __m, const char* __low, const char* __high) const; 89 const char* scan_not(mask __m, const char* __low, const char* __high) const; 135 mask __m; member in struct:ctype::_Is_mask 136 _Is_mask(mask __x): __m(__x) {} 137 bool operator()(char __c) {return (__m & (unsigned char) __c) != 0;} 183 bool is(mask __m, wchar_t __c) const argument 184 { return do_is(__m, __c); } 190 const wchar_t* scan_is(mask __m, argument 194 scan_not(mask __m, const wchar_t* __low, const wchar_t* __high) const argument [all...] |
H A D | _iomanip.h | 57 _Ios_Setf_Manip(ios_base::fmtflags __f, ios_base::fmtflags __m) argument 58 : _M_flag(__f), _M_mask(__m), _M_two_args(true) {} 146 const _STLP_PRIV _Setfill_Manip<_CharT2>& __m) { 147 __os.fill(__m._M_c); 154 const _STLP_PRIV _Setfill_Manip<_CharT2>& __m) { 155 __is.fill(__m._M_c); 145 operator <<(basic_ostream<_CharT, _Traits>& __os, const _STLP_PRIV _Setfill_Manip<_CharT2>& __m) argument 153 operator >>(basic_istream<_CharT, _Traits>& __is, const _STLP_PRIV _Setfill_Manip<_CharT2>& __m) argument
|
H A D | _fstream.h | 168 _Self* open(const char* __s, ios_base::openmode __m) { argument 169 return _M_base._M_open(__s, __m) ? this : 0; 174 _Self* open(const char* __s, ios_base::openmode __m, argument 176 return _M_base._M_open(__s, __m, __protection) ? this : 0; 477 basic_ifstream(const char* __s, ios_base::openmode __m, argument 481 if (!_M_buf.open(__s, __m | ios_base::in, __protection)) 557 basic_ofstream(const char* __s, ios_base::openmode __m, long __protection) : argument 560 if (!_M_buf.open(__s, __m | ios_base::out, __protection)) 638 basic_fstream(const char* __s, ios_base::openmode __m, long __protection) : argument 641 if (!_M_buf.open(__s, __m, __protectio [all...] |
H A D | _algo.c | 432 _EuclideanRingElement __gcd(_EuclideanRingElement __m, argument 435 _EuclideanRingElement __t = __m % __n; 436 __m = __n; 439 return __m; 564 _Distance __m = (min) (__n, __remaining); local 566 while (__m > 0) { 567 if (_STLP_PRIV __random_number(__remaining) < __m) { 570 --__m; 587 _Distance __m = (min) (__n, __remaining); local 589 while (__m > 608 _Distance __m = 0; local 630 _Distance __m = 0; local [all...] |
H A D | _valarray.c | 165 valarray<_Tp> valarray<_Tp>::cshift(int __m) const { 168 // Reduce __m to an equivalent number in the range [0, size()). We 171 long __n = __m;
|
H A D | _string.c | 401 const_iterator __m = __f + __len; local 402 _M_copy(__f, __m, __first); 403 _M_insert(__last, __m, __l, __self_ref ); 405 const_iterator __m = __f + __len; local 409 _M_insert(__last, __m, __l, true); 412 const_iterator __m = __f + __len; local 414 _M_insert(__last, __m, __l, true);
|
H A D | _istream.c | 1038 streamsize __m = __max_chars(_Num, __n); 1040 if (__avail >= __m) { // We have more characters than we need. 1041 const _CharT* __last = __buf->_M_gptr() + __STATIC_CAST(ptrdiff_t, __m);
|
/ndk/sources/cxx-stl/stlport/src/ |
H A D | ctype.cpp | 304 _Ctype_is_mask(ctype_base::mask __m, const ctype_base::mask* __t) : _Mask(__m), _M_table(__t) {} 312 _Ctype_not_mask(ctype_base::mask __m, const ctype_base::mask* __t) : _Mask(__m), _M_table(__t) {} 331 ctype<char>::scan_is(ctype_base::mask __m, const char* __low, const char* __high) const 332 { return _STLP_STD::find_if(__low, __high, _Ctype_is_mask(__m, _M_ctype_table)); } 338 ctype<char>::scan_not(ctype_base::mask __m, const char* __low, const char* __high) const 339 { return _STLP_STD::find_if(__low, __high, _Ctype_not_mask(__m, _M_ctype_table)); }
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/solaris/ |
H A D | xlocale.c | 136 int iswctype_l(wint_t __c, wctype_t __m, locale_t __l) { 138 return __l->lc_ctype->core.user_api->iswctype(__l->lc_ctype, __c, __m);\
|