Home
last modified time | relevance | path

Searched refs:i32sep (Results 1 – 1 of 1) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTString.cpp1820 size_t i32sep = strFilePath.find_last_of('/'); in PVRTStringGetContainingDirectoryPath() local
1821 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() local
1841 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()