Searched defs:__m (Results 1 - 5 of 5) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_iomanip.h57 _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_ctype.h78 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_string.c401 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_fstream.h168 _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.c432 _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...]

Completed in 85 milliseconds