| 344 | return Str; |
| 345 | } |
| 346 | inline String GetUpperCase() const { |
| 347 | String Str(*this); |
| 348 | Str.ToUpperCase(); |
| 349 | return Str; |
| 350 | } |
| 351 | |
| 352 | static bool Matches(const TChar* Str, const TChar* Mask) { |
| 353 | /* |
nothing calls this directly
no outgoing calls
no test coverage detected