Lines Matching defs:length
257 for (int i = 0; i < string->length(); i++) {
335 for (int i = properties()->length() - 1; i >= 0; i--) {
385 for (; i < properties()->length(); i++) {
409 for (int i = 0; i < properties()->length(); i++) {
474 for (int i = 0; i < properties()->length(); i++) {
488 boilerplate_properties_, properties()->length(), index_keys,
492 for (int i = 0; i < properties()->length(); i++) {
574 first_spread_index_ >= 0 ? first_spread_index_ : values_->length();
655 first_spread_index_ >= 0 ? first_spread_index_ : values_->length();
740 values_->length() <=
797 this->raw_strings()->length(), AllocationType::kOld);
803 for (int i = 0; i < raw_strings.length(); ++i) {
820 this->cooked_strings()->length(), AllocationType::kOld);
824 for (int i = 0; i < cooked_strings.length(); ++i) {
931 int arguments_length = arguments_.length();
1064 size_t length = strlen(bigint_str);
1065 DCHECK_GT(length, 0);
1066 if (length == 1 && bigint_str[0] == '0') return false;
1067 // Skip over any radix prefix; BigInts with length > 1 only
1069 for (size_t i = (bigint_str[0] == '0') ? 2 : 0; i < length; ++i) {