OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lengthToAppend
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.h
104
unsigned
lengthToAppend
= length() - position;
105
if (!
lengthToAppend
)
112
string().appendTo(output, startOffset() + position,
lengthToAppend
);
TextIterator.cpp
531
unsigned
lengthToAppend
= std::min(static_cast<unsigned>(length()) - position, maxLength);
532
if (!
lengthToAppend
)
538
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 38 milliseconds