Searched refs:regular_exports (Results 1 – 8 of 8) sorted by relevance
/external/v8/src/ast/ |
D | scopeinfo.cc | 914 Handle<FixedArray> regular_exports = in New() local 932 result->set(kRegularExportsIndex, *regular_exports); in New() 939 DCHECK_EQ(regular_exports()->length() % kRegularExportLength, 0); in RegularExportCount() 940 return regular_exports()->length() / kRegularExportLength; in RegularExportCount() 944 return String::cast(regular_exports()->get(i * kRegularExportLength + in RegularExportLocalName() 949 return Smi::cast(regular_exports()->get(i * kRegularExportLength + in RegularExportCellIndex() 955 return FixedArray::cast(regular_exports()->get( in RegularExportExportNames()
|
D | modules.h | 139 const ZoneMultimap<const AstRawString*, Entry*>& regular_exports() const { in regular_exports() function
|
D | scopes.cc | 1961 for (const auto& it : module()->regular_exports()) { in AllocateModuleVariables()
|
/external/v8/src/interpreter/ |
D | interpreter.cc | 857 Node* regular_exports = in DoLdaModuleVariable() local 861 Node* cell = __ LoadFixedArrayElement(regular_exports, export_index); in DoLdaModuleVariable() 900 Node* regular_exports = in DoStaModuleVariable() local 904 Node* cell = __ LoadFixedArrayElement(regular_exports, export_index); in DoStaModuleVariable()
|
/external/v8/src/ |
D | factory.cc | 1829 Handle<FixedArray> regular_exports = in NewModule() local 1841 module->set_regular_exports(*regular_exports); in NewModule()
|
D | objects-inl.h | 5795 ACCESSORS(Module, regular_exports, FixedArray, kRegularExportsOffset) in ACCESSORS() 8084 FixedArray* ModuleInfo::regular_exports() const { in regular_exports() function 8098 return regular_exports() == other->regular_exports() && in Equals()
|
D | objects.h | 8164 inline FixedArray* regular_exports() const; 8242 DECL_ACCESSORS(regular_exports, FixedArray)
|
D | objects.cc | 19908 module->regular_exports()->set(ExportIndex(cell_index), *cell); in CreateExport() 19928 object = handle(module->regular_exports()->get(ExportIndex(cell_index)), in LoadVariable() 19943 Handle<Object> object(module->regular_exports()->get(ExportIndex(cell_index)), in StoreVariable()
|