Home
last modified time | relevance | path

Searched refs:GetModuleValue (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/module/
Djs_module_manager.cpp59 …return SourceTextModule::Cast(currentModule.GetTaggedObject())->GetModuleValue(vm_->GetJSThread(),… in GetModuleValueInner()
68 …return SourceTextModule::Cast(currentModule.GetTaggedObject())->GetModuleValue(vm_->GetJSThread(),… in GetModuleValueInner()
76 …return SourceTextModule::Cast(currentModule->GetTaggedObject())->GetModuleValue(vm_->GetJSThread()… in GetModuleValueInner()
123 resolvedModule.GetTaggedObject())->GetModuleValue(thread, binding->GetIndex(), false); in GetModuleValueOutterInternal()
141 SourceTextModule::Cast(resolvedModule.GetTaggedObject())->GetModuleValue(thread, 0, false)); in GetNativeModuleValue()
231 …return SourceTextModule::Cast(currentModule.GetTaggedObject())->GetModuleValue(vm_->GetJSThread(),… in GetModuleValueInner()
241 …return SourceTextModule::Cast(currentModule.GetTaggedObject())->GetModuleValue(vm_->GetJSThread(),… in GetModuleValueInner()
281 return module->GetModuleValue(thread, binding->GetBindingName(), false); in GetModuleValueOutterInternal()
599 …return SourceTextModule::Cast(requiredModuleST.GetTaggedValue())->GetModuleValue(thread, 0, false); in GetModuleNamespaceInternal()
Djs_module_source_text.h168 JSTaggedValue GetModuleValue(JSThread *thread, int32_t index, bool isThrow);
171 JSTaggedValue GetModuleValue(JSThread *thread, JSTaggedValue key, bool isThrow);
Djs_module_namespace.cpp102GetModuleValue(thread, resolvedBind->GetBindingName(), true); in GetProperty()
109 GetModuleValue(thread, resolvedBind->GetIndex(), true); in GetProperty()
Djs_module_source_text.cpp388 JSHandle<JSTaggedValue> nativeExports(thread, requiredModule->GetModuleValue(thread, 0, false)); in InstantiateNativeModule()
1164 JSTaggedValue SourceTextModule::GetModuleValue(JSThread *thread, int32_t index, bool isThrow) in GetModuleValue() function in panda::ecmascript::SourceTextModule
1179 JSTaggedValue SourceTextModule::GetModuleValue(JSThread *thread, JSTaggedValue key, bool isThrow) in GetModuleValue() function in panda::ecmascript::SourceTextModule
/arkcompiler/toolchain/tooling/backend/
Ddebugger_executor.cpp99 value = GetModuleValue(vm, frameHandler, name); in GetValue()
203 Local<JSValueRef> DebuggerExecutor::GetModuleValue(const EcmaVM *vm, const FrameHandler *frameHandl… in GetModuleValue() function in panda::ecmascript::tooling::DebuggerExecutor
216 result = DebuggerApi::GetModuleValue(vm, currentModule, varName); in GetModuleValue()
Ddebugger_executor.h47 …static Local<JSValueRef> GetModuleValue(const EcmaVM *vm, const FrameHandler *frameHandler, Local<…
/arkcompiler/ets_runtime/ecmascript/module/tests/
Decma_module_test.cpp167 JSTaggedValue loadValue = module->GetModuleValue(thread, loadKey.GetTaggedValue(), false); in HWTEST_F_L0()
179 HWTEST_F_L0(EcmaModuleTest, GetModuleValue) in HWTEST_F_L0() argument
199 moduleExport->GetModuleValue(thread, exportLocalNameHandle.GetTaggedValue(), false); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/debugger/
Ddebugger_api.h95 …static Local<JSValueRef> GetModuleValue(const EcmaVM *ecmaVm, const JSHandle<JSTaggedValue> &curre…
Ddebugger_api.cpp528 Local<JSValueRef> DebuggerApi::GetModuleValue(const EcmaVM *ecmaVm, const JSHandle<JSTaggedValue> &… in GetModuleValue() function in panda::ecmascript::tooling::DebuggerApi
685 Local<JSValueRef> value = GetModuleValue(ecmaVm, importModule, importName); in GetIndirectExportVariables()
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp922 JSTaggedValue result = ecmaModule->GetModuleValue(thread, index, false); in GetExportObject()
929 JSTaggedValue result = ecmaModule->GetModuleValue(thread, keyHandle.GetTaggedValue(), false); in GetExportObject()
944 JSTaggedValue result = ecmaModule->GetModuleValue(thread, index, false); in GetExportObjectFromBuffer()
951 JSTaggedValue result = ecmaModule->GetModuleValue(thread, keyHandle.GetTaggedValue(), false); in GetExportObjectFromBuffer()