Searched refs:__y (Results 1 - 25 of 43) sorted by relevance

12

/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_relops_cont.h8 const _STLP_TEMPLATE_CONTAINER& __y) {
9 return __x.size() == __y.size() &&
10 equal(__x.begin(), __x.end(), __y.begin());
16 const _STLP_TEMPLATE_CONTAINER& __y) {
18 __y.begin(), __y.end());
26 _STLP_TEMPLATE_CONTAINER& __y) {
27 __x.swap(__y);
7 operator ==(const _STLP_TEMPLATE_CONTAINER& __x, const _STLP_TEMPLATE_CONTAINER& __y) argument
15 operator <(const _STLP_TEMPLATE_CONTAINER& __x, const _STLP_TEMPLATE_CONTAINER& __y) argument
25 swap(_STLP_TEMPLATE_CONTAINER& __x, _STLP_TEMPLATE_CONTAINER& __y) argument
H A D_pair.h81 inline bool _STLP_CALL operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
82 { return __x.first == __y.first && __x.second == __y.second; }
85 inline bool _STLP_CALL operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { argument
86 return __x.first < __y.first ||
87 (!(__y.first < __x.first) && __x.second < __y.second);
92 inline bool _STLP_CALL operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
93 { return !(__x == __y); }
96 inline bool _STLP_CALL operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
100 operator <=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
104 operator >=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
110 make_pair(_T1 const& __x, _T2 const (&__y)[_Sz]) argument
115 make_pair(_T1 const (&__x)[_Sz], _T2 const& __y) argument
120 make_pair(_T1 const (&__x)[_Sz1], _T2 const (&__y)[_Sz2]) argument
128 make_pair(_T1 __x, _T2 __y) argument
137 operator !=(const _Tp& __x, const _Tp& __y) argument
141 operator >(const _Tp& __x, const _Tp& __y) argument
145 operator <=(const _Tp& __x, const _Tp& __y) argument
149 operator >=(const _Tp& __x, const _Tp& __y) argument
[all...]
H A D_tree.c62 _Rb_tree_node_base* __y = __x->_M_right; local
63 __x->_M_right = __y->_M_left;
64 if (__y->_M_left != 0)
65 __y->_M_left->_M_parent = __x;
66 __y->_M_parent = __x->_M_parent;
69 __root = __y;
71 __x->_M_parent->_M_left = __y;
73 __x->_M_parent->_M_right = __y;
74 __y->_M_left = __x;
75 __x->_M_parent = __y;
81 _Rb_tree_node_base* __y = __x->_M_left; local
103 _Rb_tree_node_base* __y = __x->_M_parent->_M_parent->_M_right; local
121 _Rb_tree_node_base* __y = __x->_M_parent->_M_parent->_M_left; local
147 _Rb_tree_node_base* __y = __z; local
285 _Base_ptr __y = _M_node->_M_parent; local
301 _Base_ptr __y = _M_node->_M_parent; local
388 _Base_ptr __y = &this->_M_header._M_data; local
406 _Base_ptr __y = &this->_M_header._M_data; local
637 _Base_ptr __y = _M_clone_node(__x); local
659 _Base_ptr __y = _S_left(__x); local
[all...]
H A D_string_operators.h30 const basic_string<_CharT,_Traits,_Alloc>& __y) {
35 _Str __result = _Str(_Reserve_t(), __s.size() + __y.size(), __s.get_allocator());
37 _Str __result(_Reserve_t(), __s.size() + __y.size(), __s.get_allocator());
40 __result.append(__y);
47 const basic_string<_CharT,_Traits,_Alloc>& __y) {
53 _Str __result = _Str(_Reserve_t(), __n + __y.size(), __y.get_allocator());
55 _Str __result(_Reserve_t(), __n + __y.size(), __y.get_allocator());
58 __result.append(__y);
29 operator +(const basic_string<_CharT,_Traits,_Alloc>& __s, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
46 operator +(const _CharT* __s, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
64 operator +(_CharT __c, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
287 operator ==(const basic_string<_CharT,_Traits,_Alloc>& __x, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
295 operator ==(const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __x, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
302 operator ==(const basic_string<_CharT,_Traits,_Alloc>& __x, const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __y) argument
311 operator ==(const _CharT* __s, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
330 operator ==(const _CharT* __s, const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __y) argument
351 operator <(const basic_string<_CharT,_Traits,_Alloc>& __x, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
360 operator <(const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __x, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
368 operator <(const basic_string<_CharT,_Traits,_Alloc>& __x, const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __y) argument
377 operator <(const _CharT* __s, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
398 operator <(const _CharT* __s, const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __y) argument
425 operator !=(const basic_string<_CharT,_Traits,_Alloc>& __x, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
431 operator >(const basic_string<_CharT,_Traits,_Alloc>& __x, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
437 operator <=(const basic_string<_CharT,_Traits,_Alloc>& __x, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
443 operator >=(const basic_string<_CharT,_Traits,_Alloc>& __x, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
450 operator !=(const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __x, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
456 operator !=(const basic_string<_CharT,_Traits,_Alloc>& __x, const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __y) argument
465 operator !=(const _CharT* __s, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
482 operator !=(const _CharT* __s, const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __y) argument
499 operator >(const _CharT* __s, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
516 operator >(const _CharT* __s, const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __y) argument
533 operator <=(const _CharT* __s, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
550 operator <=(const _CharT* __s, const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __y) argument
567 operator >=(const _CharT* __s, const basic_string<_CharT,_Traits,_Alloc>& __y) argument
584 operator >=(const _CharT* __s, const _STLP_PRIV __bstr_sum<_CharT,_Traits,_Alloc,_Lhs,_Rhs,_StoreDir>& __y) argument
[all...]
H A D_function_base.h66 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x == __y; }
79 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x < __y; }
115 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x + __y; }
120 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x - __y; }
135 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x * __y; }
[all...]
H A D_iterator_old.h136 Reference__, _Distance>& __y)
137 { return __x.base() == __y.base(); }
144 const reverse_bidirectional_iterator<_BiIter, _Tp, Reference__, _Distance>& __y)
145 { return !(__x == __y); }
243 Reference__, _Distance>& __y)
245 return __x.base() == __y.base();
254 Reference__, _Distance>& __y)
256 return __y.base() < __x.base();
267 Reference__, _Distance>& __y) {
268 return !(__x == __y);
132 operator ==( const reverse_bidirectional_iterator<_BidirectionalIterator, _Tp, Reference__, _Distance>& __x, const reverse_bidirectional_iterator<_BidirectionalIterator, _Tp, Reference__, _Distance>& __y) argument
142 operator !=( const reverse_bidirectional_iterator<_BiIter, _Tp, Reference__, _Distance>& __x, const reverse_bidirectional_iterator<_BiIter, _Tp, Reference__, _Distance>& __y) argument
240 operator ==(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
251 operator <(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
264 operator !=(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
274 operator >(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
284 operator <=(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
294 operator >=(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
306 operator -(const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __x, const reverse_iterator<_RandomAccessIterator, _Tp, Reference__, _Distance>& __y) argument
[all...]
H A D_cstdlib.h114 inline _STLP_VENDOR_CSTD::div_t div(int __x, int __y) { return _STLP_VENDOR_CSTD::div(__x, __y); } argument
137 inline _STLP_VENDOR_CSTD::ldiv_t div(long __x, long __y) { return _STLP_VENDOR_CSTD::ldiv(__x, __y); } argument
152 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return _STLP_VENDOR_CSTD::lldiv(__x, __y); } argument
155 inline lldiv_t div(_STLP_LONG_LONG __x, _STLP_LONG_LONG __y) { return ::lldiv(__x, __y); } argument
H A D_ctraits_fns.h38 const typename _Traits::char_type& __y) const
39 { return _Traits::eq(__x, __y); }
78 const typename _Traits::char_type& __y) const
79 { return _Traits::lt(__x, __y); }
H A D_cmath.h411 inline double __stlp_ldexp(double __x, int __y) { return ldexp(__x, __y); } argument
413 inline double ldexp(double __x, int __y) { return __stlp_ldexp(__x, __y); } argument
458 inline float pow(float __x, int __y) { return _STLP_CMATH_FUNC_NAMESPACE::powf(__x, __STATIC_CAST(float,__y)); } argument
460 inline float pow(float __x, int __y) { return ::__powf(__x, __STATIC_CAST(float,__y)); }
463 inline float pow(float __x, int __y) { return __STATIC_CAST(float, _STLP_CMATH_FUNC_NAMESPACE::pow(__x, __STATIC_CAST(float,__y))); }
465 pow(double __x, int __y) argument
469 pow(long double __x, int __y) argument
472 pow(long double __x, int __y) argument
474 pow(long double __x, int __y) argument
478 pow(long double __x, int __y) argument
[all...]
H A D_iterator.h114 const reverse_iterator<_Iterator>& __y)
115 { return __x.base() == __y.base(); }
119 const reverse_iterator<_Iterator>& __y)
120 { return __y.base() < __x.base(); }
125 const reverse_iterator<_Iterator>& __y)
126 { return !(__x == __y); }
130 const reverse_iterator<_Iterator>& __y)
131 { return __y < __x; }
135 const reverse_iterator<_Iterator>& __y)
136 { return !(__y < __
113 operator ==(const reverse_iterator<_Iterator>& __x, const reverse_iterator<_Iterator>& __y) argument
118 operator <(const reverse_iterator<_Iterator>& __x, const reverse_iterator<_Iterator>& __y) argument
124 operator !=(const reverse_iterator<_Iterator>& __x, const reverse_iterator<_Iterator>& __y) argument
129 operator >(const reverse_iterator<_Iterator>& __x, const reverse_iterator<_Iterator>& __y) argument
134 operator <=(const reverse_iterator<_Iterator>& __x, const reverse_iterator<_Iterator>& __y) argument
139 operator >=(const reverse_iterator<_Iterator>& __x, const reverse_iterator<_Iterator>& __y) argument
150 operator -(const reverse_iterator<_Iterator>& __x, const reverse_iterator<_Iterator>& __y) argument
[all...]
H A D_function.h45 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x != __y; }
50 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x > __y; }
55 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x >= __y; }
60 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x <= __y; }
65 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x / __y; }
205 binder1st(const _Operation& __x, _ValueParamType __y) argument
240 binder2nd(const _Operation& __x, _ValueParamType __y) argument
275 unary_compose(const _Operation1& __x, const _Operation2& __y) argument
305 binary_compose(const _Operation1& __x, const _Operation2& __y, const _Operation3& __z) argument
[all...]
H A D_new.h123 # define _STLP_CHECK_NULL_ALLOC(__x) void* __y = __x; if (__y == 0) { _STLP_THROW_BAD_ALLOC; } return __y
H A D_stack.h107 const stack< _STLP_STACK_ARGS >& __y)
108 { return __x._Get_s() == __y._Get_s(); }
112 const stack< _STLP_STACK_ARGS >& __y)
113 { return __x._Get_s() < __y._Get_s(); }
106 operator ==(const stack< _STLP_STACK_ARGS >& __x, const stack< _STLP_STACK_ARGS >& __y) argument
111 operator <(const stack< _STLP_STACK_ARGS >& __x, const stack< _STLP_STACK_ARGS >& __y) argument
H A D_sparc_atomic.h59 # define _STLP_ATOMIC_EXCHANGE(__x, __y) _STLP_atomic_exchange((__stl_atomic_t*)__x, (__stl_atomic_t)__y)
H A D_deque.h106 _Deque_iterator_base(value_type* __x, _Map_pointer __y) argument
107 : _M_cur(__x), _M_first(*__y),
108 _M_last(*__y + _S_buffer_size()), _M_node(__y) {}
178 _Deque_iterator(value_type* __x, _Map_pointer __y) : argument
179 _Deque_iterator_base<value_type>(__x,__y) {}
234 const _Deque_iterator_base<_Tp >& __y)
235 { return __x._M_cur == __y._M_cur; }
240 const _Deque_iterator_base<_Tp >& __y) {
241 return (__x._M_node == __y
233 operator ==(const _Deque_iterator_base<_Tp >& __x, const _Deque_iterator_base<_Tp >& __y) argument
239 operator <(const _Deque_iterator_base<_Tp >& __x, const _Deque_iterator_base<_Tp >& __y) argument
247 operator !=(const _Deque_iterator_base<_Tp >& __x, const _Deque_iterator_base<_Tp >& __y) argument
253 operator >(const _Deque_iterator_base<_Tp >& __x, const _Deque_iterator_base<_Tp >& __y) argument
258 operator >=(const _Deque_iterator_base<_Tp >& __x, const _Deque_iterator_base<_Tp >& __y) argument
263 operator <=(const _Deque_iterator_base<_Tp >& __x, const _Deque_iterator_base<_Tp >& __y) argument
271 operator ==(const _Deque_iterator<_Tp, _Traits1 >& __x, const _Deque_iterator<_Tp, _Traits2 >& __y) argument
277 operator <(const _Deque_iterator<_Tp, _Traits1 >& __x, const _Deque_iterator<_Tp, _Traits2 >& __y) argument
285 operator !=(const _Deque_iterator<_Tp, _Nonconst_traits<_Tp> >& __x, const _Deque_iterator<_Tp, _Const_traits<_Tp> >& __y) argument
291 operator >(const _Deque_iterator<_Tp, _Nonconst_traits<_Tp> >& __x, const _Deque_iterator<_Tp, _Const_traits<_Tp> >& __y) argument
297 operator >=(const _Deque_iterator<_Tp, _Nonconst_traits<_Tp> >& __x, const _Deque_iterator<_Tp, _Const_traits<_Tp> >& __y) argument
303 operator <=(const _Deque_iterator<_Tp, _Nonconst_traits<_Tp> >& __x, const _Deque_iterator<_Tp, _Const_traits<_Tp> >& __y) argument
[all...]
H A D_bvector.h45 _Bit_reference(unsigned int* __x, unsigned int __y) argument
46 : _M_p(__x), _M_mask(__y) {}
85 inline void swap(_STLP_PRIV _Bit_reference& __x, _STLP_PRIV _Bit_reference& __y) { argument
87 __x = __y;
88 __y = __tmp;
124 _Bit_iterator_base(unsigned int* __x, unsigned int __y) : _M_p(__x), _M_offset(__y) {} argument
147 inline bool _STLP_CALL operator==(const _Bit_iterator_base& __x, const _Bit_iterator_base& __y) { argument
148 return __y._M_p == __x._M_p && __y
150 operator !=(const _Bit_iterator_base& __x, const _Bit_iterator_base& __y) argument
154 operator <(const _Bit_iterator_base& __x, const _Bit_iterator_base& __y) argument
158 operator >(const _Bit_iterator_base& __x, const _Bit_iterator_base& __y) argument
161 operator <=(const _Bit_iterator_base& __x, const _Bit_iterator_base& __y) argument
164 operator >=(const _Bit_iterator_base& __x, const _Bit_iterator_base& __y) argument
178 _Bit_iter(unsigned int* __x, unsigned int __y) argument
[all...]
H A D_collate.h164 const basic_string<_CharT, _Traits, _Alloc>& __y) {
167 __y.data(), __y.data() + __y.size()) < 0;
162 __locale_do_operator_call(const locale& __loc, const basic_string<_CharT, _Traits, _Alloc>& __x, const basic_string<_CharT, _Traits, _Alloc>& __y) argument
H A D_istreambuf_iterator.h111 const istreambuf_iterator<_CharT, _Traits>& __y) {
112 return __x.equal(__y);
119 const istreambuf_iterator<_CharT, _Traits>& __y) {
120 return !__x.equal(__y);
110 operator ==(const istreambuf_iterator<_CharT, _Traits>& __x, const istreambuf_iterator<_CharT, _Traits>& __y) argument
118 operator !=(const istreambuf_iterator<_CharT, _Traits>& __x, const istreambuf_iterator<_CharT, _Traits>& __y) argument
H A D_valarray.h379 const valarray<_Tp>& __y) {
380 _STLP_ASSERT(__x.size() == __y.size())
384 __tmp[__i] = __x[__i] * __y[__i];
390 const valarray<_Tp>& __y) {
391 _STLP_ASSERT(__x.size() == __y.size())
395 __tmp[__i] = __x[__i] / __y[__i];
401 const valarray<_Tp>& __y) {
402 _STLP_ASSERT(__x.size() == __y.size())
406 __tmp[__i] = __x[__i] % __y[__i];
412 const valarray<_Tp>& __y) {
378 operator *(const valarray<_Tp>& __x, const valarray<_Tp>& __y) argument
389 operator /(const valarray<_Tp>& __x, const valarray<_Tp>& __y) argument
400 operator %(const valarray<_Tp>& __x, const valarray<_Tp>& __y) argument
411 operator +(const valarray<_Tp>& __x, const valarray<_Tp>& __y) argument
422 operator -(const valarray<_Tp>& __x, const valarray<_Tp>& __y) argument
433 operator ^(const valarray<_Tp>& __x, const valarray<_Tp>& __y) argument
444 operator &(const valarray<_Tp>& __x, const valarray<_Tp>& __y) argument
455 operator |(const valarray<_Tp>& __x, const valarray<_Tp>& __y) argument
466 operator <<(const valarray<_Tp>& __x, const valarray<_Tp>& __y) argument
477 operator >>(const valarray<_Tp>& __x, const valarray<_Tp>& __y) argument
674 operator ==(const valarray<_Tp>& __x, const valarray<_Tp>& __y) argument
684 operator <(const valarray<_Tp>& __x, const valarray<_Tp>& __y) argument
[all...]
H A D_rope.h125 const rope<_CharT,_Alloc>& __y) {
126 return __x + __y;
1343 // Return -1, 0, or 1 if __x < __y, __x == __y, or __x > __y resp.
1344 static int _S_compare(const _RopeRep* __x, const _RopeRep* __y);
1361 int compare(const _Self& __y) const {
1362 return _S_compare(_M_tree_ptr._M_data, __y._M_tree_ptr._M_data);
1692 _Self& append(const _Self& __y) { argument
1693 _STLP_ASSERT(__y
124 operator ()(const rope<_CharT,_Alloc>& __x, const rope<_CharT,_Alloc>& __y) argument
2075 operator ==(const _Rope_const_iterator<_CharT,_Alloc>& __x, const _Rope_const_iterator<_CharT,_Alloc>& __y) argument
2082 operator <(const _Rope_const_iterator<_CharT,_Alloc>& __x, const _Rope_const_iterator<_CharT,_Alloc>& __y) argument
2089 operator !=(const _Rope_const_iterator<_CharT,_Alloc>& __x, const _Rope_const_iterator<_CharT,_Alloc>& __y) argument
2094 operator >(const _Rope_const_iterator<_CharT,_Alloc>& __x, const _Rope_const_iterator<_CharT,_Alloc>& __y) argument
2099 operator <=(const _Rope_const_iterator<_CharT,_Alloc>& __x, const _Rope_const_iterator<_CharT,_Alloc>& __y) argument
2104 operator >=(const _Rope_const_iterator<_CharT,_Alloc>& __x, const _Rope_const_iterator<_CharT,_Alloc>& __y) argument
2111 operator -(const _Rope_const_iterator<_CharT,_Alloc>& __x, const _Rope_const_iterator<_CharT,_Alloc>& __y) argument
2133 operator ==(const _Rope_iterator<_CharT,_Alloc>& __x, const _Rope_iterator<_CharT,_Alloc>& __y) argument
2140 operator <(const _Rope_iterator<_CharT,_Alloc>& __x, const _Rope_iterator<_CharT,_Alloc>& __y) argument
2146 operator !=(const _Rope_iterator<_CharT,_Alloc>& __x, const _Rope_iterator<_CharT,_Alloc>& __y) argument
2151 operator >(const _Rope_iterator<_CharT,_Alloc>& __x, const _Rope_iterator<_CharT,_Alloc>& __y) argument
2156 operator <=(const _Rope_iterator<_CharT,_Alloc>& __x, const _Rope_iterator<_CharT,_Alloc>& __y) argument
2161 operator >=(const _Rope_iterator<_CharT,_Alloc>& __x, const _Rope_iterator<_CharT,_Alloc>& __y) argument
2167 operator -(const _Rope_iterator<_CharT,_Alloc>& __x, const _Rope_iterator<_CharT,_Alloc>& __y) argument
2257 operator !=(const rope<_CharT,_Alloc>& __x, const rope<_CharT,_Alloc>& __y) argument
2263 operator >(const rope<_CharT,_Alloc>& __x, const rope<_CharT,_Alloc>& __y) argument
2269 operator <=(const rope<_CharT,_Alloc>& __x, const rope<_CharT,_Alloc>& __y) argument
2275 operator >=(const rope<_CharT,_Alloc>& __x, const rope<_CharT,_Alloc>& __y) argument
2280 operator !=(const _Rope_char_ptr_proxy<_CharT,_Alloc>& __x, const _Rope_char_ptr_proxy<_CharT,_Alloc>& __y) argument
2288 operator ==(const _Rope_char_ptr_proxy<_CharT,_Alloc>& __x, const _Rope_char_ptr_proxy<_CharT,_Alloc>& __y) argument
2314 swap(rope<_CharT,_Alloc>& __x, rope<_CharT,_Alloc>& __y) argument
2318 swap(crope& __x, crope& __y) argument
2320 swap(wrope& __x, wrope& __y) argument
[all...]
/ndk/sources/cxx-stl/gabi++/include/
H A Dstl_pair.h86 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
88 return __x.first == __y.first && __x.second == __y.second;
92 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
94 return __x.first < __y.first ||
95 (!(__y.first < __x.first) && __x.second < __y.second);
99 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { argument
100 return !(__x == __y);
104 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { argument
109 operator <=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
114 operator >=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
119 make_pair(_T1 __x, _T2 __y) argument
[all...]
/ndk/sources/cxx-stl/system/include/
H A Dstl_pair.h86 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
88 return __x.first == __y.first && __x.second == __y.second;
92 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
94 return __x.first < __y.first ||
95 (!(__y.first < __x.first) && __x.second < __y.second);
99 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { argument
100 return !(__x == __y);
104 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { argument
109 operator <=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
114 operator >=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) argument
119 make_pair(_T1 __x, _T2 __y) argument
[all...]
/ndk/sources/cxx-stl/stlport/stlport/stl/config/
H A D_watcom.h148 # define _STLP_ATOMIC_EXCHANGE(__x, __y) __stl_InterlockedExchange((long*)__x, (long)__y)
149 # define _STLP_ATOMIC_EXCHANGE_PTR(__x, __y) __stl_InterlockedExchange((long*)__x, (long)__y)
H A Dfeatures.h580 #define __C_CAST(__x, __y) ((__x)(__y))
582 # define __CONST_CAST(__x,__y) const_cast<__x>(__y)
583 # define __STATIC_CAST(__x,__y) static_cast<__x>(__y)
584 # define __REINTERPRET_CAST(__x,__y) reinterpret_cast<__x>(__y)
586 # define __STATIC_CAST(__x,__y) __C_CAST(__x, __y)
[all...]
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
H A D_iterator.h61 ptrdiff_t _DBG_distance(const _Iterator& __x, const _Iterator& __y, const random_access_iterator_tag &) argument
62 { return __x - __y; }
89 bool _CompareIt(const _Iterator& __x, const _Iterator& __y, const random_access_iterator_tag &) argument
90 { return __x < __y; }
176 const _DBG_iter_base<_Container>& __y ) {
178 _STLP_DEBUG_CHECK(__check_same_owner(__x, __y))
179 return _DBG_distance(__x._M_iterator,__y._M_iterator, _Iterator_category());
306 operator==(const _DBG_iter_base<_Container>& __x, const _DBG_iter_base<_Container>& __y) { argument
307 _STLP_DEBUG_CHECK(__check_same_or_null_owner(__x, __y))
308 return __x._M_iterator == __y
313 operator <(const _DBG_iter_base<_Container>& __x, const _DBG_iter_base<_Container>& __y) argument
321 operator >(const _DBG_iter_base<_Container>& __x, const _DBG_iter_base<_Container>& __y) argument
329 operator >=(const _DBG_iter_base<_Container>& __x, const _DBG_iter_base<_Container>& __y) argument
337 operator <=(const _DBG_iter_base<_Container>& __x, const _DBG_iter_base<_Container>& __y) argument
345 operator !=(const _DBG_iter_base<_Container>& __x, const _DBG_iter_base<_Container>& __y) argument
[all...]

Completed in 361 milliseconds

12