| 651 | */ |
| 652 | |
| 653 | bool String::replace(uint32 offset,uint32 arg_length,const String &to) |
| 654 | { |
| 655 | return replace(offset,arg_length,to.ptr(),to.length()); |
| 656 | } |
| 657 | |
| 658 | bool String::replace(uint32 offset,uint32 arg_length, |
| 659 | const char *to, uint32 to_length) |
no test coverage detected