Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/platform/
DSharedBuffer.cpp88 const unsigned kMaxSnippetLength = 64; in snippetForBuffer() local
90 unsigned snippetLength = std::min(sharedBuffer->size(), kMaxSnippetLength); in snippetForBuffer()
/external/chromium_org/third_party/WebKit/Source/wtf/text/
DStringImpl.cpp90 const unsigned kMaxSnippetLength = 64; in fillWithSnippet() local
93 size_t expectedLength = std::min(string->length(), kMaxSnippetLength); in fillWithSnippet()
94 if (expectedLength == kMaxSnippetLength) in fillWithSnippet()
100 for (i = 0; i < string->length() && i < kMaxSnippetLength; ++i) { in fillWithSnippet()