Lines Matching refs:new_string
95 ObjPtr<String> new_string = obj->AsString(); in DoReplace() local
100 uint8_t* out = new_string->value_compressed_; in DoReplace()
111 uint16_t* out = new_string->value_; in DoReplace()
134 ObjPtr<String> new_string = obj->AsString(); in DoConcat() local
136 uint8_t* new_value = new_string->GetValueCompressed(); in DoConcat()
140 uint16_t* new_value = new_string->GetValue(); in DoConcat()
163 static void RepeatCharacters(ObjPtr<String> new_string, Handle<String> h_this, int32_t count) in RepeatCharacters() argument
167 new_value = new_string->GetValueCompressed(); in RepeatCharacters()
170 new_value = new_string->GetValue(); in RepeatCharacters()
199 ObjPtr<String> new_string = obj->AsString(); in DoRepeat() local
202 RepeatCharacters<uint8_t>(new_string, h_this, count); in DoRepeat()
204 RepeatCharacters<uint16_t>(new_string, h_this, count); in DoRepeat()
222 ObjPtr<String> new_string = obj->AsString(); in AllocFromUtf16() local
224 uint8_t* value = new_string->GetValueCompressed(); in AllocFromUtf16()
229 memcpy(new_string->GetValue(), utf16_data_in, utf16_length * sizeof(uint16_t)); in AllocFromUtf16()
259 ObjPtr<String> new_string = obj->AsString(); in AllocFromModifiedUtf8() local
261 memcpy(new_string->GetValueCompressed(), utf8_data_in, utf16_length * sizeof(uint8_t)); in AllocFromModifiedUtf8()
263 uint16_t* utf16_data_out = new_string->GetValue(); in AllocFromModifiedUtf8()