Lines Matching defs:newString
60 auto newString = CreateLineStringWithSpaceType(vm, newLength, compressed, type);
66 Span<uint8_t> sp(newString->GetDataUtf8Writable(), newLength);
75 Span<uint16_t> sp(newString->GetDataUtf16Writable(), newLength);
91 ASSERT_PRINT(compressed == CanBeCompressed(newString), "compressed does not match the real value!");
92 return newString;
104 JSHandle<EcmaString> newString(vm->GetJSThread(),
109 Span<uint8_t> sp(newString->GetDataUtf8Writable(), length);
114 Span<uint16_t> sp(newString->GetDataUtf16Writable(), length);
122 ASSERT_PRINT(compressed == CanBeCompressed(*newString), "compressed does not match the real value!");
123 return *newString;
1281 JSHandle<EcmaString> newString(vm->GetJSThread(), CreateLineString(vm, srcLength, true));
1284 auto newStringPtr = newString->GetDataUtf8Writable();
1298 return *newString;