Lines Matching refs:curDir
622 UString curDir; in GetSuperPathBase() local
623 if (!GetCurDir(curDir)) in GetSuperPathBase()
625 NormalizeDirPathPrefix(curDir); in GetSuperPathBase()
630 if (IsSuperPath(curDir)) in GetSuperPathBase()
632 fixedSize = GetRootPrefixSize_Of_SuperPath(curDir); in GetSuperPathBase()
638 if (IsDrivePath(curDir)) in GetSuperPathBase()
645 if (!IsPathSepar(curDir[0]) || !IsPathSepar(curDir[1])) in GetSuperPathBase()
648 fixedSize = GetRootPrefixSize_Of_NetworkPath(curDir.Ptr(2)); in GetSuperPathBase()
662 temp += &curDir[fixedSizeStart + fixedSize]; in GetSuperPathBase()
669 res += curDir.Mid(fixedSizeStart, fixedSize); in GetSuperPathBase()
776 UString curDir; in GetFullPath() local
778 curDir = fs2us(dirPrefix); in GetFullPath()
781 if (!GetCurDir(curDir)) in GetFullPath()
784 NormalizeDirPathPrefix(curDir); in GetFullPath()
790 if (IsSuperPath(curDir)) in GetFullPath()
792 fixedSize = GetRootPrefixSize_Of_SuperPath(curDir); in GetFullPath()
798 if (IsDrivePath(curDir)) in GetFullPath()
802 if (!IsPathSepar(curDir[0]) || !IsPathSepar(curDir[1])) in GetFullPath()
804 fixedSize = GetRootPrefixSize_Of_NetworkPath(curDir.Ptr(2)); in GetFullPath()
820 temp += curDir.Ptr(fixedSize); in GetFullPath()
825 curDir.DeleteFrom(fixedSize); in GetFullPath()
826 res = us2fs(curDir); in GetFullPath()