• Home
  • Raw
  • Download

Lines Matching refs:ModuleManager

32 ModuleManager::ModuleManager(EcmaVM *vm) : vm_(vm) {}  in ModuleManager()  function in panda::ecmascript::ModuleManager
34 JSTaggedValue ModuleManager::GetCurrentModule() in GetCurrentModule()
46 JSHandle<JSTaggedValue> ModuleManager::GenerateSendableFuncModule(const JSHandle<JSTaggedValue> &mo… in GenerateSendableFuncModule()
52 JSTaggedValue ModuleManager::GetModuleValueInner(int32_t index) in GetModuleValueInner()
61 JSTaggedValue ModuleManager::GetModuleValueInner(int32_t index, JSTaggedValue jsFunc) in GetModuleValueInner()
70 JSTaggedValue ModuleManager::GetModuleValueInner(int32_t index, JSHandle<JSTaggedValue> currentModu… in GetModuleValueInner()
78 JSTaggedValue ModuleManager::GetModuleValueOutter(int32_t index) in GetModuleValueOutter()
84 JSTaggedValue ModuleManager::GetModuleValueOutter(int32_t index, JSTaggedValue jsFunc) in GetModuleValueOutter()
90 JSTaggedValue ModuleManager::GetModuleValueOutter(int32_t index, JSHandle<JSTaggedValue> currentMod… in GetModuleValueOutter()
95 JSTaggedValue ModuleManager::GetModuleValueOutterInternal(int32_t index, JSTaggedValue currentModul… in GetModuleValueOutterInternal()
156 JSTaggedValue ModuleManager::GetLazyModuleValueOutter(int32_t index, JSTaggedValue jsFunc) in GetLazyModuleValueOutter()
162 JSTaggedValue ModuleManager::GetLazyModuleValueOutterInternal(int32_t index, JSTaggedValue currentM… in GetLazyModuleValueOutterInternal()
233 void ModuleManager::StoreModuleValue(int32_t index, JSTaggedValue value) in StoreModuleValue()
240 void ModuleManager::StoreModuleValue(int32_t index, JSTaggedValue value, JSTaggedValue jsFunc) in StoreModuleValue()
247 void ModuleManager::StoreModuleValueInternal(JSHandle<SourceTextModule> &currentModule, in StoreModuleValueInternal()
259 JSTaggedValue ModuleManager::GetModuleValueInner(JSTaggedValue key) in GetModuleValueInner()
269 JSTaggedValue ModuleManager::GetModuleValueInner(JSTaggedValue key, JSTaggedValue jsFunc) in GetModuleValueInner()
279 JSTaggedValue ModuleManager::GetModuleValueOutter(JSTaggedValue key) in GetModuleValueOutter()
285 JSTaggedValue ModuleManager::GetModuleValueOutter(JSTaggedValue key, JSTaggedValue jsFunc) in GetModuleValueOutter()
291 JSTaggedValue ModuleManager::GetModuleValueOutterInternal(JSTaggedValue key, JSTaggedValue currentM… in GetModuleValueOutterInternal()
320 void ModuleManager::StoreModuleValue(JSTaggedValue key, JSTaggedValue value) in StoreModuleValue()
327 void ModuleManager::StoreModuleValue(JSTaggedValue key, JSTaggedValue value, JSTaggedValue jsFunc) in StoreModuleValue()
334 void ModuleManager::StoreModuleValueInternal(JSHandle<SourceTextModule> &currentModule, in StoreModuleValueInternal()
346 JSHandle<SourceTextModule> ModuleManager::GetImportedModule(const CString &referencing) in GetImportedModule()
356 JSHandle<SourceTextModule> ModuleManager::HostGetImportedModule(const CString &referencing) in HostGetImportedModule()
365 JSTaggedValue ModuleManager::HostGetImportedModule(void *src) in HostGetImportedModule()
379 bool ModuleManager::IsLocalModuleLoaded(const CString& referencing) in IsLocalModuleLoaded()
388 bool ModuleManager::IsSharedModuleLoaded(const CString &referencing) in IsSharedModuleLoaded()
394 bool ModuleManager::IsModuleLoaded(const CString &referencing) in IsModuleLoaded()
403 bool ModuleManager::IsEvaluatedModule(const CString &referencing) in IsEvaluatedModule()
418 bool ModuleManager::IsInstantiatedModule(const CString &referencing) in IsInstantiatedModule()
424 bool ModuleManager::IsLocalModuleInstantiated(const CString &referencing) in IsLocalModuleInstantiated()
430 bool ModuleManager::NeedExecuteModule(const CString &referencing) in NeedExecuteModule()
439 void ModuleManager::AddToInstantiatingSModuleList(const CString &record) in AddToInstantiatingSModuleList()
444 CVector<CString> ModuleManager::GetInstantiatingSModuleList() in GetInstantiatingSModuleList()
449 void ModuleManager::ClearInstantiatingSModuleList() in ClearInstantiatingSModuleList()
454 JSTaggedValue ModuleManager::GetModuleNamespace(int32_t index) in GetModuleNamespace()
460 JSTaggedValue ModuleManager::GetModuleNamespace(int32_t index, JSTaggedValue currentFunc) in GetModuleNamespace()
466 JSTaggedValue ModuleManager::GetModuleNamespaceInternal(int32_t index, JSTaggedValue currentModule) in GetModuleNamespaceInternal()
500 JSTaggedValue ModuleManager::GetModuleNamespace(JSTaggedValue localName) in GetModuleNamespace()
506 JSTaggedValue ModuleManager::GetModuleNamespace(JSTaggedValue localName, JSTaggedValue currentFunc) in GetModuleNamespace()
512 JSTaggedValue ModuleManager::GetModuleNamespaceInternal(JSTaggedValue localName, JSTaggedValue curr… in GetModuleNamespaceInternal()
531 void ModuleManager::Iterate(RootVisitor &v) in Iterate()
540 CString ModuleManager::GetRecordName(JSTaggedValue module) in GetRecordName()
556 int ModuleManager::GetExportObjectIndex(EcmaVM *vm, JSHandle<SourceTextModule> ecmaModule, in GetExportObjectIndex()
590 JSHandle<JSTaggedValue> ModuleManager::LoadNativeModule(JSThread *thread, const CString &key) in LoadNativeModule()
599 JSHandle<JSTaggedValue> ModuleManager::ExecuteNativeModuleMayThrowError(JSThread *thread, const CSt… in ExecuteNativeModuleMayThrowError()
622 JSHandle<JSTaggedValue> ModuleManager::ExecuteNativeModule(JSThread *thread, const CString &recordN… in ExecuteNativeModule()
647 JSHandle<JSTaggedValue> ModuleManager::ExecuteJsonModule(JSThread *thread, const CString &recordNam… in ExecuteJsonModule()
665 JSHandle<JSTaggedValue> ModuleManager::ExecuteCjsModule(JSThread *thread, const CString &recordName, in ExecuteCjsModule()
692 JSHandle<JSTaggedValue> ModuleManager::TryGetImportedModule(const CString& referencing) in TryGetImportedModule()
702 void ModuleManager::RemoveModuleFromCache(const CString& recordName) in RemoveModuleFromCache()
717 void ModuleManager::RemoveModuleNameFromList(const CString& recordName) in RemoveModuleNameFromList()