/arkcompiler/ets_runtime/ecmascript/module/ |
D | js_module_manager.cpp | 59 …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()
|
D | js_module_source_text.h | 168 JSTaggedValue GetModuleValue(JSThread *thread, int32_t index, bool isThrow); 171 JSTaggedValue GetModuleValue(JSThread *thread, JSTaggedValue key, bool isThrow);
|
D | js_module_namespace.cpp | 102 … GetModuleValue(thread, resolvedBind->GetBindingName(), true); in GetProperty() 109 GetModuleValue(thread, resolvedBind->GetIndex(), true); in GetProperty()
|
D | js_module_source_text.cpp | 388 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/ |
D | debugger_executor.cpp | 99 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()
|
D | debugger_executor.h | 47 …static Local<JSValueRef> GetModuleValue(const EcmaVM *vm, const FrameHandler *frameHandler, Local<…
|
/arkcompiler/ets_runtime/ecmascript/module/tests/ |
D | ecma_module_test.cpp | 167 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/ |
D | debugger_api.h | 95 …static Local<JSValueRef> GetModuleValue(const EcmaVM *ecmaVm, const JSHandle<JSTaggedValue> &curre…
|
D | debugger_api.cpp | 528 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/ |
D | jsnapi.cpp | 922 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()
|