Searched refs:from_pos (Results 1 – 2 of 2) sorted by relevance
87 auto from_pos = on.find(from); in replace() local88 if (from_pos != std::string::npos) { in replace()89 on.replace(from_pos, from.length(), to); in replace()
86 size_t GenericStringUtf16CharacterStream::FillBuffer(size_t from_pos) { in FillBuffer() argument87 if (from_pos >= length_) return 0; in FillBuffer()89 size_t length = i::Min(kBufferSize, length_ - from_pos); in FillBuffer()90 String::WriteToFlat<uc16>(*string_, buffer_, static_cast<int>(from_pos), in FillBuffer()91 static_cast<int>(from_pos + length)); in FillBuffer()178 size_t ExternalOneByteStringUtf16CharacterStream::FillBuffer(size_t from_pos) { in FillBuffer() argument179 if (from_pos >= length_) return 0; in FillBuffer()181 size_t length = Min(kBufferSize, length_ - from_pos); in FillBuffer()182 i::CopyCharsUnsigned(buffer_, raw_data_ + from_pos, length); in FillBuffer()