Home
last modified time | relevance | path

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

/developtools/hdc/hdc_rust/src/cffi/
Dlog.h41 size_t tmpNum = tmpString.rfind('/'); in GetFileNameAny() local
42 if (tmpNum == std::string::npos) { in GetFileNameAny()
43 tmpNum = tmpString.rfind('\\'); in GetFileNameAny()
44 if (tmpNum == std::string::npos) { in GetFileNameAny()
48 tmpString = tmpString.substr(tmpNum + 1, tmpString.size() - tmpNum); in GetFileNameAny()
/developtools/hdc/src/common/
Dbase.cpp281 size_t tmpNum = tmpString.rfind('/'); in GetFileNameAny() local
282 if (tmpNum == std::string::npos) { in GetFileNameAny()
283 tmpNum = tmpString.rfind('\\'); in GetFileNameAny()
284 if (tmpNum == std::string::npos) { in GetFileNameAny()
288 tmpString = tmpString.substr(tmpNum + 1, tmpString.size() - tmpNum); in GetFileNameAny()