Lines Matching defs:realPath
239 const std::string realPath = ark::os::GetAbsolutePath(path.Mutf8());
240 if (realPath.empty() || realPath == path.Mutf8()) {
244 return UString(realPath, allocator_).View();
249 StringView realPath = GetRealPath(path);
250 if (ark::os::file::File::IsRegularFile(realPath.Mutf8())) {
251 return realPath;
254 if (ark::os::file::File::IsDirectory(realPath.Mutf8())) {
258 std::string indexFilePath = realPath.Mutf8() + pathDelimiter_.data() + indexFile;
264 return realPath;