HomeSort by relevance Sort by last modified time
    Searched refs:lengthToAppend (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.h 97 unsigned lengthToAppend = length() - position;
98 if (!lengthToAppend)
105 string().appendTo(output, startOffset() + position, lengthToAppend);
TextIterator.cpp 578 unsigned lengthToAppend = std::min(static_cast<unsigned>(length()) - position, maxLength);
579 if (!lengthToAppend)
585 builder.append(string(), startOffset() + position, lengthToAppend);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.cpp 177 void String::append(const LChar* charactersToAppend, unsigned lengthToAppend)
182 m_impl = StringImpl::create(charactersToAppend, lengthToAppend);
186 if (!lengthToAppend)
194 RELEASE_ASSERT(lengthToAppend <= numeric_limits<unsigned>::max() - strLength);
196 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(strLength + lengthToAppend, data);
198 StringImpl::copyChars(data + strLength, charactersToAppend, lengthToAppend);
203 RELEASE_ASSERT(lengthToAppend <= numeric_limits<unsigned>::max() - strLength);
205 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(length() + lengthToAppend, data);
207 StringImpl::copyChars(data + strLength, charactersToAppend, lengthToAppend);
211 void String::append(const UChar* charactersToAppend, unsigned lengthToAppend)
    [all...]

Completed in 99 milliseconds