| 1315 | } |
| 1316 | |
| 1317 | UString::size_type UString::rfind(const UString& str, size_type index /*= 0 */) const |
| 1318 | { |
| 1319 | return mData.rfind(str.c_str(), index); |
| 1320 | } |
| 1321 | |
| 1322 | UString::size_type UString::rfind(const code_point* cp_str, size_type index, size_type num) const |
| 1323 | { |
no test coverage detected