Lines Matching refs:count_
36 : isolate_(isolate), count_(count), byte_offset_(0) { in AliasedBufferBase()
66 : isolate_(isolate), count_(count), byte_offset_(byte_offset) { in AliasedBufferBase()
86 count_(that.count_), in AliasedBufferBase()
95 count_ = that.count_;
188 DCHECK_LT(index, count_); in SetValue()
196 DCHECK_LT(index, count_); in GetValue()
212 return count_; in Length()
219 DCHECK_GE(new_capacity, count_); in reserve()
223 const size_t old_size_in_bytes = sizeof(NativeT) * count_; in reserve()
243 count_ = new_capacity; in reserve()
248 size_t count_; variable