Lines Matching defs:length
26 if (length() != other.length()) return false;
27 for (int index = 0; index < length(); ++index) {
174 const int length = kVariablePartIndex + local_names_container_size +
193 isolate->factory()->NewScopeInfo(length);
406 DCHECK_EQ(index, scope_info_handle->length());
426 const int length = kVariablePartIndex + (has_outer_scope_info ? 1 : 0);
429 Handle<ScopeInfo> scope_info = factory->NewScopeInfo(length);
462 DCHECK_EQ(index, scope_info->length());
496 const int length = kVariablePartIndex + 2 * context_local_count +
503 factory->NewScopeInfo(length, AllocationType::kReadOnly);
563 DCHECK_EQ(index, scope_info->length());
581 DCHECK_LT(static_cast<unsigned>(index), static_cast<unsigned>(length()));
587 DCHECK_LT(static_cast<unsigned>(index), static_cast<unsigned>(length()));
594 DCHECK_LT(static_cast<unsigned>(index), static_cast<unsigned>(length()));
603 DCHECK_LE(src_index + len, src.length());
615 int ScopeInfo::length() const {
628 int length = original->length() + 1;
629 Handle<ScopeInfo> scope_info = isolate->factory()->NewScopeInfo(length);
649 length - scope_info->LocalsBlockListIndex() - 1,
822 if (name.IsString() && String::cast(name).length() > 0) {
907 return name.length() == 0 || name.Get(0) == '.' || name.Get(0) == '#' ||
1233 DCHECK_EQ(regular_exports().length() % kRegularExportLength, 0);
1234 return regular_exports().length() / kRegularExportLength;