Lines Matching refs:Container
89 template <class Container, class ValueType = typename Container::value_type>
99 template <class Container>
100 struct ContainerDebugHelper<Container, char> {
106 template <class Container, class Key, class Value>
107 struct ContainerDebugHelper<Container, std::pair<const Key, Value> > {
119 template <class Container, ContainerType CT,
120 class Helper = ContainerDebugHelper<Container> >
122 using value_type = typename Container::value_type;
123 using iterator = typename Container::iterator;
124 using const_iterator = typename Container::const_iterator;
125 using allocator_type = typename Container::allocator_type;
167 static Container makeContainer(int size, allocator_type A = allocator_type()) {
168 Container C(A);
204 Container C = makeContainer(1);
218 Container C = makeContainer(1);
232 Container C = makeContainer(1);
253 Container C1 = makeContainer(3);
255 Container C2 = C1;
273 Container C1 = makeContainer(3);
275 Container C2 = std::move(C1);
289 Container C1 = makeContainer(2);
293 Container C2 = C1;
304 Container C1 = makeContainer(2);
308 Container C2 = C1;
321 Container C1 = makeContainer(3);
322 Container C2 = makeContainer(3);
337 Container C1 = makeContainer(3, allocator_type(1));
338 Container C2 = makeContainer(1, allocator_type(2));
339 Container C3 = makeContainer(2, allocator_type(2));