Lines Matching refs:length_with_flag
244 const int32_t length_with_flag = String::GetFlaggedCount(0, /* compressible */ true); in AllocEmptyString() local
245 SetStringCountVisitor visitor(length_with_flag); in AllocEmptyString()
246 return Alloc<kIsInstrumented>(self, length_with_flag, allocator_type, visitor); in AllocEmptyString()
257 const int32_t length_with_flag = String::GetFlaggedCount(byte_length, compressible); in AllocFromByteArray() local
258 SetStringCountAndBytesVisitor visitor(length_with_flag, array, offset, high_byte << 8); in AllocFromByteArray()
259 String* string = Alloc<kIsInstrumented>(self, length_with_flag, allocator_type, visitor); in AllocFromByteArray()
271 const int32_t length_with_flag = String::GetFlaggedCount(count, compressible); in AllocFromCharArray() local
272 SetStringCountAndValueVisitorFromCharArray visitor(length_with_flag, array, offset); in AllocFromCharArray()
273 String* new_string = Alloc<kIsInstrumented>(self, length_with_flag, allocator_type, visitor); in AllocFromCharArray()
283 const int32_t length_with_flag = String::GetFlaggedCount(string_length, compressible); in AllocFromString() local
284 SetStringCountAndValueVisitorFromString visitor(length_with_flag, string, offset); in AllocFromString()
285 String* new_string = Alloc<kIsInstrumented>(self, length_with_flag, allocator_type, visitor); in AllocFromString()