Searched refs:srcSegmentStart (Results 1 – 1 of 1) sorted by relevance
1642 size_t srcSegmentStart = 0; in replace() local1646 while ((srcSegmentStart = find(pattern, srcSegmentStart)) != kNotFound) { in replace()1648 ++srcSegmentStart; in replace()1666 srcSegmentStart = 0; in replace()1673 while ((srcSegmentEnd = find(pattern, srcSegmentStart)) != kNotFound) { in replace()1674 srcSegmentLength = srcSegmentEnd - srcSegmentStart; in replace()1675 … memcpy(data + dstOffset, characters8() + srcSegmentStart, srcSegmentLength * sizeof(LChar)); in replace()1679 srcSegmentStart = srcSegmentEnd + 1; in replace()1682 srcSegmentLength = m_length - srcSegmentStart; in replace()1683 memcpy(data + dstOffset, characters8() + srcSegmentStart, srcSegmentLength * sizeof(LChar)); in replace()[all …]