Searched defs:nasty_vector (Results 1 - 1 of 1) sorted by relevance

/external/libcxx/test/support/
H A Dnasty_containers.hpp17 class nasty_vector class
35 nasty_vector() : v_() {} function in class:nasty_vector
36 explicit nasty_vector(size_type n) : v_(n) {} function in class:nasty_vector
37 nasty_vector(size_type n, const value_type& value) : v_(n, value) {} function in class:nasty_vector
38 template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, last) {} function in class:nasty_vector
40 nasty_vector(std::initializer_list<value_type> il) : v_(il) {} function in class:nasty_vector
42 ~nasty_vector() {}
124 void swap(nasty_vector &nv) _NOEXCEPT_(std::__is_nothrow_swappable<nested_container>::value)
127 nasty_vector *operator &() { return nullptr; } // nasty
128 const nasty_vector *operato
[all...]

Completed in 120 milliseconds