Lines Matching +full:14 +full:a

23     swap(T& a, T& b);
35 swap(T& a, T& b) noexcept(is_nothrow_move_constructible<T>::value &&
40 swap(T (&a)[N], T (&b)[N]) noexcept(noexcept(swap(*a, *b)));
42 …plate <class T> T&& forward(typename remove_reference<T>::type& t) noexcept; // constexpr in C++14
43 …plate <class T> T&& forward(typename remove_reference<T>::type&& t) noexcept; // constexpr in C++14
49 …plate <class T> typename remove_reference<T>::type&& move(T&&) noexcept; // constexpr in C++14
58 move_if_noexcept(T& x) noexcept; // constexpr in C++14
85 … explicit(see-below) pair(const T1& x, const T2& y); // constexpr in C++14
86 … template <class U = T1, class V = T2> explicit(see-below) pair(U&&, V&&); // constexpr in C++14
88 … template <class U, class V> explicit(see-below) pair(const pair<U, V>& p); // constexpr in C++14
89 … template <class U, class V> explicit(see-below) pair(pair<U, V>&& p); // constexpr in C++14
124 …l operator==(const pair<T1,T2>&, const pair<U1,U2>&); // constexpr in C++14
126 … pair<T1,T2>&, const pair<U1,U2>&); // constexpr in C++14, removed in C++20
128 … pair<T1,T2>&, const pair<U1,U2>&); // constexpr in C++14, removed in C++20
130 … pair<T1,T2>&, const pair<U1,U2>&); // constexpr in C++14, removed in C++20
132 … pair<T1,T2>&, const pair<U1,U2>&); // constexpr in C++14, removed in C++20
134 … pair<T1,T2>&, const pair<U1,U2>&); // constexpr in C++14, removed in C++20
140 …plate <class T1, class T2> pair<V1, V2> make_pair(T1&&, T2&&); // constexpr in C++14
160 get(pair<T1, T2>&) noexcept; // constexpr in C++14
164 get(const pair<T1, T2>&) noexcept; // constexpr in C++14
168 get(pair<T1, T2>&&) noexcept; // constexpr in C++14
172 get(const pair<T1, T2>&&) noexcept; // constexpr in C++14
175 constexpr T1& get(pair<T1, T2>&) noexcept; // C++14
178 constexpr const T1& get(const pair<T1, T2>&) noexcept; // C++14
181 constexpr T1&& get(pair<T1, T2>&&) noexcept; // C++14
184 constexpr const T1&& get(const pair<T1, T2>&&) noexcept; // C++14
187 constexpr T1& get(pair<T2, T1>&) noexcept; // C++14
190 constexpr const T1& get(const pair<T2, T1>&) noexcept; // C++14
193 constexpr T1&& get(pair<T2, T1>&&) noexcept; // C++14
196 constexpr const T1&& get(const pair<T2, T1>&&) noexcept; // C++14
198 // C++14
259 #if _LIBCPP_STD_VER >= 14