| 327 | } |
| 328 | |
| 329 | void StringImpl::Reserve(intptr newSize) |
| 330 | { |
| 331 | if (GetAllocSize() < newSize) |
| 332 | Realloc(newSize, true); |
| 333 | } |
| 334 | |
| 335 | bool StringImpl::EqualsHelper(const char * a, const char * b, intptr length) |
| 336 | { |
no outgoing calls
no test coverage detected