Lines Matching refs:nested_container
23 typedef typename std::vector<T> nested_container; typedef in nasty_vector
24 typedef typename nested_container::value_type value_type;
25 typedef typename nested_container::reference reference;
26 typedef typename nested_container::const_reference const_reference;
27 typedef typename nested_container::iterator iterator;
28 typedef typename nested_container::const_iterator const_iterator;
30 typedef typename nested_container::size_type size_type;
31 typedef typename nested_container::difference_type difference_type;
32 typedef typename nested_container::pointer pointer;
33 typedef typename nested_container::const_pointer const_pointer;
35 typedef typename nested_container::reverse_iterator reverse_iterator;
36 typedef typename nested_container::const_reverse_iterator const_reverse_iterator;
129 noexcept(std::is_nothrow_swappable<nested_container>::value) in swap()
131 TEST_NOEXCEPT_COND(std::__is_nothrow_swappable<nested_container>::value) in swap()
138 nested_container v_;
149 typedef typename std::list<T> nested_container; typedef in nasty_list
150 typedef typename nested_container::value_type value_type;
151 typedef typename nested_container::reference reference;
152 typedef typename nested_container::const_reference const_reference;
153 typedef typename nested_container::iterator iterator;
154 typedef typename nested_container::const_iterator const_iterator;
156 typedef typename nested_container::size_type size_type;
157 typedef typename nested_container::difference_type difference_type;
158 typedef typename nested_container::pointer pointer;
159 typedef typename nested_container::const_pointer const_pointer;
161 typedef typename nested_container::reverse_iterator reverse_iterator;
162 typedef typename nested_container::const_reverse_iterator const_reverse_iterator;
253 noexcept(std::is_nothrow_swappable<nested_container>::value) in swap()
255 TEST_NOEXCEPT_COND(std::__is_nothrow_swappable<nested_container>::value) in swap()
289 nested_container l_;