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

  /external/v8/test/cctest/
test-strings.cc 357 static const int kMaxLength = 20;
358 CHECK_GT(kMaxLength, i::ConsString::kMinLength);
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));
test-heap.cc 904 CHECK(fixed_array_len < FixedArray::kMaxLength);
    [all...]
  /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/v8/src/
heap-inl.h 109 if (str.length() > SeqAsciiString::kMaxLength) {
143 if (str.length() > SeqTwoByteString::kMaxLength) {
d8.cc 306 static const int kMaxLength = 0x3fffffff;
308 ASSERT(kMaxLength == i::ExternalArray::kMaxLength);
310 if (raw_value > static_cast<int32_t>(kMaxLength)) {
    [all...]
heap.cc     [all...]
objects.h     [all...]
builtins.cc     [all...]
string.js 951 // 0 < len <= String::kMaxLength and Smi::kMaxValue >= String::kMaxLength,
runtime.cc     [all...]
hydrogen-instructions.h     [all...]
api.cc     [all...]
  /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/regex-re2/re2/
re2.cc     [all...]
  /external/regex-re2/util/
pcre.cc 887 static const int kMaxLength = 200;
888 char buf[kMaxLength];
889 if (n >= kMaxLength) return false;
    [all...]
  /external/v8/src/x64/
code-stubs-x64.cc     [all...]
stub-cache-x64.cc     [all...]
lithium-codegen-x64.cc     [all...]
  /external/v8/src/arm/
code-stubs-arm.cc     [all...]
  /external/v8/src/mips/
code-stubs-mips.cc     [all...]
  /external/v8/src/ia32/
lithium-codegen-ia32.cc     [all...]
code-stubs-ia32.cc     [all...]

Completed in 525 milliseconds