Searched refs:export_value (Results 1 - 7 of 7) sorted by relevance
/third_party/node/deps/v8/src/objects/ |
H A D | synthetic-module.cc | 24 Handle<Object> export_value) { in SetExport() 34 // Spec step 2: Set the mutable binding of export_name to export_value in SetExport() 35 Cell::cast(*export_object).set_value(*export_value); in SetExport() 43 Handle<Object> export_value) { in SetExportStrict() 48 SetExport(isolate, module, export_name, export_value); in SetExportStrict() 21 SetExport(Isolate* isolate, Handle<SyntheticModule> module, Handle<String> export_name, Handle<Object> export_value) SetExport() argument 40 SetExportStrict(Isolate* isolate, Handle<SyntheticModule> module, Handle<String> export_name, Handle<Object> export_value) SetExportStrict() argument
|
H A D | synthetic-module.h | 29 // export_value. An error will be thrown if export_name is not one 34 Handle<Object> export_value); 42 Handle<Object> export_value);
|
/third_party/node/deps/v8/src/web-snapshot/ |
H A D | web-snapshot.cc | 1043 Handle<Object> export_value = handle(wrapper->value(), isolate_); in SerializeExport() local 1044 WriteValue(export_value, export_serializer_); in SerializeExport() 2060 Object export_value = ReadValue(); in DeserializeExports() local 2062 USE(export_value); in DeserializeExports() 2086 Object export_value = ReadValue(); in DeserializeExports() local 2092 return_value_ = handle(export_value, isolate_); in DeserializeExports() 2105 PropertyCell::InitialType(isolate_, export_value)); in DeserializeExports() 2106 Handle<Object> export_value_handle(export_value, isolate_); in DeserializeExports()
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-script.h | 295 * export_value. This method must be called only on Modules created via 301 Isolate* isolate, Local<String> export_name, Local<Value> export_value);
|
/third_party/node/deps/v8/include/ |
H A D | v8-script.h | 280 * export_value. This method must be called only on Modules created via 286 Isolate* isolate, Local<String> export_name, Local<Value> export_value);
|
/third_party/node/src/ |
H A D | module_wrap.cc | 718 Local<Value> export_value = args[1]; in SetSyntheticExport() local 721 USE(module->SetSyntheticModuleExport(isolate, export_name, export_value)); in SetSyntheticExport()
|
/third_party/node/deps/v8/src/api/ |
H A D | api.cc | 2446 Local<v8::Value> export_value) { in SetSyntheticModuleExport() 2449 i::Handle<i::Object> i_export_value = Utils::OpenHandle(*export_value); in SetSyntheticModuleExport() 2444 SetSyntheticModuleExport(Isolate* isolate, Local<String> export_name, Local<v8::Value> export_value) SetSyntheticModuleExport() argument
|
Completed in 37 milliseconds