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

  /external/chromium_org/third_party/WebKit/Source/platform/
SharedBuffer.cpp 86 const unsigned kMaxSnippetLength = 64;
88 unsigned snippetLength = std::min(sharedBuffer->size(), kMaxSnippetLength);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.cpp 90 const unsigned kMaxSnippetLength = 64;
93 size_t expectedLength = std::min(string->length(), kMaxSnippetLength);
94 if (expectedLength == kMaxSnippetLength)
100 for (i = 0; i < string->length() && i < kMaxSnippetLength; ++i) {
    [all...]

Completed in 2433 milliseconds