Lines Matching refs:fileNamePartStartIndex
473 bool MyGetFullPathName(LPCWSTR fileName, UString &resultPath, int &fileNamePartStartIndex)
477 fileNamePartStartIndex = resultPath.ReverseFind(WCHAR_PATH_SEPARATOR);
478 fileNamePartStartIndex++;
523 bool MyGetFullPathName(LPCTSTR fileName, CSysString &resultPath, int &fileNamePartStartIndex)
544 fileNamePartStartIndex = lstrlen(fileName);
546 fileNamePartStartIndex = (int)(fileNamePointer - buffer);
556 bool MyGetFullPathName(LPCWSTR fileName, UString &resultPath, int &fileNamePartStartIndex)
579 fileNamePartStartIndex = MyStringLen(fileName);
581 fileNamePartStartIndex = (int)(fileNamePointer - buffer);
589 if (!MyGetFullPathName(GetSysPath(fileName), sysPath, fileNamePartStartIndex))
591 UString resultPath1 = GetUnicodePath(sysPath.Left(fileNamePartStartIndex));
592 UString resultPath2 = GetUnicodePath(sysPath.Mid(fileNamePartStartIndex));
593 fileNamePartStartIndex = resultPath1.Length();