Lines Matching defs:final
191 struct ConstantArraySlice final : public ZoneObject { struct
204 inline size_t available() const { return capacity() - reserved() - size(); } in available()
205 inline size_t reserved() const { return reserved_; } in reserved()
206 inline size_t capacity() const { return capacity_; } in capacity()
207 inline size_t size() const { return constants_.size(); } in size()
208 inline size_t start_index() const { return start_index_; } in start_index()
209 inline size_t max_index() const { return start_index_ + capacity() - 1; } in max_index()
210 inline OperandSize operand_size() const { return operand_size_; } in operand_size()
214 const size_t capacity_;
215 size_t reserved_;
216 OperandSize operand_size_;
217 ZoneVector<Entry> constants_;