Lines Matching refs:alloc
60 explicit dchecked_vector(const allocator_type& alloc) in dchecked_vector() argument
61 : Base(alloc) { } in dchecked_vector()
62 explicit dchecked_vector(size_type n, const allocator_type& alloc = allocator_type())
63 : Base(n, alloc) { } in Base() argument
66 const allocator_type& alloc = allocator_type())
67 : Base(n, value, alloc) { } in Base() argument
71 const allocator_type& alloc = allocator_type())
72 : Base(first, last, alloc) { } in Base() argument
75 dchecked_vector(const dchecked_vector& src, const allocator_type& alloc) in dchecked_vector() argument
76 : Base(src, alloc) { } in dchecked_vector()
79 dchecked_vector(dchecked_vector&& src, const allocator_type& alloc) in dchecked_vector() argument
80 : Base(std::move(src), alloc) { } in dchecked_vector()
82 const allocator_type& alloc = allocator_type())
83 : Base(il, alloc) { } in Base() argument