Home
last modified time | relevance | path

Searched refs:from_pos (Results 1 – 2 of 2) sorted by relevance

/external/parameter-framework/upstream/test/functional-tests/include/
DConfigFiles.hpp87 auto from_pos = on.find(from); in replace() local
88 if (from_pos != std::string::npos) { in replace()
89 on.replace(from_pos, from.length(), to); in replace()
/external/v8/src/parsing/
Dscanner-character-streams.cc86 size_t GenericStringUtf16CharacterStream::FillBuffer(size_t from_pos) { in FillBuffer() argument
87 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() argument
179 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()