Lines Matching refs:table_obj
217 auto table_obj = Handle<WasmTableObject>::cast(
221 if (!instance.is_null()) table_obj->set_instance(*instance);
222 table_obj->set_entries(*backing_store);
223 table_obj->set_current_length(initial);
224 table_obj->set_maximum_length(*max);
225 table_obj->set_raw_type(static_cast<int>(type.raw_bit_field()));
227 table_obj->set_dispatch_tables(ReadOnlyRoots(isolate).empty_fixed_array());
231 return Handle<WasmTableObject>::cast(table_obj);
235 Handle<WasmTableObject> table_obj,
238 Handle<FixedArray> dispatch_tables(table_obj->dispatch_tables(), isolate);
255 table_obj->set_dispatch_tables(*new_dispatch_tables);