Searched refs:i32sep (Results 1 – 1 of 1) sorted by relevance
1820 size_t i32sep = strFilePath.find_last_of('/'); in PVRTStringGetContainingDirectoryPath() local1821 if(i32sep == strFilePath.npos) in PVRTStringGetContainingDirectoryPath()1823 i32sep = strFilePath.find_last_of('\\'); in PVRTStringGetContainingDirectoryPath()1824 if(i32sep == strFilePath.npos) in PVRTStringGetContainingDirectoryPath()1829 return strFilePath.substr(0,i32sep); in PVRTStringGetContainingDirectoryPath()1840 size_t i32sep = strFilePath.find_last_of('/'); in PVRTStringGetFileName() local1841 if(i32sep == strFilePath.npos) in PVRTStringGetFileName()1843 i32sep = strFilePath.find_last_of('\\'); in PVRTStringGetFileName()1844 if(i32sep == strFilePath.npos) in PVRTStringGetFileName()1849 return strFilePath.substr(i32sep+1,strFilePath.length()); in PVRTStringGetFileName()