Lines Matching refs:referencingModule
352 JSHandle<SourceTextModule> ModuleManager::HostGetImportedModule(const CString &referencingModule) in HostGetImportedModule() argument
355 JSHandle<EcmaString> referencingHandle = factory->NewFromUtf8(referencingModule); in HostGetImportedModule()
478 JSHandle<JSTaggedValue> ModuleManager::HostResolveImportedModule(const CString &referencingModule, … in HostResolveImportedModule() argument
483 JSHandle<EcmaString> referencingHandle = factory->NewFromUtf8(referencingModule); in HostResolveImportedModule()
484 CString moduleFileName = referencingModule; in HostResolveImportedModule()
486 if (AOTFileManager::GetAbsolutePath(referencingModule, moduleFileName)) { in HostResolveImportedModule()
489 CString msg = "Parse absolute " + referencingModule + " path failed"; in HostResolveImportedModule()
564 JSHandle<JSTaggedValue> referencingModule(factory->NewFromUtf8(moduleRequestName)); in ResolveNativeModule() local
568 resolvedModules_ = NameDictionary::Put(thread, dict, referencingModule, moduleRecord, in ResolveNativeModule()
604 …Manager::AddResolveImportedModule(const JSPandaFile *jsPandaFile, const CString &referencingModule) in AddResolveImportedModule() argument
608 ModuleDataExtractor::ParseModule(thread, jsPandaFile, referencingModule, referencingModule); in AddResolveImportedModule()
609 AddResolveImportedModule(referencingModule, moduleRecord); in AddResolveImportedModule()
612 void ModuleManager::AddResolveImportedModule(const CString &referencingModule, JSHandle<JSTaggedVal… in AddResolveImportedModule() argument
616 JSHandle<JSTaggedValue> referencingHandle(factory->NewFromUtf8(referencingModule)); in AddResolveImportedModule()