Home | History | Annotate | Download | only in src

Lines Matching refs:chars

2659   int chars = 0;
2664 chars++;
2671 Object* result = AllocateRawTwoByteString(chars, pretenure);
2677 for (int i = 0; i < chars; i++) {
2728 int chars,
2730 ASSERT(chars >= 0);
2731 // Ensure the chars matches the number of characters in the buffer.
2732 ASSERT(static_cast<unsigned>(chars) == buffer->Length());
2748 if (chars > SeqAsciiString::kMaxLength) {
2752 size = SeqAsciiString::SizeFor(chars);
2754 if (chars > SeqTwoByteString::kMaxLength) {
2758 size = SeqTwoByteString::SizeFor(chars);
2770 answer->set_length(chars);
2776 for (int i = 0; i < chars; i++) {