Lines Matching refs:swap
127 StaticVector(StaticVector&& other) { swap<true>(other); } in StaticVector()
167 std::swap(size_, other.size_); in StaticVector()
214 swap(copy);
220 swap<true>(other);
226 void swap(StaticVector&);
390 void StaticVector<T, N>::swap(StaticVector& other) { in swap() function
402 std::swap(from, to); in swap()
403 std::swap(min, max); in swap()
418 std::swap(size_, other.size_); in swap()
422 inline void swap(StaticVector<T, N>& lhs, StaticVector<T, N>& rhs) { in swap() function
423 lhs.swap(rhs); in swap()