HomeSort by relevance Sort by last modified time
    Searched refs:__val (Results 126 - 150 of 494) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_algobase.c 113 const _Tp& __val,
118 if (*__first == __val) return __first;
121 if (*__first == __val) return __first;
124 if (*__first == __val) return __first;
127 if (*__first == __val) return __first;
133 if (*__first == __val) return __first;
136 if (*__first == __val) return __first;
139 if (*__first == __val) return __first;
148 __find(char* __first, char* __last, char __val, const random_access_iterator_tag &) {
149 void *res = memchr(__first, __val, __last - __first)
    [all...]
_istream.h 101 _Self& operator>> (short& __val);
102 _Self& operator>> (int& __val);
103 _Self& operator>> (unsigned short& __val);
104 _Self& operator>> (unsigned int& __val);
105 _Self& operator>> (long& __val);
106 _Self& operator>> (unsigned long& __val);
108 _Self& operator>> (_STLP_LONG_LONG& __val);
109 _Self& operator>> (unsigned _STLP_LONG_LONG& __val);
111 _Self& operator>> (float& __val);
112 _Self& operator>> (double& __val);
    [all...]
_algobase.h 411 void __fill_fwd(_ForwardIter __first, _ForwardIter __last, const _Tp& __val) {
413 *__first = __val;
417 inline void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val,
419 _STLP_PRIV __fill_fwd(__first, __last, __val);
425 void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val,
427 _STLP_PRIV __fill_fwd(__first, __last, __val);
432 void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val,
434 _STLP_PRIV __fill_fwd(__first, __last, __val);
440 void __fill(_RandomAccessIter __first, _RandomAccessIter __last, const _Tp& __val,
443 *__first = __val;
    [all...]
_num_put.c 421 bool __val) const {
424 return do_put(__s, __f, __fill, __STATIC_CAST(long, __val));
426 return _STLP_PRIV __do_put_bool(__s, __f, __fill, __val);
433 long __val) const
434 { return _STLP_PRIV __do_put_integer(__s, __f, __fill, __val); }
439 unsigned long __val) const
440 { return _STLP_PRIV __do_put_integer(__s, __f, __fill, __val); }
445 double __val) const
446 { return _STLP_PRIV __do_put_float(__s, __f, __fill, __val); }
452 long double __val) cons
    [all...]
