Lines Matching refs:compressible
172 bool compressible = kUseStringCompression && String::IsCompressed(count_); in operator() local
178 if (compressible) { in operator()
200 const bool compressible = kUseStringCompression && String::IsCompressed(utf16_length_with_flag); in Alloc() local
201 const size_t block_size = (compressible) ? sizeof(uint8_t) : sizeof(uint16_t); in Alloc()
254 const bool compressible = in AllocFromByteArray() local
258 const int32_t length_with_flag = String::GetFlaggedCount(byte_length, compressible); in AllocFromByteArray()
272 bool compressible = kUseStringCompression; in AllocFromUtf16ByteArray() local
273 if (compressible) { in AllocFromUtf16ByteArray()
277 compressible = false; in AllocFromUtf16ByteArray()
282 const int32_t length_with_flag = String::GetFlaggedCount(char_count, compressible); in AllocFromUtf16ByteArray()
295 const bool compressible = kUseStringCompression && in AllocFromCharArray() local
297 const int32_t length_with_flag = String::GetFlaggedCount(count, compressible); in AllocFromCharArray()
308 const bool compressible = kUseStringCompression && in AllocFromString() local
311 const int32_t length_with_flag = String::GetFlaggedCount(string_length, compressible); in AllocFromString()