Searched refs:__lx (Results 1 – 3 of 3) sorted by relevance
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| D | forward_list.h | 1455 operator==(const forward_list<_Tp, _Alloc>& __lx, in _GLIBCXX_VISIBILITY() 1496 operator<(const forward_list<_Tp, _Alloc>& __lx, in _GLIBCXX_VISIBILITY() 1498 { return std::lexicographical_compare(__lx.cbegin(), __lx.cend(), in _GLIBCXX_VISIBILITY() 1505 operator!=(const forward_list<_Tp, _Alloc>& __lx, in _GLIBCXX_VISIBILITY() 1507 { return !(__lx == __ly); } in _GLIBCXX_VISIBILITY() 1513 operator>(const forward_list<_Tp, _Alloc>& __lx, in _GLIBCXX_VISIBILITY() 1515 { return (__ly < __lx); } in _GLIBCXX_VISIBILITY() 1521 operator>=(const forward_list<_Tp, _Alloc>& __lx, in _GLIBCXX_VISIBILITY() 1523 { return !(__lx < __ly); } in _GLIBCXX_VISIBILITY() 1529 operator<=(const forward_list<_Tp, _Alloc>& __lx, in _GLIBCXX_VISIBILITY() [all …]
|
| D | forward_list.tcc | 393 operator==(const forward_list<_Tp, _Alloc>& __lx, in operator ==() argument 398 auto __ix = __lx.cbegin(); in operator ==() 400 while (__ix != __lx.cend() && __iy != __ly.cend()) in operator ==() 407 if (__ix == __lx.cend() && __iy == __ly.cend()) in operator ==()
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/debug/ |
| D | forward_list | 865 operator==(const forward_list<_Tp, _Alloc>& __lx, 867 { return __lx._M_base() == __ly._M_base(); } 878 operator<(const forward_list<_Tp, _Alloc>& __lx, 880 { return __lx._M_base() < __ly._M_base(); } 884 operator!=(const forward_list<_Tp, _Alloc>& __lx, 886 { return !(__lx == __ly); } 891 operator>(const forward_list<_Tp, _Alloc>& __lx, 893 { return (__ly < __lx); } 898 operator>=(const forward_list<_Tp, _Alloc>& __lx, 900 { return !(__lx < __ly); } [all …]
|