Lines Matching refs:leftLength
42 uint32_t leftLength = strLeft->GetLength();
44 uint32_t newLength = leftLength + rightLength;
49 if (leftLength == 0) {
67 Span<const uint8_t> srcLeft(strLeft->GetDataUtf8(), leftLength);
68 EcmaString::MemCopyChars(sp, newLength, srcLeft, leftLength);
70 sp = sp.SubSpan(leftLength);
77 EcmaString::CopyChars(sp.data(), strLeft->GetDataUtf8(), leftLength);
79 Span<const uint16_t> srcLeft(strLeft->GetDataUtf16(), leftLength);
80 EcmaString::MemCopyChars(sp, newLength << 1U, srcLeft, leftLength << 1U);
83 sp = sp.SubSpan(leftLength);