| /arkcompiler/ets_runtime/ecmascript/module/ |
| D | js_module_manager.h | 37 void StoreModuleValue(int32_t index, JSTaggedValue value); 38 void StoreModuleValue(int32_t index, JSTaggedValue value, JSTaggedValue jsFunc); 48 void StoreModuleValue(JSTaggedValue key, JSTaggedValue value); 49 void StoreModuleValue(JSTaggedValue key, JSTaggedValue value, JSTaggedValue jsFunc);
|
| D | module_data_extractor.cpp | 121 … moduleRecord->StoreModuleValue(thread, 0, JSHandle<JSTaggedValue>(thread, jsonData)); // index = 0 in ParseJsonModule() 149 moduleRecord->StoreModuleValue(thread, 0, thread->GlobalConstants()->GetHandledUndefined()); in ParseNativeModule()
|
| D | js_module_manager.cpp | 239 void ModuleManager::StoreModuleValue(int32_t index, JSTaggedValue value) in StoreModuleValue() function in panda::ecmascript::ModuleManager 246 void ModuleManager::StoreModuleValue(int32_t index, JSTaggedValue value, JSTaggedValue jsFunc) in StoreModuleValue() function in panda::ecmascript::ModuleManager 262 currentModule->StoreModuleValue(thread, index, valueHandle); in StoreModuleValueInternal() 325 void ModuleManager::StoreModuleValue(JSTaggedValue key, JSTaggedValue value) in StoreModuleValue() function in panda::ecmascript::ModuleManager 332 void ModuleManager::StoreModuleValue(JSTaggedValue key, JSTaggedValue value, JSTaggedValue jsFunc) in StoreModuleValue() function in panda::ecmascript::ModuleManager 349 currentModule->StoreModuleValue(thread, keyHandle, valueHandle); in StoreModuleValueInternal()
|
| D | js_module_source_text.h | 211 void StoreModuleValue(JSThread *thread, int32_t index, const JSHandle<JSTaggedValue> &value); 214 …void StoreModuleValue(JSThread *thread, const JSHandle<JSTaggedValue> &key, const JSHandle<JSTagge…
|
| D | js_module_source_text.cpp | 392 requiredModule->StoreModuleValue(thread, 0, JSNApiHelper::ToJSHandle(exportObject)); in LoadNativeModule() 1439 void SourceTextModule::StoreModuleValue(JSThread *thread, int32_t index, const JSHandle<JSTaggedVal… in StoreModuleValue() function in panda::ecmascript::SourceTextModule 1457 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 | 1238 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(index, value); in RuntimeStModuleVar() 1244 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(index, value, jsFunc); in RuntimeStModuleVar() 1249 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(key, value); in RuntimeStModuleVar() 1255 thread->GetCurrentEcmaContext()->GetModuleManager()->StoreModuleValue(key, value, jsFunc); in RuntimeStModuleVar()
|