_algo.h 106 count(_InputIter __first, _InputIter __last, const _Tp& __val, _Size& __n) {
109 if (*__first == __val)
127 // search_n. Search for __count consecutive copies of __val.
130 _Integer __count, const _Tp& __val);
133 _Integer __count, const _Tp& __val, _BinaryPred __binary_pred);
239 remove_copy(_InputIter __first, _InputIter __last,_OutputIter __result, const _Tp& __val) {
242 if (!(*__first == __val)) {
265 remove(_ForwardIter __first, _ForwardIter __last, const _Tp& __val) {
267 __first = find(__first, __last, __val);
272 return remove_copy(++__next, __last, __first, __val);
    [all...]
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/
_algobase.c 113 const _Tp& __val,
118 if (*__first == __val) return __first;
121 if (*__first == __val) return __first;
124 if (*__first == __val) return __first;
127 if (*__first == __val) return __first;
133 if (*__first == __val) return __first;
136 if (*__first == __val) return __first;
139 if (*__first == __val) return __first;
148 __find(char* __first, char* __last, char __val, const random_access_iterator_tag &) {
149 void *res = memchr(__first, __val, __last - __first)
    [all...]
_istream.h 101 _Self& operator>> (short& __val);
102 _Self& operator>> (int& __val);
103 _Self& operator>> (unsigned short& __val);
104 _Self& operator>> (unsigned int& __val);
105 _Self& operator>> (long& __val);
106 _Self& operator>> (unsigned long& __val);
108 _Self& operator>> (_STLP_LONG_LONG& __val);
109 _Self& operator>> (unsigned _STLP_LONG_LONG& __val);
111 _Self& operator>> (float& __val);
112 _Self& operator>> (double& __val);
    [all...]
_algobase.h 411 void __fill_fwd(_ForwardIter __first, _ForwardIter __last, const _Tp& __val) {
413 *__first = __val;
417 inline void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val,
419 _STLP_PRIV __fill_fwd(__first, __last, __val);
425 void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val,
427 _STLP_PRIV __fill_fwd(__first, __last, __val);
432 void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val,
434 _STLP_PRIV __fill_fwd(__first, __last, __val);
440 void __fill(_RandomAccessIter __first, _RandomAccessIter __last, const _Tp& __val,
443 *__first = __val;
    [all...]
_num_put.c 421 bool __val) const {
424 return do_put(__s, __f, __fill, __STATIC_CAST(long, __val));
426 return _STLP_PRIV __do_put_bool(__s, __f, __fill, __val);
433 long __val) const
434 { return _STLP_PRIV __do_put_integer(__s, __f, __fill, __val); }
439 unsigned long __val) const
440 { return _STLP_PRIV __do_put_integer(__s, __f, __fill, __val); }
445 double __val) const
446 { return _STLP_PRIV __do_put_float(__s, __f, __fill, __val); }
452 long double __val) cons
    [all...]
  /external/stlport/stlport/stl/
_istream.h 101 _Self& operator>> (short& __val);
102 _Self& operator>> (int& __val);
103 _Self& operator>> (unsigned short& __val);
104 _Self& operator>> (unsigned int& __val);
105 _Self& operator>> (long& __val);
106 _Self& operator>> (unsigned long& __val);
108 _Self& operator>> (_STLP_LONG_LONG& __val);
109 _Self& operator>> (unsigned _STLP_LONG_LONG& __val);
111 _Self& operator>> (float& __val);
112 _Self& operator>> (double& __val);
    [all...]
_algobase.h 411 void __fill_fwd(_ForwardIter __first, _ForwardIter __last, const _Tp& __val) {
413 *__first = __val;
417 inline void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val,
419 _STLP_PRIV __fill_fwd(__first, __last, __val);
425 void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val,
427 _STLP_PRIV __fill_fwd(__first, __last, __val);
432 void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val,
434 _STLP_PRIV __fill_fwd(__first, __last, __val);
440 void __fill(_RandomAccessIter __first, _RandomAccessIter __last, const _Tp& __val,
443 *__first = __val;
    [all...]
_num_put.c 421 bool __val) const {
424 return do_put(__s, __f, __fill, __STATIC_CAST(long, __val));
426 return _STLP_PRIV __do_put_bool(__s, __f, __fill, __val);
433 long __val) const
434 { return _STLP_PRIV __do_put_integer(__s, __f, __fill, __val); }
439 unsigned long __val) const
440 { return _STLP_PRIV __do_put_integer(__s, __f, __fill, __val); }
445 double __val) const
446 { return _STLP_PRIV __do_put_float(__s, __f, __fill, __val); }
452 long double __val) cons
    [all...]
