Home
last modified time | relevance | path

Searched refs:normalizedPath (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/src/io/
H A Dproxy_filesystem.cpp77 auto normalizedPath = NormalizePath(path); in GetEntry() local
78 if (!normalizedPath.empty()) { in GetEntry()
90 auto normalizedPath = NormalizePath(path); in OpenFile() local
91 if (!normalizedPath.empty()) { in OpenFile()
105 auto normalizedPath = NormalizePath(path); in CreateFile() local
106 if (!normalizedPath.empty()) { in CreateFile()
120 auto normalizedPath = NormalizePath(path); in DeleteFile() local
121 if (!normalizedPath.empty()) { in DeleteFile()
137 if (!normalizedPath.empty()) { in OpenDirectory()
156 if (!normalizedPath.empty()) { in CreateDirectory()
[all …]
H A Dfilesystem_api.cpp147 string normalizedPath; in ResolvePath() local
153 normalizedPath = NormalizePath(curPath + path); in ResolvePath()
155 normalizedPath = NormalizePath(path); in ResolvePath()
157 if (normalizedPath.empty()) { in ResolvePath()
160 return res + normalizedPath; in ResolvePath()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/src/os/linux/
H A Dplatform_linux.cpp52 string normalizedPath; in PlatformLinux() local
54 normalizedPath = curPath; in PlatformLinux()
58 normalizedPath = NormalizePath(curPath + path); in PlatformLinux()
60 normalizedPath = NormalizePath(path); in PlatformLinux()
63 if (normalizedPath.empty()) { in PlatformLinux()
66 normalizedPath = curPath; in PlatformLinux()
68 res += normalizedPath; in PlatformLinux()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/src/os/mac/
H A Dplatform_mac.cpp52 string normalizedPath; in PlatformMac() local
54 normalizedPath = curPath; in PlatformMac()
58 normalizedPath = NormalizePath(curPath + pathIn); in PlatformMac()
60 normalizedPath = NormalizePath(pathIn); in PlatformMac()
63 if (normalizedPath.empty()) { in PlatformMac()
66 normalizedPath = curPath; in PlatformMac()
68 res += normalizedPath; in PlatformMac()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/src/os/windows/
H A Dplatform_windows.cpp72 string normalizedPath; in PlatformWindows() local
74 normalizedPath = curPath; in PlatformWindows()
78 normalizedPath = NormalizePath(curPath + path); in PlatformWindows()
80 normalizedPath = NormalizePath(path); in PlatformWindows()
83 if (normalizedPath.empty()) { in PlatformWindows()
86 normalizedPath = curPath; in PlatformWindows()
88 res += normalizedPath; in PlatformWindows()
/ohos5.0/foundation/arkui/napi/native_engine/
H A Dnative_engine.cpp834 std::string normalizedPath = panda::JSNApi::NormalizePath(path); in RunScriptForAbc() local
839 if (!GetAbcBuffer(normalizedPath.c_str(), &scriptContent, &scriptContentSize, in RunScriptForAbc()