Home | History | Annotate | Download | only in containers

Lines Matching defs:VectorBuffer

23 // std::vector, VectorBuffer never constructs or destructs its arguments, and
38 class VectorBuffer {
40 constexpr VectorBuffer() = default;
47 VectorBuffer(size_t count)
51 VectorBuffer(VectorBuffer&& other) noexcept
57 ~VectorBuffer() { free(buffer_); }
59 VectorBuffer& operator=(VectorBuffer&& other) {
157 DISALLOW_COPY_AND_ASSIGN(VectorBuffer);