/third_party/node/deps/v8/src/objects/ |
H A D | synthetic-module.cc | 75 Handle<FixedArray> export_names(module->export_names(), isolate); in PrepareInstantiate() 76 // Spec step 7: For each export_name in module->export_names... in PrepareInstantiate() 77 for (int i = 0, n = export_names->length(); i < n; ++i) { in PrepareInstantiate() 82 Handle<String> name(String::cast(export_names->get(i)), isolate); in PrepareInstantiate()
|
H A D | source-text-module.cc | 374 Handle<FixedArray> export_names(module_info->RegularExportExportNames(i), in PrepareInstantiate() 376 CreateExport(isolate, module, cell_index, export_names); in PrepareInstantiate()
|
H A D | module.cc | 142 : SyntheticModule::cast(*module).export_names().length(); in Reset()
|
/third_party/node/deps/v8/src/ast/ |
H A D | modules.cc | 195 Handle<FixedArray> export_names = in SerializeRegularExports() local 202 export_names; in SerializeRegularExports() 208 export_names->set(i++, *it->second->export_name->string()); in SerializeRegularExports() 306 export_names, in BetterDuplicate() 311 export_names.insert(std::make_pair(candidate->export_name, candidate)); in BetterDuplicate() 327 export_names(zone); in FindDuplicateExport() 329 duplicate = BetterDuplicate(elem.second, export_names, duplicate); in FindDuplicateExport() 333 duplicate = BetterDuplicate(entry, export_names, duplicate); in FindDuplicateExport() 303 BetterDuplicate( const SourceTextModuleDescriptor::Entry* candidate, ZoneMap<const AstRawString*, const SourceTextModuleDescriptor::Entry*>& export_names, const SourceTextModuleDescriptor::Entry* current_duplicate) BetterDuplicate() argument
|
/third_party/node/src/ |
H A D | module_wrap.cc | 163 std::vector<Local<String>> export_names(len); in New() 168 export_names[i] = export_name_val.As<String>(); in New() 171 module = Module::CreateSyntheticModule(isolate, url, export_names, in New()
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-script.h | 284 * export_names must not contain duplicates. 290 const std::vector<Local<String>>& export_names, 297 * of the export_names that were passed in that CreateSyntheticModule call.
|
/third_party/node/deps/v8/include/ |
H A D | v8-script.h | 269 * export_names must not contain duplicates. 275 const std::vector<Local<String>>& export_names, 282 * of the export_names that were passed in that CreateSyntheticModule call.
|
/third_party/node/deps/v8/src/diagnostics/ |
H A D | objects-debug.cc | 1692 for (int i = 0; i < export_names().length(); i++) { in SyntheticModuleVerify() 1693 CHECK(export_names().get(i).IsString()); in SyntheticModuleVerify()
|
/third_party/node/deps/v8/src/heap/ |
H A D | factory.h | 642 Handle<String> module_name, Handle<FixedArray> export_names,
|
H A D | factory.cc | 2801 Handle<String> module_name, Handle<FixedArray> export_names, in NewSyntheticModule() 2806 ObjectHashTable::New(isolate(), static_cast<int>(export_names->length())); in NewSyntheticModule() 2819 module.set_export_names(*export_names); in NewSyntheticModule() 2800 NewSyntheticModule( Handle<String> module_name, Handle<FixedArray> export_names, v8::Module::SyntheticModuleEvaluationSteps evaluation_steps) NewSyntheticModule() argument
|
/third_party/node/deps/v8/src/d8/ |
H A D | d8.cc | 1069 std::vector<Local<String>> export_names{ in FetchModuleTree() 1075 export_names, Shell::JSONModuleEvaluationSteps); in FetchModuleTree()
|
/third_party/node/deps/v8/src/api/ |
H A D | api.cc | 2427 const std::vector<Local<v8::String>>& export_names, in CreateSyntheticModule() 2433 static_cast<int>(export_names.size())); in CreateSyntheticModule() 2436 Utils::OpenHandle(*export_names[i])); in CreateSyntheticModule() 2425 CreateSyntheticModule( Isolate* isolate, Local<String> module_name, const std::vector<Local<v8::String>>& export_names, v8::Module::SyntheticModuleEvaluationSteps evaluation_steps) CreateSyntheticModule() argument
|