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

  /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));
test-heap.cc 948 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 76 if (str.length() > SeqAsciiString::kMaxLength) {
109 if (str.length() > SeqTwoByteString::kMaxLength) {
heap.cc     [all...]
objects.h     [all...]
string.js 846 // 0 < len <= String::kMaxLength and Smi::kMaxValue >= String::kMaxLength,
builtins.cc 932 STATIC_ASSERT(FixedArray::kMaxLength < kHalfOfMaxInt);
937 if (result_len > FixedArray::kMaxLength) {
    [all...]
hydrogen-instructions.h     [all...]
runtime.cc     [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/pcre/
pcrecpp.cc 871 static const int kMaxLength = 200;
872 char buf[kMaxLength];
873 if (n >= kMaxLength) return false;
  /external/v8/src/x64/
code-stubs-x64.cc     [all...]
lithium-codegen-x64.cc     [all...]
stub-cache-x64.cc     [all...]
  /external/v8/src/arm/
code-stubs-arm.cc     [all...]
lithium-codegen-arm.cc     [all...]
  /external/v8/src/ia32/
lithium-codegen-ia32.cc     [all...]
code-stubs-ia32.cc     [all...]

Completed in 888 milliseconds