Lines Matching refs:length_with_flag
204 const int32_t length_with_flag = String::GetFlaggedCount(0, /* compressible= */ true); in AllocEmptyString() local
205 SetStringCountVisitor visitor(length_with_flag); in AllocEmptyString()
206 return Alloc<kIsInstrumented>(self, length_with_flag, allocator_type, visitor); in AllocEmptyString()
220 const int32_t length_with_flag = String::GetFlaggedCount(byte_length, compressible); in AllocFromByteArray() local
221 SetStringCountAndBytesVisitor visitor(length_with_flag, array, offset, high_byte << 8); in AllocFromByteArray()
222 return Alloc<kIsInstrumented>(self, length_with_flag, allocator_type, visitor); in AllocFromByteArray()
235 const int32_t length_with_flag = String::GetFlaggedCount(count, compressible); in AllocFromCharArray() local
236 SetStringCountAndValueVisitorFromCharArray visitor(length_with_flag, array, offset); in AllocFromCharArray()
237 return Alloc<kIsInstrumented>(self, length_with_flag, allocator_type, visitor); in AllocFromCharArray()
249 const int32_t length_with_flag = String::GetFlaggedCount(string_length, compressible); in AllocFromString() local
250 SetStringCountAndValueVisitorFromString visitor(length_with_flag, string, offset); in AllocFromString()
251 return Alloc<kIsInstrumented>(self, length_with_flag, allocator_type, visitor); in AllocFromString()