Lines Matching refs:first
93 _T1 first; /// @c first is a copy of the first object in _GLIBCXX_VISIBILITY() member
101 : first(), second() { } in _GLIBCXX_VISIBILITY()
105 : first(__a), second(__b) { } in _GLIBCXX_VISIBILITY()
111 : first(__p.first), second(__p.second) { } in _GLIBCXX_VISIBILITY()
117 : first(__p.first), second(__p.second) { } in _GLIBCXX_VISIBILITY()
126 : first(std::forward<_U1>(__x)), second(__y) { } in _GLIBCXX_VISIBILITY()
131 : first(__x), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY()
137 : first(std::forward<_U1>(__x)), second(std::forward<_U2>(__y)) { } in _GLIBCXX_VISIBILITY()
143 : first(std::forward<_U1>(__p.first)), in _GLIBCXX_VISIBILITY()
152 first = __p.first; in _GLIBCXX_VISIBILITY()
162 first = std::forward<first_type>(__p.first); in _GLIBCXX_VISIBILITY()
171 first = __p.first; in _GLIBCXX_VISIBILITY()
180 first = std::forward<_U1>(__p.first); in _GLIBCXX_VISIBILITY()
187 noexcept(noexcept(swap(first, __p.first)) in _GLIBCXX_VISIBILITY()
191 swap(first, __p.first); in _GLIBCXX_VISIBILITY()
207 { return __x.first == __y.first && __x.second == __y.second; } in _GLIBCXX_VISIBILITY()
213 { return __x.first < __y.first in _GLIBCXX_VISIBILITY()
214 || (!(__y.first < __x.first) && __x.second < __y.second); } in _GLIBCXX_VISIBILITY()