HomeSort by relevance Sort by last modified time
    Searched defs:kMaxLength (Results 1 - 5 of 5) sorted by null

  /external/chromium/chrome/browser/ui/views/
create_application_shortcut_view.cc 106 static const size_t kMaxLength = 200;
110 if (text.length() > kMaxLength) {
111 text = text.substr(0, kMaxLength);
  /external/pcre/
pcrecpp.cc 871 static const int kMaxLength = 200;
872 char buf[kMaxLength];
873 if (n >= kMaxLength) return false;
  /external/v8/test/cctest/
test-strings.cc 357 static const int kMaxLength = 20;
358 CHECK_GT(kMaxLength, i::String::kMinNonFlatLength);
362 v8::Array::New(kMaxLength + 1);
364 v8::Array::New(kMaxLength + 1);
367 for (int i = 0; i <= kMaxLength; i++) {
397 global->Set(v8_str("max_length"), v8::Integer::New(kMaxLength));
  /external/chromium/third_party/libjingle/source/talk/base/
httpcommon.cc 244 const size_t kMaxLength = attribute.length() * 2 + 1;
245 char* buffer = STACK_ARRAY(char, kMaxLength);
246 size_t len = escape(buffer, kMaxLength, attribute.data(), attribute.length(),
  /external/v8/src/
objects.h     [all...]

Completed in 494 milliseconds