Home
last modified time | relevance | path

Searched refs:absPath (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/platform/windows/
Dfile.cpp165 std::string absPath = ""; in ResolveFilenameFromNative() local
166 if (RealPath(relativePath, absPath)) { in ResolveFilenameFromNative()
167 resolvedFilename = ConvertToString(absPath); in ResolveFilenameFromNative()
/arkcompiler/ets_runtime/ecmascript/platform/unix/
Dfile.cpp154 std::string absPath = ""; in ResolveFilenameFromNative() local
155 if (RealPath(relativePath, absPath)) { in ResolveFilenameFromNative()
156 resolvedFilename = ConvertToString(absPath); in ResolveFilenameFromNative()
/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/
Daot_file_manager.cpp484 CString absPath; in GetAbsolutePath() local
485 if (!GetAbsolutePath(relativePath, absPath)) { in GetAbsolutePath()
489 JSTaggedValue absPathVal = factory->NewFromUtf8(absPath).GetTaggedValue(); in GetAbsolutePath()
496 std::string absPath; in GetAbsolutePath() local
497 if (RealPath(relativePath, absPath)) { in GetAbsolutePath()
498 absPathCstr = ConvertToString(absPath); in GetAbsolutePath()
/arkcompiler/runtime_core/static_core/scripts/intrusive-testing/
Dintrusive_instrumentator.py336 absPath = os.path.join(testDir, l[i])
337 if(not os.path.isfile(absPath)):
341 l[i] = absPath
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_expo.cpp3798 std::string absPath; in InitializeIcuData() local
3799 if (ecmascript::RealPath(icuPath, absPath)) { in InitializeIcuData()
3800 u_setDataDirectory(absPath.c_str()); in InitializeIcuData()