Lines Matching refs:filepath
121 BOOL MakeRelativePath(const CString &projpath, CString &filepath) in MakeRelativePath() argument
129 if (filepath.IsEmpty() || filepath[1] != ':') in MakeRelativePath()
135 if (toupper(projpath[0]) != toupper(filepath[0])) in MakeRelativePath()
143 if (!projpath[index] || !filepath[index]) in MakeRelativePath()
149 if (toupper(projpath[index]) != toupper(filepath[index])) in MakeRelativePath()
156 if (filepath[index]) in MakeRelativePath()
158 if (filepath[index] == ':' || filepath[index] == '\\') in MakeRelativePath()
167 if (filepath[index] || projpath[index]) in MakeRelativePath()
188 if (filepath[index] == '\\') in MakeRelativePath()
207 if (filepath[lastdir] == '\\') in MakeRelativePath()
211 temp += filepath.Right(filepath.GetLength() - lastdir); in MakeRelativePath()
212 filepath = temp; in MakeRelativePath()
218 filepath = ".\\"; in MakeRelativePath()