Home
last modified time | relevance | path

Searched refs:__rhs (Results 1 – 25 of 27) sorted by relevance

12

/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dstrstream156 strstreambuf(strstreambuf&& __rhs);
158 strstreambuf& operator=(strstreambuf&& __rhs);
163 void swap(strstreambuf& __rhs);
197 strstreambuf::strstreambuf(strstreambuf&& __rhs)
198 : streambuf(__rhs),
199 __strmode_(__rhs.__strmode_),
200 __alsize_(__rhs.__alsize_),
201 __palloc_(__rhs.__palloc_),
202 __pfree_(__rhs.__pfree_)
204 __rhs.setg(nullptr, nullptr, nullptr);
[all …]
Dfstream197 basic_filebuf(basic_filebuf&& __rhs);
203 basic_filebuf& operator=(basic_filebuf&& __rhs);
205 void swap(basic_filebuf& __rhs);
277 basic_filebuf<_CharT, _Traits>::basic_filebuf(basic_filebuf&& __rhs)
278 : basic_streambuf<_CharT, _Traits>(__rhs)
280 if (__rhs.__extbuf_ == __rhs.__extbuf_min_)
283 __extbufnext_ = __extbuf_ + (__rhs.__extbufnext_ - __rhs.__extbuf_);
284 __extbufend_ = __extbuf_ + (__rhs.__extbufend_ - __rhs.__extbuf_);
288 __extbuf_ = __rhs.__extbuf_;
289 __extbufnext_ = __rhs.__extbufnext_;
[all …]
Dsstream214 basic_stringbuf(basic_stringbuf&& __rhs);
219 basic_stringbuf& operator=(basic_stringbuf&& __rhs);
221 void swap(basic_stringbuf& __rhs);
260 basic_stringbuf<_CharT, _Traits, _Allocator>::basic_stringbuf(basic_stringbuf&& __rhs)
261 : __mode_(__rhs.__mode_)
263 char_type* __p = const_cast<char_type*>(__rhs.__str_.data());
267 if (__rhs.eback() != nullptr)
269 __binp = __rhs.eback() - __p;
270 __ninp = __rhs.gptr() - __p;
271 __einp = __rhs.egptr() - __p;
[all …]
Dfuture1087 future(future&& __rhs) _NOEXCEPT
1088 : __state_(__rhs.__state_) {__rhs.__state_ = nullptr;}
1092 future& operator=(future&& __rhs) _NOEXCEPT
1094 future(std::move(__rhs)).swap(*this);
1110 void swap(future& __rhs) _NOEXCEPT {_VSTD::swap(__state_, __rhs.__state_);}
1191 future(future&& __rhs) _NOEXCEPT
1192 : __state_(__rhs.__state_) {__rhs.__state_ = nullptr;}
1196 future& operator=(future&& __rhs) _NOEXCEPT
1198 future(std::move(__rhs)).swap(*this);
1214 void swap(future& __rhs) _NOEXCEPT {_VSTD::swap(__state_, __rhs.__state_);}
[all …]
Dchrono522 bool operator()(const _LhsDuration& __lhs, const _RhsDuration& __rhs) const
525 return _Ct(__lhs).count() == _Ct(__rhs).count();
533 bool operator()(const _LhsDuration& __lhs, const _LhsDuration& __rhs) const
534 {return __lhs.count() == __rhs.count();}
541 operator==(const duration<_Rep1, _Period1>& __lhs, const duration<_Rep2, _Period2>& __rhs)
543 return __duration_eq<duration<_Rep1, _Period1>, duration<_Rep2, _Period2> >()(__lhs, __rhs);
552 operator!=(const duration<_Rep1, _Period1>& __lhs, const duration<_Rep2, _Period2>& __rhs)
554 return !(__lhs == __rhs);
563 bool operator()(const _LhsDuration& __lhs, const _RhsDuration& __rhs) const
566 return _Ct(__lhs).count() < _Ct(__rhs).count();
[all …]
Dios614 basic_ios& copyfmt(const basic_ios& __rhs);
637 void move(basic_ios& __rhs);
640 void move(basic_ios&& __rhs) {move(__rhs);}
643 void swap(basic_ios& __rhs) _NOEXCEPT;
759 basic_ios<_CharT, _Traits>::copyfmt(const basic_ios& __rhs)
761 if (this != &__rhs)
764 ios_base::copyfmt(__rhs);
765 __tie_ = __rhs.__tie_;
766 __fill_ = __rhs.__fill_;
768 exceptions(__rhs.exceptions());
[all …]
Dstring3791 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
3794 return __lhs_sz == __rhs.size() && _Traits::compare(__lhs.data(),
3795 __rhs.data(),
3803 const basic_string<char, char_traits<char>, _Allocator>& __rhs) _NOEXCEPT
3806 if (__lhs_sz != __rhs.size())
3809 const char* __rp = __rhs.data();
3822 const basic_string<_CharT, _Traits, _Allocator>& __rhs) _NOEXCEPT
3824 return __rhs.compare(__lhs) == 0;
3831 const _CharT* __rhs) _NOEXCEPT
3833 return __lhs.compare(__rhs) == 0;
[all …]
Distream185 basic_istream(basic_istream&& __rhs);
191 basic_istream& operator=(basic_istream&& __rhs);
193 void swap(basic_istream& __rhs);
302 basic_istream<_CharT, _Traits>::basic_istream(basic_istream&& __rhs)
303 : __gc_(__rhs.__gc_)
305 __rhs.__gc_ = 0;
306 this->move(__rhs);
312 basic_istream<_CharT, _Traits>::operator=(basic_istream&& __rhs)
314 swap(__rhs);
328 basic_istream<_CharT, _Traits>::swap(basic_istream& __rhs)
[all …]
Dbitset666 bitset& operator&=(const bitset& __rhs) _NOEXCEPT;
667 bitset& operator|=(const bitset& __rhs) _NOEXCEPT;
668 bitset& operator^=(const bitset& __rhs) _NOEXCEPT;
698 bool operator==(const bitset& __rhs) const _NOEXCEPT;
699 bool operator!=(const bitset& __rhs) const _NOEXCEPT;
779 bitset<_Size>::operator&=(const bitset& __rhs) _NOEXCEPT
781 base::operator&=(__rhs);
788 bitset<_Size>::operator|=(const bitset& __rhs) _NOEXCEPT
790 base::operator|=(__rhs);
797 bitset<_Size>::operator^=(const bitset& __rhs) _NOEXCEPT
[all …]
Dsystem_error388 bool operator==(const error_category& __rhs) const _NOEXCEPT {return this == &__rhs;}
391 bool operator!=(const error_category& __rhs) const _NOEXCEPT {return !(*this == __rhs);}
394 bool operator< (const error_category& __rhs) const _NOEXCEPT {return this < &__rhs;}
Dostream161 basic_ostream(basic_ostream&& __rhs);
170 basic_ostream& operator=(basic_ostream&& __rhs);
172 void swap(basic_ostream& __rhs);
276 basic_ostream<_CharT, _Traits>::basic_ostream(basic_ostream&& __rhs)
278 this->move(__rhs);
284 basic_ostream<_CharT, _Traits>::operator=(basic_ostream&& __rhs)
286 swap(__rhs);
300 basic_ostream<_CharT, _Traits>::swap(basic_ostream& __rhs)
302 basic_ios<char_type, traits_type>::swap(__rhs);
Dstreambuf164 basic_streambuf(const basic_streambuf& __rhs);
165 basic_streambuf& operator=(const basic_streambuf& __rhs);
166 void swap(basic_streambuf& __rhs);
Drandom6087 param_type & operator=(const param_type& __rhs);
6202 (const param_type& __rhs)
6205 __b_.reserve (__rhs.__b_.size ());
6206 __densities_.reserve(__rhs.__densities_.size());
6207 __areas_.reserve (__rhs.__areas_.size());
6210 __b_ = __rhs.__b_;
6211 __densities_ = __rhs.__densities_;
6212 __areas_ = __rhs.__areas_;
6411 param_type & operator=(const param_type& __rhs);
6526 (const param_type& __rhs)
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dstrstream.cpp115 strstreambuf::swap(strstreambuf& __rhs) in swap() argument
117 streambuf::swap(__rhs); in swap()
118 _VSTD::swap(__strmode_, __rhs.__strmode_); in swap()
119 _VSTD::swap(__alsize_, __rhs.__alsize_); in swap()
120 _VSTD::swap(__palloc_, __rhs.__palloc_); in swap()
121 _VSTD::swap(__pfree_, __rhs.__pfree_); in swap()
Dfuture.cpp292 shared_future<void>::operator=(const shared_future& __rhs) in operator =() argument
294 if (__rhs.__state_) in operator =()
295 __rhs.__state_->__add_shared(); in operator =()
298 __state_ = __rhs.__state_; in operator =()
/ndk/sources/cxx-stl/stlport/stlport/stl/
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)
345 { return __rhs < __lhs; }
[all …]
D_bitset.h450 bitset<_Nb>& operator&=(const bitset<_Nb>& __rhs) {
451 this->_M_do_and(__rhs);
455 bitset<_Nb>& operator|=(const bitset<_Nb>& __rhs) {
456 this->_M_do_or(__rhs);
460 bitset<_Nb>& operator^=(const bitset<_Nb>& __rhs) {
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);
D_hashtable.h144 bool operator == (const_iterator __rhs) const {
145 return _M_ite == __rhs._M_ite;
147 bool operator != (const_iterator __rhs) const {
148 return _M_ite != __rhs._M_ite;
D_tree.h196 bool operator == (const_iterator __rhs) const {
197 return _M_node == __rhs._M_node;
199 bool operator != (const_iterator __rhs) const {
200 return _M_node != __rhs._M_node;
D_string_operators.h126 const basic_string<_CharT,_Traits,_Alloc>& __rhs) {
130 …__root_type __root(__rhs, _STLP_PRIV __sum_storage_elem<_CharT, _Traits, _Alloc>(__lhs.get_allocat…
142 const _STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir>& __rhs) {
145 _STLP_PRIV __on_right>(__lhs, __rhs);
154 const basic_string<_CharT,_Traits,_Alloc>& __rhs) {
157 _STLP_PRIV __on_left>(__lhs, __rhs);
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
D_iterator.h228 _DBG_iter(const _Nonconst_mid& __rhs) : in _DBG_iter()
229 _DBG_iter_mid<_Container, _Traits>(__rhs) {} in _DBG_iter()
231 _DBG_iter(const _Self& __rhs) : in _DBG_iter()
232 _DBG_iter_mid<_Container, _Traits>(__rhs) {} in _DBG_iter()
236 _Self& operator=(const _Nonconst_mid& __rhs) {
237 (_Base&)*this = __rhs;
241 _Self& operator=(const _Self& __rhs) {
242 (_Base&)*this = __rhs;
D_debug.h289 __owned_link(const __owned_link& __rhs): _M_self(this), _M_owner(0) in __owned_link() argument
290 { __stl_debugger::_M_attach(__CONST_CAST(__owned_list*,__rhs._M_owner), this); } in __owned_link()
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) {
299 __owned_list* __new_owner = __CONST_CAST(__owned_list*,__rhs._M_owner);
D_hashtable.h53 bool operator () (const _Key& __lhs, const _Key& __rhs) const in operator()
56 bool operator () (const _Kp1& __lhs, const _Kp2& __rhs) const in operator()
60 …_STLP_VERBOSE_ASSERT(_M_non_dbg_eq(__rhs, __lhs) == _M_non_dbg_eq(__lhs, __rhs), _StlMsg_INVALID_E… in operator()
62 return _M_non_dbg_eq(__lhs, __rhs) ? true : false; in operator()
D_tree.h57 bool operator () (const _Key& __lhs, const _Key& __rhs) const { in operator()
60 bool operator () (const _Kp1& __lhs, const _Kp2& __rhs) const { in operator()
62 if (_M_non_dbg_cmp(__lhs, __rhs)) { in operator()
/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/
D_tools.h359 _Self& operator= (_Self const& __rhs) {
360 _M_ite = __rhs._M_ite;
387 bool operator < (_Self const& __rhs) const
388 { return _M_ite < __rhs._M_ite; }

12