Lines Matching refs:new_string
83 ObjPtr<String> new_string = obj->AsString(); in DoReplace() local
88 uint8_t* out = new_string->value_compressed_; in DoReplace()
99 uint16_t* out = new_string->value_; in DoReplace()
122 ObjPtr<String> new_string = obj->AsString(); in DoConcat() local
124 uint8_t* new_value = new_string->GetValueCompressed(); in DoConcat()
128 uint16_t* new_value = new_string->GetValue(); in DoConcat()
151 static void RepeatCharacters(ObjPtr<String> new_string, Handle<String> h_this, int32_t count) in RepeatCharacters() argument
155 new_value = new_string->GetValueCompressed(); in RepeatCharacters()
158 new_value = new_string->GetValue(); in RepeatCharacters()
187 ObjPtr<String> new_string = obj->AsString(); in DoRepeat() local
190 RepeatCharacters<uint8_t>(new_string, h_this, count); in DoRepeat()
192 RepeatCharacters<uint16_t>(new_string, h_this, count); in DoRepeat()
210 ObjPtr<String> new_string = obj->AsString(); in AllocFromUtf16() local
212 uint8_t* value = new_string->GetValueCompressed(); in AllocFromUtf16()
217 memcpy(new_string->GetValue(), utf16_data_in, utf16_length * sizeof(uint16_t)); in AllocFromUtf16()
247 ObjPtr<String> new_string = obj->AsString(); in AllocFromModifiedUtf8() local
249 memcpy(new_string->GetValueCompressed(), utf8_data_in, utf16_length * sizeof(uint8_t)); in AllocFromModifiedUtf8()
251 uint16_t* utf16_data_out = new_string->GetValue(); in AllocFromModifiedUtf8()