Lines Matching defs:left
707 Handle<String> left, Handle<String> right, AllocationType allocation) {
708 if (left->IsThinString()) {
709 left = handle(ThinString::cast(*left).actual(), isolate());
714 int left_length = left->length();
717 if (right_length == 0) return left;
722 uint16_t c1 = left->Get(0, isolate());
733 bool left_is_one_byte = left->IsOneByteRepresentation();
741 DCHECK(left->IsFlat());
751 // Copy left part.
754 left->template GetChars<uint8_t>(isolate(), no_gc, access_guard);
772 String::WriteToFlat(*left, sink, 0, left->length(), isolate(),
774 String::WriteToFlat(*right, sink + left->length(), 0, right->length(),
779 return NewConsString(left, right, length, is_one_byte, allocation);
783 Handle<String> FactoryBase<Impl>::NewConsString(Handle<String> left,
787 DCHECK(!left->IsThinString());
802 result.set_first(*left, mode);