Lines Matching refs:newString
59 auto newString = CreateLineStringWithSpaceType(vm, newLength, compressed, type); in Concat() local
65 Span<uint8_t> sp(newString->GetDataUtf8Writable(), newLength); in Concat()
74 Span<uint16_t> sp(newString->GetDataUtf16Writable(), newLength); in Concat()
90 …ASSERT_PRINT(compressed == CanBeCompressed(newString), "compressed does not match the real value!"… in Concat()
91 return newString; in Concat()
103 JSHandle<EcmaString> newString(vm->GetJSThread(), in CopyStringToOldSpace() local
108 Span<uint8_t> sp(newString->GetDataUtf8Writable(), length); in CopyStringToOldSpace()
113 Span<uint16_t> sp(newString->GetDataUtf16Writable(), length); in CopyStringToOldSpace()
121 …ASSERT_PRINT(compressed == CanBeCompressed(*newString), "compressed does not match the real value!… in CopyStringToOldSpace()
122 return *newString; in CopyStringToOldSpace()
1146 JSHandle<EcmaString> newString(vm->GetJSThread(), CreateLineString(vm, srcLength, true)); in ConvertUtf8ToLowerOrUpper() local
1149 auto newStringPtr = newString->GetDataUtf8Writable(); in ConvertUtf8ToLowerOrUpper()
1163 return *newString; in ConvertUtf8ToLowerOrUpper()