| /arkcompiler/ets_runtime/ecmascript/module/ |
| D | js_module_manager.h | 36 void StoreModuleValue(int32_t index, JSTaggedValue value); 37 void StoreModuleValue(int32_t index, JSTaggedValue value, JSTaggedValue jsFunc); 47 void StoreModuleValue(JSTaggedValue key, JSTaggedValue value); 48 void StoreModuleValue(JSTaggedValue key, JSTaggedValue value, JSTaggedValue jsFunc);
|
| D | module_data_extractor.cpp | 118 … moduleRecord->StoreModuleValue(thread, 0, JSHandle<JSTaggedValue>(thread, jsonData)); // index = 0 in ParseJsonModule() 146 moduleRecord->StoreModuleValue(thread, 0, thread->GlobalConstants()->GetHandledUndefined()); in ParseNativeModule()
|
| D | js_module_manager.cpp | 198 void ModuleManager::StoreModuleValue(int32_t index, JSTaggedValue value) in StoreModuleValue() function in panda::ecmascript::ModuleManager 205 void ModuleManager::StoreModuleValue(int32_t index, JSTaggedValue value, JSTaggedValue jsFunc) in StoreModuleValue() function in panda::ecmascript::ModuleManager 221 currentModule->StoreModuleValue(thread, index, valueHandle); in StoreModuleValueInternal() 284 void ModuleManager::StoreModuleValue(JSTaggedValue key, JSTaggedValue value) in StoreModuleValue() function in panda::ecmascript::ModuleManager 291 void ModuleManager::StoreModuleValue(JSTaggedValue key, JSTaggedValue value, JSTaggedValue jsFunc) in StoreModuleValue() function in panda::ecmascript::ModuleManager 308 currentModule->StoreModuleValue(thread, keyHandle, valueHandle); in StoreModuleValueInternal()
|
| D | js_module_source_text.h | 169 void StoreModuleValue(JSThread *thread, int32_t index, const JSHandle<JSTaggedValue> &value); 172 …void StoreModuleValue(JSThread *thread, const JSHandle<JSTaggedValue> &key, const JSHandle<JSTagge…
|
| D | js_module_source_text.cpp | 371 requiredModule->StoreModuleValue(thread, 0, JSNApiHelper::ToJSHandle(exportObject)); in LoadNativeModule() 1230 void SourceTextModule::StoreModuleValue(JSThread *thread, int32_t index, const JSHandle<JSTaggedVal… in StoreModuleValue() function in panda::ecmascript::SourceTextModule 1248 void SourceTextModule::StoreModuleValue(JSThread *thread, const JSHandle<JSTaggedValue> &key, in StoreModuleValue() function in panda::ecmascript::SourceTextModule
|
| /arkcompiler/ets_runtime/ecmascript/module/tests/ |
| D | ecma_module_test.cpp | 148 HWTEST_F_L0(EcmaModuleTest, StoreModuleValue) in HWTEST_F_L0() argument 164 module->StoreModuleValue(thread, storeKey, valueHandle); in HWTEST_F_L0() 196 moduleExport->StoreModuleValue(thread, exportLocalNameHandle, exportValueHandle); in HWTEST_F_L0()
|
| /arkcompiler/ets_runtime/ecmascript/stubs/ |
| D | runtime_stubs-inl.h | 1130 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(index, value); in RuntimeStModuleVar() 1136 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(index, value, jsFunc); in RuntimeStModuleVar() 1141 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(key, value); in RuntimeStModuleVar() 1147 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(key, value, jsFunc); in RuntimeStModuleVar()
|