| 171 | } |
| 172 | |
| 173 | String::SizeType String::RFind(const String& str, String::SizeType pos) const |
| 174 | { |
| 175 | return m_Data.rfind(str, pos); |
| 176 | } |
| 177 | |
| 178 | String::SizeType String::FindFirstOf(const char *s, String::SizeType pos) const |
| 179 | { |
no outgoing calls
no test coverage detected