Lines Matching defs:index
15 v8::Isolate* isolate, const size_t count, const AliasedBufferIndex* index)
16 : isolate_(isolate), count_(count), byte_offset_(0), index_(index) {
18 if (index != nullptr) {
41 const AliasedBufferIndex* index)
45 index_(index) {
46 if (index != nullptr) {
147 inline void AliasedBufferBase<NativeT, V8T>::SetValue(const size_t index,
149 DCHECK_LT(index, count_);
151 buffer_[index] = value;
156 const size_t index) const {
158 DCHECK_LT(index, count_);
159 return buffer_[index];
164 AliasedBufferBase<NativeT, V8T>::operator[](size_t index) {
166 return Reference(this, index);
170 NativeT AliasedBufferBase<NativeT, V8T>::operator[](size_t index) const {
171 return GetValue(index);