Lines Matching defs:index
35 V8_INLINE RootIndex operator++(RootIndex& index) {
37 index = static_cast<RootIndex>(static_cast<type>(index) + 1);
38 return index;
42 RootIndex* index) const {
48 *index = static_cast<RootIndex>(location - first_root);
53 bool RootsTable::IsRootHandle(Handle<T> handle, RootIndex* index) const {
58 return IsRootHandleLocation(handle_location, index);
94 size_t index = static_cast<size_t>(root_index);
95 DCHECK_LT(index, kEntriesCount);
96 return &read_only_roots_[index];