Searched refs:__rhs (Results 1 - 18 of 18) sorted by relevance

/freebsd-11-stable/contrib/libstdc++/include/debug/
H A Dsafe_iterator.h361 // Is the iterator range [*this, __rhs) valid?
364 _M_valid_range(const _Safe_iterator<_Other, _Sequence>& __rhs) const;
376 _M_get_distance(const _Iterator1& __lhs, const _Iterator2& __rhs) argument
380 return _M_get_distance(__lhs, __rhs, _Category());
385 _M_get_distance(const _Iterator1& __lhs, const _Iterator2& __rhs, argument
388 return std::make_pair(__rhs.base() - __lhs.base(), __dp_exact);
393 _M_get_distance(const _Iterator1& __lhs, const _Iterator2& __rhs, argument
396 return std::make_pair(__lhs.base() == __rhs.base()? 0 : 1,
412 const _Safe_iterator<_IteratorR, _Sequence>& __rhs)
414 _GLIBCXX_DEBUG_VERIFY(! __lhs._M_singular() && ! __rhs
411 operator ==(const _Safe_iterator<_IteratorL, _Sequence>& __lhs, const _Safe_iterator<_IteratorR, _Sequence>& __rhs) argument
427 operator ==(const _Safe_iterator<_Iterator, _Sequence>& __lhs, const _Safe_iterator<_Iterator, _Sequence>& __rhs) argument
443 operator !=(const _Safe_iterator<_IteratorL, _Sequence>& __lhs, const _Safe_iterator<_IteratorR, _Sequence>& __rhs) argument
459 operator !=(const _Safe_iterator<_Iterator, _Sequence>& __lhs, const _Safe_iterator<_Iterator, _Sequence>& __rhs) argument
475 operator <(const _Safe_iterator<_IteratorL, _Sequence>& __lhs, const _Safe_iterator<_IteratorR, _Sequence>& __rhs) argument
491 operator <(const _Safe_iterator<_Iterator, _Sequence>& __lhs, const _Safe_iterator<_Iterator, _Sequence>& __rhs) argument
507 operator <=(const _Safe_iterator<_IteratorL, _Sequence>& __lhs, const _Safe_iterator<_IteratorR, _Sequence>& __rhs) argument
523 operator <=(const _Safe_iterator<_Iterator, _Sequence>& __lhs, const _Safe_iterator<_Iterator, _Sequence>& __rhs) argument
539 operator >(const _Safe_iterator<_IteratorL, _Sequence>& __lhs, const _Safe_iterator<_IteratorR, _Sequence>& __rhs) argument
555 operator >(const _Safe_iterator<_Iterator, _Sequence>& __lhs, const _Safe_iterator<_Iterator, _Sequence>& __rhs) argument
571 operator >=(const _Safe_iterator<_IteratorL, _Sequence>& __lhs, const _Safe_iterator<_IteratorR, _Sequence>& __rhs) argument
587 operator >=(const _Safe_iterator<_Iterator, _Sequence>& __lhs, const _Safe_iterator<_Iterator, _Sequence>& __rhs) argument
607 operator -(const _Safe_iterator<_IteratorL, _Sequence>& __lhs, const _Safe_iterator<_IteratorR, _Sequence>& __rhs) argument
623 operator -(const _Safe_iterator<_Iterator, _Sequence>& __lhs, const _Safe_iterator<_Iterator, _Sequence>& __rhs) argument
[all...]
H A Dmultiset.h286 const multiset<_Key,_Compare,_Allocator>& __rhs)
287 { return __lhs._M_base() == __rhs._M_base(); }
292 const multiset<_Key,_Compare,_Allocator>& __rhs)
293 { return __lhs._M_base() != __rhs._M_base(); }
298 const multiset<_Key,_Compare,_Allocator>& __rhs)
299 { return __lhs._M_base() < __rhs._M_base(); }
304 const multiset<_Key,_Compare,_Allocator>& __rhs)
305 { return __lhs._M_base() <= __rhs._M_base(); }
310 const multiset<_Key,_Compare,_Allocator>& __rhs)
311 { return __lhs._M_base() >= __rhs
285 operator ==(const multiset<_Key,_Compare,_Allocator>& __lhs, const multiset<_Key,_Compare,_Allocator>& __rhs) argument
291 operator !=(const multiset<_Key,_Compare,_Allocator>& __lhs, const multiset<_Key,_Compare,_Allocator>& __rhs) argument
297 operator <(const multiset<_Key,_Compare,_Allocator>& __lhs, const multiset<_Key,_Compare,_Allocator>& __rhs) argument
303 operator <=(const multiset<_Key,_Compare,_Allocator>& __lhs, const multiset<_Key,_Compare,_Allocator>& __rhs) argument
309 operator >=(const multiset<_Key,_Compare,_Allocator>& __lhs, const multiset<_Key,_Compare,_Allocator>& __rhs) argument
315 operator >(const multiset<_Key,_Compare,_Allocator>& __lhs, const multiset<_Key,_Compare,_Allocator>& __rhs) argument
[all...]
H A Dset.h291 const set<_Key,_Compare,_Allocator>& __rhs)
292 { return __lhs._M_base() == __rhs._M_base(); }
297 const set<_Key,_Compare,_Allocator>& __rhs)
298 { return __lhs._M_base() != __rhs._M_base(); }
303 const set<_Key,_Compare,_Allocator>& __rhs)
304 { return __lhs._M_base() < __rhs._M_base(); }
309 const set<_Key,_Compare,_Allocator>& __rhs)
310 { return __lhs._M_base() <= __rhs._M_base(); }
315 const set<_Key,_Compare,_Allocator>& __rhs)
316 { return __lhs._M_base() >= __rhs
290 operator ==(const set<_Key,_Compare,_Allocator>& __lhs, const set<_Key,_Compare,_Allocator>& __rhs) argument
296 operator !=(const set<_Key,_Compare,_Allocator>& __lhs, const set<_Key,_Compare,_Allocator>& __rhs) argument
302 operator <(const set<_Key,_Compare,_Allocator>& __lhs, const set<_Key,_Compare,_Allocator>& __rhs) argument
308 operator <=(const set<_Key,_Compare,_Allocator>& __lhs, const set<_Key,_Compare,_Allocator>& __rhs) argument
314 operator >=(const set<_Key,_Compare,_Allocator>& __lhs, const set<_Key,_Compare,_Allocator>& __rhs) argument
320 operator >(const set<_Key,_Compare,_Allocator>& __lhs, const set<_Key,_Compare,_Allocator>& __rhs) argument
[all...]
H A Dmap.h291 const map<_Key,_Tp,_Compare,_Allocator>& __rhs)
292 { return __lhs._M_base() == __rhs._M_base(); }
297 const map<_Key,_Tp,_Compare,_Allocator>& __rhs)
298 { return __lhs._M_base() != __rhs._M_base(); }
303 const map<_Key,_Tp,_Compare,_Allocator>& __rhs)
304 { return __lhs._M_base() < __rhs._M_base(); }
309 const map<_Key,_Tp,_Compare,_Allocator>& __rhs)
310 { return __lhs._M_base() <= __rhs._M_base(); }
315 const map<_Key,_Tp,_Compare,_Allocator>& __rhs)
316 { return __lhs._M_base() >= __rhs
290 operator ==(const map<_Key,_Tp,_Compare,_Allocator>& __lhs, const map<_Key,_Tp,_Compare,_Allocator>& __rhs) argument
296 operator !=(const map<_Key,_Tp,_Compare,_Allocator>& __lhs, const map<_Key,_Tp,_Compare,_Allocator>& __rhs) argument
302 operator <(const map<_Key,_Tp,_Compare,_Allocator>& __lhs, const map<_Key,_Tp,_Compare,_Allocator>& __rhs) argument
308 operator <=(const map<_Key,_Tp,_Compare,_Allocator>& __lhs, const map<_Key,_Tp,_Compare,_Allocator>& __rhs) argument
314 operator >=(const map<_Key,_Tp,_Compare,_Allocator>& __lhs, const map<_Key,_Tp,_Compare,_Allocator>& __rhs) argument
320 operator >(const map<_Key,_Tp,_Compare,_Allocator>& __lhs, const map<_Key,_Tp,_Compare,_Allocator>& __rhs) argument
326 swap(map<_Key,_Tp,_Compare,_Allocator>& __lhs, map<_Key,_Tp,_Compare,_Allocator>& __rhs) argument
[all...]
H A Dmultimap.h278 const multimap<_Key,_Tp,_Compare,_Allocator>& __rhs)
279 { return __lhs._M_base() == __rhs._M_base(); }
284 const multimap<_Key,_Tp,_Compare,_Allocator>& __rhs)
285 { return __lhs._M_base() != __rhs._M_base(); }
290 const multimap<_Key,_Tp,_Compare,_Allocator>& __rhs)
291 { return __lhs._M_base() < __rhs._M_base(); }
296 const multimap<_Key,_Tp,_Compare,_Allocator>& __rhs)
297 { return __lhs._M_base() <= __rhs._M_base(); }
302 const multimap<_Key,_Tp,_Compare,_Allocator>& __rhs)
303 { return __lhs._M_base() >= __rhs
277 operator ==(const multimap<_Key,_Tp,_Compare,_Allocator>& __lhs, const multimap<_Key,_Tp,_Compare,_Allocator>& __rhs) argument
283 operator !=(const multimap<_Key,_Tp,_Compare,_Allocator>& __lhs, const multimap<_Key,_Tp,_Compare,_Allocator>& __rhs) argument
289 operator <(const multimap<_Key,_Tp,_Compare,_Allocator>& __lhs, const multimap<_Key,_Tp,_Compare,_Allocator>& __rhs) argument
295 operator <=(const multimap<_Key,_Tp,_Compare,_Allocator>& __lhs, const multimap<_Key,_Tp,_Compare,_Allocator>& __rhs) argument
301 operator >=(const multimap<_Key,_Tp,_Compare,_Allocator>& __lhs, const multimap<_Key,_Tp,_Compare,_Allocator>& __rhs) argument
307 operator >(const multimap<_Key,_Tp,_Compare,_Allocator>& __lhs, const multimap<_Key,_Tp,_Compare,_Allocator>& __rhs) argument
313 swap(multimap<_Key,_Tp,_Compare,_Allocator>& __lhs, multimap<_Key,_Tp,_Compare,_Allocator>& __rhs) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/libcxx/src/
H A Dtypeinfo.cpp14 int std::type_info::__compare(const type_info &__rhs) const _NOEXCEPT {
15 if (&__data == &__rhs.__data)
17 return strcmp(&__data.__decorated_name[1], &__rhs.__data.__decorated_name[1]);
H A Dfuture.cpp265 shared_future<void>::operator=(const shared_future& __rhs) argument
267 if (__rhs.__state_)
268 __rhs.__state_->__add_shared();
271 __state_ = __rhs.__state_;
H A Dstrstream.cpp117 strstreambuf::swap(strstreambuf& __rhs) argument
119 streambuf::swap(__rhs);
120 _VSTD::swap(__strmode_, __rhs.__strmode_);
121 _VSTD::swap(__alsize_, __rhs.__alsize_);
122 _VSTD::swap(__palloc_, __rhs.__palloc_);
123 _VSTD::swap(__pfree_, __rhs.__pfree_);
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dpostypes.h199 operator==(const fpos<_StateT>& __lhs, const fpos<_StateT>& __rhs) argument
200 { return streamoff(__lhs) == streamoff(__rhs); }
204 operator!=(const fpos<_StateT>& __lhs, const fpos<_StateT>& __rhs) argument
205 { return streamoff(__lhs) != streamoff(__rhs); }
H A Dstl_iterator.h733 const __normal_iterator<_IteratorR, _Container>& __rhs)
734 { return __lhs.base() == __rhs.base(); }
739 const __normal_iterator<_Iterator, _Container>& __rhs)
740 { return __lhs.base() == __rhs.base(); }
745 const __normal_iterator<_IteratorR, _Container>& __rhs)
746 { return __lhs.base() != __rhs.base(); }
751 const __normal_iterator<_Iterator, _Container>& __rhs)
752 { return __lhs.base() != __rhs.base(); }
758 const __normal_iterator<_IteratorR, _Container>& __rhs)
759 { return __lhs.base() < __rhs
732 operator ==(const __normal_iterator<_IteratorL, _Container>& __lhs, const __normal_iterator<_IteratorR, _Container>& __rhs) argument
738 operator ==(const __normal_iterator<_Iterator, _Container>& __lhs, const __normal_iterator<_Iterator, _Container>& __rhs) argument
744 operator !=(const __normal_iterator<_IteratorL, _Container>& __lhs, const __normal_iterator<_IteratorR, _Container>& __rhs) argument
750 operator !=(const __normal_iterator<_Iterator, _Container>& __lhs, const __normal_iterator<_Iterator, _Container>& __rhs) argument
757 operator <(const __normal_iterator<_IteratorL, _Container>& __lhs, const __normal_iterator<_IteratorR, _Container>& __rhs) argument
763 operator <(const __normal_iterator<_Iterator, _Container>& __lhs, const __normal_iterator<_Iterator, _Container>& __rhs) argument
769 operator >(const __normal_iterator<_IteratorL, _Container>& __lhs, const __normal_iterator<_IteratorR, _Container>& __rhs) argument
775 operator >(const __normal_iterator<_Iterator, _Container>& __lhs, const __normal_iterator<_Iterator, _Container>& __rhs) argument
781 operator <=(const __normal_iterator<_IteratorL, _Container>& __lhs, const __normal_iterator<_IteratorR, _Container>& __rhs) argument
787 operator <=(const __normal_iterator<_Iterator, _Container>& __lhs, const __normal_iterator<_Iterator, _Container>& __rhs) argument
793 operator >=(const __normal_iterator<_IteratorL, _Container>& __lhs, const __normal_iterator<_IteratorR, _Container>& __rhs) argument
799 operator >=(const __normal_iterator<_Iterator, _Container>& __lhs, const __normal_iterator<_Iterator, _Container>& __rhs) argument
809 operator -(const __normal_iterator<_IteratorL, _Container>& __lhs, const __normal_iterator<_IteratorR, _Container>& __rhs) argument
815 operator -(const __normal_iterator<_Iterator, _Container>& __lhs, const __normal_iterator<_Iterator, _Container>& __rhs) argument
[all...]
H A Dbasic_string.h2082 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
2085 __str.append(__rhs);
2098 const basic_string<_CharT,_Traits,_Alloc>& __rhs);
2108 operator+(_CharT __lhs, const basic_string<_CharT,_Traits,_Alloc>& __rhs);
2119 const _CharT* __rhs)
2122 __str.append(__rhs);
2134 operator+(const basic_string<_CharT, _Traits, _Alloc>& __lhs, _CharT __rhs) argument
2139 __str.append(__size_type(1), __rhs);
2153 const basic_string<_CharT, _Traits, _Alloc>& __rhs)
2154 { return __lhs.compare(__rhs)
2081 operator +(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) argument
2118 operator +(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const _CharT* __rhs) argument
2152 operator ==(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) argument
2164 operator ==(const _CharT* __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) argument
2176 operator ==(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const _CharT* __rhs) argument
2189 operator !=(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) argument
2201 operator !=(const _CharT* __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) argument
2213 operator !=(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const _CharT* __rhs) argument
2226 operator <(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) argument
2238 operator <(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const _CharT* __rhs) argument
2250 operator <(const _CharT* __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) argument
2263 operator >(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) argument
2275 operator >(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const _CharT* __rhs) argument
2287 operator >(const _CharT* __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) argument
2300 operator <=(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) argument
2312 operator <=(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const _CharT* __rhs) argument
2324 operator <=(const _CharT* __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) argument
2337 operator >=(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) argument
2349 operator >=(const basic_string<_CharT, _Traits, _Alloc>& __lhs, const _CharT* __rhs) argument
2361 operator >=(const _CharT* __lhs, const basic_string<_CharT, _Traits, _Alloc>& __rhs) argument
2374 swap(basic_string<_CharT, _Traits, _Alloc>& __lhs, basic_string<_CharT, _Traits, _Alloc>& __rhs) argument
[all...]
H A Dbasic_ios.h336 * @brief Copies fields of __rhs into this.
337 * @param __rhs The source values for the copies.
340 * All fields of __rhs are copied into this object except that rdbuf()
347 copyfmt(const basic_ios& __rhs);
/freebsd-11-stable/contrib/libcxxrt/
H A Dstdexcept.cc74 bad_typeid::bad_typeid(const bad_typeid &__rhs) throw() {} argument
75 bad_typeid& bad_typeid::operator=(const bad_typeid &__rhs) throw() argument
H A Dstdexcept.h78 bad_typeid(const bad_typeid &__rhs) throw();
80 bad_typeid& operator=(const bad_typeid &__rhs) throw();
/freebsd-11-stable/contrib/libstdc++/include/ext/
H A Dvstring.h1806 const __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs);
1818 const __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs);
1830 const __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs);
1842 const _CharT* __rhs);
1854 _CharT __rhs);
1867 const __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs)
1868 { return __lhs.compare(__rhs) == 0; }
1880 const __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs)
1881 { return __rhs.compare(__lhs) == 0; }
1893 const _CharT* __rhs)
1866 operator ==(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs, const __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs) argument
1879 operator ==(const _CharT* __lhs, const __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs) argument
1892 operator ==(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs, const _CharT* __rhs) argument
1906 operator !=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs, const __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs) argument
1919 operator !=(const _CharT* __lhs, const __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs) argument
1932 operator !=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs, const _CharT* __rhs) argument
1946 operator <(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs, const __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs) argument
1959 operator <(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs, const _CharT* __rhs) argument
1972 operator <(const _CharT* __lhs, const __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs) argument
1986 operator >(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs, const __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs) argument
1999 operator >(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs, const _CharT* __rhs) argument
2012 operator >(const _CharT* __lhs, const __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs) argument
2026 operator <=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs, const __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs) argument
2039 operator <=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs, const _CharT* __rhs) argument
2052 operator <=(const _CharT* __lhs, const __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs) argument
2066 operator >=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs, const __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs) argument
2079 operator >=(const __versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs, const _CharT* __rhs) argument
2092 operator >=(const _CharT* __lhs, const __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs) argument
2106 swap(__versa_string<_CharT, _Traits, _Alloc, _Base>& __lhs, __versa_string<_CharT, _Traits, _Alloc, _Base>& __rhs) argument
[all...]
/freebsd-11-stable/contrib/libstdc++/src/
H A Dlocale.cc91 locale::operator==(const locale& __rhs) const throw()
98 if (_M_impl == __rhs._M_impl)
100 else if (!_M_impl->_M_names[0] || !__rhs._M_impl->_M_names[0]
102 __rhs._M_impl->_M_names[0]) != 0)
104 else if (!_M_impl->_M_names[1] && !__rhs._M_impl->_M_names[1])
107 __ret = this->name() == __rhs.name();
/freebsd-11-stable/contrib/libstdc++/include/std/
H A Dstd_bitset.h795 operator&=(const bitset<_Nb>& __rhs) argument
797 this->_M_do_and(__rhs);
802 operator|=(const bitset<_Nb>& __rhs) argument
804 this->_M_do_or(__rhs);
809 operator^=(const bitset<_Nb>& __rhs) argument
811 this->_M_do_xor(__rhs);
1073 operator==(const bitset<_Nb>& __rhs) const
1074 { return this->_M_is_equal(__rhs); }
1077 operator!=(const bitset<_Nb>& __rhs) const
1078 { return !this->_M_is_equal(__rhs); }
[all...]
/freebsd-11-stable/contrib/libstdc++/include/tr1/
H A Dboost_shared_ptr.h703 _M_less(const __shared_ptr<_Tp1, _Lp1>& __rhs) const
704 { return _M_refcount < __rhs._M_refcount; }
901 _M_less(const __weak_ptr<_Tp1, _Lp>& __rhs) const
902 { return _M_refcount < __rhs._M_refcount; }
912 operator<(const __weak_ptr& __lhs, const __weak_ptr<_Tp1, _Lp>& __rhs) argument
913 { return __lhs._M_less(__rhs); }

Completed in 127 milliseconds