Home
last modified time | relevance | path

Searched refs:ModuleInfoEntry (Results 1 – 11 of 11) sorted by relevance

/external/v8/src/objects/
Dmodule-inl.h43 CAST_ACCESSOR(ModuleInfoEntry) in ACCESSORS()
44 ACCESSORS(ModuleInfoEntry, export_name, Object, kExportNameOffset) in ACCESSORS()
45 ACCESSORS(ModuleInfoEntry, local_name, Object, kLocalNameOffset) in ACCESSORS()
46 ACCESSORS(ModuleInfoEntry, import_name, Object, kImportNameOffset) in ACCESSORS()
47 SMI_ACCESSORS(ModuleInfoEntry, module_request, kModuleRequestOffset) in ACCESSORS()
48 SMI_ACCESSORS(ModuleInfoEntry, cell_index, kCellIndexOffset) in ACCESSORS()
49 SMI_ACCESSORS(ModuleInfoEntry, beg_pos, kBegPosOffset) in ACCESSORS()
50 SMI_ACCESSORS(ModuleInfoEntry, end_pos, kEndPosOffset) in ACCESSORS()
Dmodule.h23 class ModuleInfoEntry; variable
156 Handle<ModuleInfoEntry> entry);
300 class ModuleInfoEntry : public Struct {
302 DECL_CAST(ModuleInfoEntry)
303 DECL_PRINTER(ModuleInfoEntry)
304 DECL_VERIFIER(ModuleInfoEntry)
314 static Handle<ModuleInfoEntry> New(Isolate* isolate,
331 DISALLOW_IMPLICIT_CONSTRUCTORS(ModuleInfoEntry);
Dmodule.cc127 Handle<ModuleInfoEntry> entry) { in CreateIndirectExport()
355 Handle<ModuleInfoEntry> entry = Handle<ModuleInfoEntry>::cast(object); in ResolveExport()
395 i::Handle<i::ModuleInfoEntry> entry( in ResolveExportUsingStarExports()
396 i::ModuleInfoEntry::cast(special_exports->get(i)), isolate); in ResolveExportUsingStarExports()
525 Handle<ModuleInfoEntry> entry( in PrepareInstantiate()
526 ModuleInfoEntry::cast(special_exports->get(i)), isolate); in PrepareInstantiate()
634 Handle<ModuleInfoEntry> entry( in FinishInstantiate()
635 ModuleInfoEntry::cast(regular_imports->get(i)), isolate); in FinishInstantiate()
651 Handle<ModuleInfoEntry> entry( in FinishInstantiate()
652 ModuleInfoEntry::cast(special_exports->get(i)), isolate); in FinishInstantiate()
[all …]
Dscope-info.cc867 Handle<ModuleInfoEntry> ModuleInfoEntry::New(Isolate* isolate, in New()
873 Handle<ModuleInfoEntry> result = Handle<ModuleInfoEntry>::cast( in New()
904 Handle<ModuleInfoEntry> serialized_entry = entry->Serialize(isolate); in New()
915 Handle<ModuleInfoEntry> serialized_entry = entry->Serialize(isolate); in New()
930 Handle<ModuleInfoEntry> serialized_entry = in New()
/external/v8/src/ast/
Dmodules.h17 class ModuleInfoEntry; variable
113 Handle<ModuleInfoEntry> Serialize(Isolate* isolate) const;
115 Handle<ModuleInfoEntry> entry);
Dmodules.cc110 Handle<ModuleInfoEntry> ModuleDescriptor::Entry::Serialize( in Serialize()
113 return ModuleInfoEntry::New( in Serialize()
122 Handle<ModuleInfoEntry> entry) { in Deserialize()
Dscopes.cc222 Handle<ModuleInfoEntry> serialized_entry( in ModuleScope()
223 ModuleInfoEntry::cast(special_exports->get(i)), isolate); in ModuleScope()
238 Handle<ModuleInfoEntry> serialized_entry( in ModuleScope()
239 ModuleInfoEntry::cast(namespace_imports->get(i)), isolate); in ModuleScope()
249 Handle<ModuleInfoEntry> serialized_entry( in ModuleScope()
250 ModuleInfoEntry::cast(regular_imports->get(i)), isolate); in ModuleScope()
/external/v8/src/
Dobjects-definitions.h305 V(MODULE_INFO_ENTRY, ModuleInfoEntry, module_info_entry) \
Dobjects-printer.cc1642 void ModuleInfoEntry::ModuleInfoEntryPrint(std::ostream& os) { // NOLINT in ModuleInfoEntryPrint()
Dobjects-debug.cc1505 void ModuleInfoEntry::ModuleInfoEntryVerify(Isolate* isolate) { in ModuleInfoEntryVerify()
Dobjects.h715 class ModuleInfoEntry; variable