Home
last modified time | relevance | path

Searched defs:static_vector (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/libs/stl_interfaces/example/
Dstatic_vector.hpp40 struct static_vector : sequence_container_interface< struct
66 static_vector() noexcept : size_(0) {} in static_vector() argument
67 explicit static_vector(size_type n) : size_(0) { resize(n); } in static_vector() argument
68 explicit static_vector(size_type n, T const & x) : size_(0) in static_vector() argument
79 static_vector(InputIterator first, InputIterator last) : size_(0) in static_vector() argument
83 static_vector(std::initializer_list<T> il) : in static_vector() function
86 static_vector(static_vector const & other) : size_(0) in static_vector() argument
90 static_vector(static_vector && other) noexcept( in static_vector() function
100 static_vector & operator=(static_vector const & other) in operator =() argument
106 static_vector & operator=(static_vector && other) noexcept(noexcept( in operator =() argument
[all …]
/third_party/boost/boost/container/
Dstatic_vector.hpp150 class static_vector class
200 BOOST_CONTAINER_FORCEINLINE static_vector() BOOST_NOEXCEPT_OR_NOTHROW in static_vector() function in boost::container::static_vector
215 BOOST_CONTAINER_FORCEINLINE explicit static_vector(size_type count) in static_vector() function in boost::container::static_vector
233 BOOST_CONTAINER_FORCEINLINE static_vector(size_type count, default_init_t) in static_vector() function in boost::container::static_vector
249 BOOST_CONTAINER_FORCEINLINE static_vector(size_type count, value_type const& value) in static_vector() function in boost::container::static_vector
268 BOOST_CONTAINER_FORCEINLINE static_vector(Iterator first, Iterator last) in static_vector() function in boost::container::static_vector
285 BOOST_CONTAINER_FORCEINLINE static_vector(std::initializer_list<value_type> il) in static_vector() function in boost::container::static_vector
299 BOOST_CONTAINER_FORCEINLINE static_vector(static_vector const& other) in static_vector() function in boost::container::static_vector
303 BOOST_CONTAINER_FORCEINLINE static_vector(static_vector const& other, const allocator_type &) in static_vector() function in boost::container::static_vector
307 …BOOST_CONTAINER_FORCEINLINE static_vector(BOOST_RV_REF(static_vector) other, const allocator_type… in static_vector() function in boost::container::static_vector
[all …]
/third_party/boost/libs/container/test/
Dexplicit_inst_static_vector_test.cpp26 template class boost::container::static_vector<int, 10>; member in boost::container::boost::container
/third_party/boost/libs/stl_interfaces/test/
Dstatic_vec.cpp15 template struct static_vector<int, 1024>; variable