Home | History | Annotate | Download | only in common

Lines Matching defs:doReplace

223   doReplace(0, 0, text, 0, -1);
231 doReplace(0, 0, text, 0, textLength);
1259 return doReplace(start, _length, buffer, 0, isError ? 0 : count);
1269 // If isError then _length==0 which turns the doReplace() into a no-op anyway.
1270 return isError ? *this : doReplace(length(), 0, buffer, 0, _length);
1274 UnicodeString::doReplace( int32_t start,
1286 return doReplace(start, length, src.getArrayStart(), srcStart, srcLength);
1289 return doReplace(start, length, 0, 0, 0);
1294 UnicodeString::doReplace(int32_t start,
1712 return str.doReplace(str.length(), 0, &c, 0, 1).isWritable();
1721 return !isError && str.doReplace(str.length(), 0, buffer, 0, cLength).isWritable();
1726 return str.doReplace(str.length(), 0, s, 0, length).isWritable();