• Home
  • Raw
  • Download

Lines Matching refs:jsPandaFile

21 CString ModulePathHelper::ConcatFileNameWithMerge(JSThread *thread, const JSPandaFile *jsPandaFile,  in ConcatFileNameWithMerge()  argument
27 entryPoint = ParsePrefixBundle(thread, jsPandaFile, baseFileName, requestName, recordName); in ConcatFileNameWithMerge()
35 entryPoint = MakeNewRecord(jsPandaFile, baseFileName, recordName, requestName); in ConcatFileNameWithMerge()
38 … entryPoint = TranslateExpressionInputWithEts(thread, jsPandaFile, baseFileName, requestName); in ConcatFileNameWithMerge()
42 entryPoint = ParseThirdPartyPackage(jsPandaFile, recordName, requestName); in ConcatFileNameWithMerge()
148 CString ModulePathHelper::ParsePrefixBundle(JSThread *thread, const JSPandaFile *jsPandaFile, in ParsePrefixBundle() argument
154 if (jsPandaFile->IsRecordWithBundleName()) { in ParsePrefixBundle()
203 CString ModulePathHelper::MakeNewRecord(const JSPandaFile *jsPandaFile, CString &baseFileName, in MakeNewRecord() argument
221 entryPoint = ConfirmLoadingIndexOrNot(jsPandaFile, entryPoint); in MakeNewRecord()
226 entryPoint = ParseThirdPartyPackage(jsPandaFile, recordName, requestName); in MakeNewRecord()
251 CString ModulePathHelper::FindOhpmEntryPoint(const JSPandaFile *jsPandaFile, in FindOhpmEntryPoint() argument
264 if (jsPandaFile->FindOhmUrlInPF(maybeKey, ohpmKey)) { in FindOhpmEntryPoint()
277 entryPoint = jsPandaFile->GetEntryPoint(ohpmKey); in FindOhpmEntryPoint()
281 entryPoint = ConfirmLoadingIndexOrNot(jsPandaFile, ohpmKey); in FindOhpmEntryPoint()
286 CString ModulePathHelper::FindPackageInTopLevelWithNamespace(const JSPandaFile *jsPandaFile, in FindPackageInTopLevelWithNamespace() argument
299 entryPoint = FindOhpmEntryPoint(jsPandaFile, recordName.substr(0, pos), requestName); in FindPackageInTopLevelWithNamespace()
314 entryPoint = FindOhpmEntryPoint(jsPandaFile, ohpmPath, requestName); in FindPackageInTopLevelWithNamespace()
320 return FindOhpmEntryPoint(jsPandaFile, PACKAGE_PATH_SEGMENT, requestName); in FindPackageInTopLevelWithNamespace()
328 CString ModulePathHelper::ParseOhpmPackage(const JSPandaFile *jsPandaFile, in ParseOhpmPackage() argument
334 auto info = const_cast<JSPandaFile *>(jsPandaFile)->FindRecordInfo(recordName); in ParseOhpmPackage()
343 entryPoint = FindOhpmEntryPoint(jsPandaFile, ohpmPath, requestName); in ParseOhpmPackage()
350 return FindPackageInTopLevelWithNamespace(jsPandaFile, requestName, recordName); in ParseOhpmPackage()
359 CString ModulePathHelper::ParseThirdPartyPackage(const JSPandaFile *jsPandaFile, in ParseThirdPartyPackage() argument
364 auto info = const_cast<JSPandaFile *>(jsPandaFile)->FindRecordInfo(recordName); in ParseThirdPartyPackage()
369 entryPoint = FindNpmEntryPoint(jsPandaFile, key); in ParseThirdPartyPackage()
380 return FindPackageInTopLevel(jsPandaFile, requestName, packagePath); in ParseThirdPartyPackage()
388 CString ModulePathHelper::ParseThirdPartyPackage(const JSPandaFile *jsPandaFile, in ParseThirdPartyPackage() argument
393 CString entryPoint = ParseOhpmPackage(jsPandaFile, recordName, normalizeRequestName); in ParseThirdPartyPackage()
401 …entryPoint = ParseThirdPartyPackage(jsPandaFile, recordName, normalizeRequestName, packagePaths[i]… in ParseThirdPartyPackage()
416 JSMutableHandle<JSTaggedValue> &fileName, const JSPandaFile *jsPandaFile) in ResolveCurrentPath() argument
419 CString fullName = jsPandaFile->GetJSPandaFileDesc(); in ResolveCurrentPath()
428 CString ModulePathHelper::FindNpmEntryPoint(const JSPandaFile *jsPandaFile, const CString &packageE… in FindNpmEntryPoint() argument
431 CString entryPoint = ConfirmLoadingIndexOrNot(jsPandaFile, packageEntryPoint); in FindNpmEntryPoint()
436 return jsPandaFile->GetEntryPoint(packageEntryPoint); in FindNpmEntryPoint()
444 CString ModulePathHelper::FindPackageInTopLevel(const JSPandaFile *jsPandaFile, in FindPackageInTopLevel() argument
452 entryPoint = FindNpmEntryPoint(jsPandaFile, key); in FindPackageInTopLevel()
506 … const JSPandaFile *jsPandaFile, JSHandle<EcmaString> &specifierString) in TranstaleExpressionInput() argument
516 if (jsPandaFile->FindOhmUrlInPF(requestPath, outEntryPoint)) { in TranstaleExpressionInput()
550 …ModulePathHelper::TranslateExpressionInputWithEts(JSThread *thread, const JSPandaFile *jsPandaFile, in TranslateExpressionInputWithEts() argument
557 if (!jsPandaFile->HasRecord(entryPoint)) { in TranslateExpressionInputWithEts()