Lines Matching refs:fixedPath
1324 nsCAutoString fixedPath;
1334 fixedPath = homePath + Substring(filePath, 1, filePath.Length() - 1);
1339 fixedPath.Assign(filePath);
1345 fixedPath.ReplaceSubstring("//", "/");
1348 fixedPath.ReplaceSubstring("/./", "/");
1349 size_t len = fixedPath.Length();
1353 if (!strcmp(fixedPath.get() + len - 2, "/."))
1355 else if (!strcmp(fixedPath.get() + len - 1, "/"))
1359 fixedPath = StringHead(fixedPath, len - choplen);
1363 if (realpath(fixedPath.get(), tmpBuf))
1364 fixedPath = tmpBuf;
1368 if (fixedPath.Length() > PATH_MAX)
1374 pathAsCFString = ::CFStringCreateWithCString(nsnull, fixedPath.get(), kCFStringEncodingUTF8);