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