Lines Matching defs:cell
138 Handle<Cell> cell =
140 module->regular_exports().set(ExportIndex(cell_index), *cell);
146 exports = ObjectHashTable::Put(exports, name, cell);
153 Object cell;
156 cell = regular_imports().get(ImportIndex(cell_index));
159 cell = regular_exports().get(ExportIndex(cell_index));
164 return Cell::cast(cell);
222 Handle<Cell> cell;
225 .ToHandle(&cell)) {
235 exports = ObjectHashTable::Put(exports, export_name, cell);
237 return cell;
272 // exports provide the name, make sure they all map it to the same cell.
286 Handle<Cell> cell;
289 .ToHandle(&cell)) {
290 if (unique_cell.is_null()) unique_cell = cell;
291 if (*unique_cell != *cell) {
510 Handle<Cell> cell;
513 .ToHandle(&cell)) {
516 module->regular_imports().set(ImportIndex(entry->cell_index()), *cell);
587 Handle<Cell> cell(Cell::cast(requested_exports->ValueAt(index)), isolate);
588 auto insert_result = more_exports.insert(std::make_pair(name, cell));
591 if (*it->second == *cell || it->second->IsUndefined(roots)) {