Searched defs:nasty_vector (Results 1 – 3 of 3) sorted by relevance
/external/libcxx/test/support/ |
D | nasty_containers.hpp | 20 class nasty_vector class 38 nasty_vector() : v_() {} in nasty_vector() function in nasty_vector 39 explicit nasty_vector(size_type n) : v_(n) {} in nasty_vector() function in nasty_vector 40 nasty_vector(size_type n, const value_type& value) : v_(n, value) {} in nasty_vector() function in nasty_vector 41 …template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, l… in nasty_vector() function in nasty_vector 43 nasty_vector(std::initializer_list<value_type> il) : v_(il) {} in nasty_vector() function in nasty_vector
|
/external/cronet/stable/third_party/libc++/src/test/support/ |
D | nasty_containers.h | 39 nasty_vector() : v_() {} in nasty_vector() function 40 explicit nasty_vector(size_type n) : v_(n) {} in nasty_vector() function 41 nasty_vector(size_type n, const value_type& value) : v_(n, value) {} in nasty_vector() function 42 …template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, l… in nasty_vector() function 44 nasty_vector(std::initializer_list<value_type> il) : v_(il) {} in nasty_vector() function
|
/external/cronet/tot/third_party/libc++/src/test/support/ |
D | nasty_containers.h | 39 nasty_vector() : v_() {} in nasty_vector() function 40 explicit nasty_vector(size_type n) : v_(n) {} in nasty_vector() function 41 nasty_vector(size_type n, const value_type& value) : v_(n, value) {} in nasty_vector() function 42 …template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, l… in nasty_vector() function 44 nasty_vector(std::initializer_list<value_type> il) : v_(il) {} in nasty_vector() function
|