Lines Matching defs:capacity_
39 size_t capacity_ = 0;
44 capacity_ = 0;
57 : buffer_(other.buffer_), size_(other.size_), capacity_(other.capacity_) {
81 capacity_ = other.capacity_;
95 LIBC_INLINE constexpr size_t capacity() const { return capacity_; }
127 if (new_capacity <= capacity_)
137 capacity_ = new_capacity;
144 if (size > capacity_) {