| 1266 | } |
| 1267 | |
| 1268 | UString::size_type UString::find(const UString& str, size_type index /*= 0 */) const |
| 1269 | { |
| 1270 | return mData.find(str.c_str(), index); |
| 1271 | } |
| 1272 | |
| 1273 | UString::size_type UString::find(const code_point* cp_str, size_type index, size_type length) const |
| 1274 | { |
no test coverage detected