Searched defs:__rhs (Results 1 - 8 of 8) sorted by relevance

/external/libcxx/src/
H A Dfuture.cpp290 shared_future<void>::operator=(const shared_future& __rhs) argument
292 if (__rhs.__state_)
293 __rhs.__state_->__add_shared();
296 __state_ = __rhs.__state_;
H A Dstrstream.cpp115 strstreambuf::swap(strstreambuf& __rhs) argument
117 streambuf::swap(__rhs);
118 _VSTD::swap(__strmode_, __rhs.__strmode_);
119 _VSTD::swap(__alsize_, __rhs.__alsize_);
120 _VSTD::swap(__palloc_, __rhs.__palloc_);
121 _VSTD::swap(__pfree_, __rhs.__pfree_);
/external/stlport/stlport/stl/debug/
H A D_iterator.h228 _DBG_iter(const _Nonconst_mid& __rhs) : argument
229 _DBG_iter_mid<_Container, _Traits>(__rhs) {}
231 _DBG_iter(const _Self& __rhs) : argument
232 _DBG_iter_mid<_Container, _Traits>(__rhs) {}
236 _Self& operator=(const _Nonconst_mid& __rhs) { argument
237 (_Base&)*this = __rhs;
241 _Self& operator=(const _Self& __rhs) { argument
242 (_Base&)*this = __rhs;
H A D_debug.h289 __owned_link(const __owned_link& __rhs): _M_self(this), _M_owner(0) argument
290 { __stl_debugger::_M_attach(__CONST_CAST(__owned_list*,__rhs._M_owner), this); }
295 __owned_link(const __owned_link& __rhs): _M_owner(0)
296 { __stl_debugger::_M_attach(__CONST_CAST(__owned_list*,__rhs._M_owner), this); }
298 __owned_link& operator=(const __owned_link& __rhs) { argument
299 __owned_list* __new_owner = __CONST_CAST(__owned_list*,__rhs._M_owner);
/external/stlport/stlport/stl/
H A D_bitset.h450 bitset<_Nb>& operator&=(const bitset<_Nb>& __rhs) { argument
451 this->_M_do_and(__rhs);
455 bitset<_Nb>& operator|=(const bitset<_Nb>& __rhs) { argument
456 this->_M_do_or(__rhs);
460 bitset<_Nb>& operator^=(const bitset<_Nb>& __rhs) { argument
461 this->_M_do_xor(__rhs);
585 bool operator==(const bitset<_Nb>& __rhs) const {
586 return this->_M_is_equal(__rhs);
588 bool operator!=(const bitset<_Nb>& __rhs) const {
589 return !this->_M_is_equal(__rhs);
[all...]
H A D_string_sum.h306 const __bstr_sum<_CharT, _Traits, _Alloc, _Lh2, _Rh2, _StoreDir2> &__rhs) {
310 __on_right>(__lhs, __rhs);
318 const __bstr_sum<_CharT, _Traits, _Alloc, _Lh2, _Rh2, _StoreDir2> &__rhs)
319 { return (__lhs.size() == __rhs.size()) && (__lhs._M_get_storage() == __rhs._M_get_storage()); }
326 const __bstr_sum<_CharT, _Traits, _Alloc, _Lh2, _Rh2, _StoreDir2> &__rhs)
327 { return __lhs._M_get_storage() < __rhs._M_get_storage(); }
336 const __bstr_sum<_CharT, _Traits, _Alloc, _Lh2, _Rh2, _StoreDir2> &__rhs)
337 { return !(__lhs == __rhs); }
344 const __bstr_sum<_CharT, _Traits, _Alloc, _Lh2, _Rh2, _StoreDir2> &__rhs)
305 operator +(const __bstr_sum<_CharT, _Traits, _Alloc, _Lh1, _Rh1, _StoreDir1> &__lhs, const __bstr_sum<_CharT, _Traits, _Alloc, _Lh2, _Rh2, _StoreDir2> &__rhs) argument
317 operator ==(const __bstr_sum<_CharT, _Traits, _Alloc, _Lh1, _Rh1, _StoreDir1> &__lhs, const __bstr_sum<_CharT, _Traits, _Alloc, _Lh2, _Rh2, _StoreDir2> &__rhs) argument
325 operator <(const __bstr_sum<_CharT, _Traits, _Alloc, _Lh1, _Rh1, _StoreDir1> &__lhs, const __bstr_sum<_CharT, _Traits, _Alloc, _Lh2, _Rh2, _StoreDir2> &__rhs) argument
335 operator !=(const __bstr_sum<_CharT, _Traits, _Alloc, _Lh1, _Rh1, _StoreDir1> &__lhs, const __bstr_sum<_CharT, _Traits, _Alloc, _Lh2, _Rh2, _StoreDir2> &__rhs) argument
343 operator >(const __bstr_sum<_CharT, _Traits, _Alloc, _Lh1, _Rh1, _StoreDir1> &__lhs, const __bstr_sum<_CharT, _Traits, _Alloc, _Lh2, _Rh2, _StoreDir2> &__rhs) argument
351 operator <=(const __bstr_sum<_CharT, _Traits, _Alloc, _Lh1, _Rh1, _StoreDir1> &__lhs, const __bstr_sum<_CharT, _Traits, _Alloc, _Lh2, _Rh2, _StoreDir2> &__rhs) argument
359 operator >=(const __bstr_sum<_CharT, _Traits, _Alloc, _Lh1, _Rh1, _StoreDir1> &__lhs, const __bstr_sum<_CharT, _Traits, _Alloc, _Lh2, _Rh2, _StoreDir2> &__rhs) argument
[all...]
H A D_rope.h279 _Self& operator=(const value_type& __rhs) { argument
280 push_back(__rhs);
/external/stlport/stlport/stl/pointers/
H A D_tools.h359 _Self& operator= (_Self const& __rhs) { argument
360 _M_ite = __rhs._M_ite;
387 bool operator < (_Self const& __rhs) const
388 { return _M_ite < __rhs._M_ite; }

Completed in 1539 milliseconds