Lines Matching refs:alloc
60 explicit dchecked_vector(const allocator_type& alloc) in dchecked_vector() argument
61 : Base(alloc) { } in dchecked_vector()
64 explicit dchecked_vector(size_type n, const allocator_type& alloc = allocator_type())
65 : Base(alloc) { resize(n); } in Base() argument
68 const allocator_type& alloc = allocator_type())
69 : Base(n, value, alloc) { } in Base() argument
73 const allocator_type& alloc = allocator_type())
74 : Base(first, last, alloc) { } in Base() argument
77 dchecked_vector(const dchecked_vector& src, const allocator_type& alloc) in dchecked_vector() argument
78 : Base(src, alloc) { } in dchecked_vector()
81 dchecked_vector(dchecked_vector&& src, const allocator_type& alloc) in dchecked_vector() argument
82 : Base(std::move(src), alloc) { } in dchecked_vector()
84 const allocator_type& alloc = allocator_type())
85 : Base(il, alloc) { } in Base() argument