Lines Matching refs:path
224 BOOL ConvertToProjectRelativePath(CString &path) in ConvertToProjectRelativePath() argument
226 if (MakeRelativePath(gOpenProjectDir, path)) in ConvertToProjectRelativePath()
234 void SaveToPathInfo(PATHINFO &info, CString &path) in SaveToPathInfo() argument
236 info.pathname = path; in SaveToPathInfo()
322 void SetProjectDirectory(CString &path) in SetProjectDirectory() argument
324 if (!PathIsRelative(path)) in SetProjectDirectory()
326 gOpenProjectDir = path; in SetProjectDirectory()
333 if ((path.GetAt(0) == '.') && (path.GetAt(1) != '.')) in SetProjectDirectory()
335 path = path.Mid(1); in SetProjectDirectory()
338 gOpenProjectDir.Format(_T("%s\\%s"), current_dir, path); in SetProjectDirectory()
818 void MakePath(CString path) in MakePath() argument
822 if (_tchdir(path) != 0) in MakePath()
824 CString Token = path.Tokenize(_T("\\"), index); in MakePath()
834 Token = path.Tokenize(_T("\\"), index); in MakePath()
848 CString path = CString(getenv("APPDATA")); in GetAppDataPath() local
849 path += "\\Eclipse Foundation\\Eclipse_ThreadX\\GUIX_Studio"; in GetAppDataPath()
850 MakePath(path); in GetAppDataPath()
851 return path; in GetAppDataPath()
1660 VOID FormatPath(CString &path) in FormatPath() argument
1663 path.Replace('/', '\\'); in FormatPath()
1664 path = path.TrimLeft(_T("\\")); in FormatPath()