_algo.h 106 count(_InputIter __first, _InputIter __last, const _Tp& __val, _Size& __n) {
109 if (*__first == __val)
127 // search_n. Search for __count consecutive copies of __val.
130 _Integer __count, const _Tp& __val);
133 _Integer __count, const _Tp& __val, _BinaryPred __binary_pred);
239 remove_copy(_InputIter __first, _InputIter __last,_OutputIter __result, const _Tp& __val) {
242 if (!(*__first == __val)) {
265 remove(_ForwardIter __first, _ForwardIter __last, const _Tp& __val) {
267 __first = find(__first, __last, __val);
272 return remove_copy(++__next, __last, __first, __val);
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_istream.h 101 _Self& operator>> (short& __val);
102 _Self& operator>> (int& __val);
103 _Self& operator>> (unsigned short& __val);
104 _Self& operator>> (unsigned int& __val);
105 _Self& operator>> (long& __val);
106 _Self& operator>> (unsigned long& __val);
108 _Self& operator>> (_STLP_LONG_LONG& __val);
109 _Self& operator>> (unsigned _STLP_LONG_LONG& __val);
111 _Self& operator>> (float& __val);
112 _Self& operator>> (double& __val);
    [all...]
_algobase.h 411 void __fill_fwd(_ForwardIter __first, _ForwardIter __last, const _Tp& __val) {
413 *__first = __val;
417 inline void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val,
419 _STLP_PRIV __fill_fwd(__first, __last, __val);
425 void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val,
427 _STLP_PRIV __fill_fwd(__first, __last, __val);
432 void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val,
434 _STLP_PRIV __fill_fwd(__first, __last, __val);
440 void __fill(_RandomAccessIter __first, _RandomAccessIter __last, const _Tp& __val,
443 *__first = __val;
    [all...]
_num_put.c 421 bool __val) const {
424 return do_put(__s, __f, __fill, __STATIC_CAST(long, __val));
426 return _STLP_PRIV __do_put_bool(__s, __f, __fill, __val);
433 long __val) const
434 { return _STLP_PRIV __do_put_integer(__s, __f, __fill, __val); }
439 unsigned long __val) const
440 { return _STLP_PRIV __do_put_integer(__s, __f, __fill, __val); }
445 double __val) const
446 { return _STLP_PRIV __do_put_float(__s, __f, __fill, __val); }
452 long double __val) cons
    [all...]
_algo.h 106 count(_InputIter __first, _InputIter __last, const _Tp& __val, _Size& __n) {
109 if (*__first == __val)
127 // search_n. Search for __count consecutive copies of __val.
130 _Integer __count, const _Tp& __val);
133 _Integer __count, const _Tp& __val, _BinaryPred __binary_pred);
239 remove_copy(_InputIter __first, _InputIter __last,_OutputIter __result, const _Tp& __val) {
242 if (!(*__first == __val)) {
265 remove(_ForwardIter __first, _ForwardIter __last, const _Tp& __val) {
267 __first = find(__first, __last, __val);
272 return remove_copy(++__next, __last, __first, __val);
    [all...]
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_istream.h 101 _Self& operator>> (short& __val);
102 _Self& operator>> (int& __val);
103 _Self& operator>> (unsigned short& __val);
104 _Self& operator>> (unsigned int& __val);
105 _Self& operator>> (long& __val);
106 _Self& operator>> (unsigned long& __val);
108 _Self& operator>> (_STLP_LONG_LONG& __val);
109 _Self& operator>> (unsigned _STLP_LONG_LONG& __val);
111 _Self& operator>> (float& __val);
112 _Self& operator>> (double& __val);
    [all...]
_algobase.h 411 void __fill_fwd(_ForwardIter __first, _ForwardIter __last, const _Tp& __val) {
413 *__first = __val;
417 inline void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val,
419 _STLP_PRIV __fill_fwd(__first, __last, __val);
425 void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val,
427 _STLP_PRIV __fill_fwd(__first, __last, __val);
432 void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp& __val,
434 _STLP_PRIV __fill_fwd(__first, __last, __val);
440 void __fill(_RandomAccessIter __first, _RandomAccessIter __last, const _Tp& __val,
443 *__first = __val;
    [all...]
_num_put.c 421 bool __val) const {
424 return do_put(__s, __f, __fill, __STATIC_CAST(long, __val));
426 return _STLP_PRIV __do_put_bool(__s, __f, __fill, __val);
433 long __val) const
434 { return _STLP_PRIV __do_put_integer(__s, __f, __fill, __val); }
439 unsigned long __val) const
440 { return _STLP_PRIV __do_put_integer(__s, __f, __fill, __val); }
445 double __val) const
446 { return _STLP_PRIV __do_put_float(__s, __f, __fill, __val); }
452 long double __val) cons
    [all...]
_algo.h 106 count(_InputIter __first, _InputIter __last, const _Tp& __val, _Size& __n) {
109 if (*__first == __val)
127 // search_n. Search for __count consecutive copies of __val.
130 _Integer __count, const _Tp& __val);
133 _Integer __count, const _Tp& __val, _BinaryPred __binary_pred);
239 remove_copy(_InputIter __first, _InputIter __last,_OutputIter __result, const _Tp& __val) {
242 if (!(*__first == __val)) {
265 remove(_ForwardIter __first, _ForwardIter __last, const _Tp& __val) {
267 __first = find(__first, __last, __val);
272 return remove_copy(++__next, __last, __first, __val);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
new_allocator.h 104 construct(pointer __p, const _Tp& __val)
105 { ::new((void *)__p) _Tp(__val); }
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/
new_allocator.h 104 construct(pointer __p, const _Tp& __val)
105 { ::new((void *)__p) _Tp(__val); }
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/
new_allocator.h 104 construct(pointer __p, const _Tp& __val)
105 { ::new((void *)__p) _Tp(__val); }
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/ext/
new_allocator.h 104 construct(pointer __p, const _Tp& __val)
105 { ::new((void *)__p) _Tp(__val); }

Completed in 301 milliseconds

1 2 3 4 56 7 8 91011>>