Lines Matching refs:IsCompressed
44 if (IsCompressed()) { in FastIndexOf()
53 if (IsCompressed()) { in ComputeHashCode()
63 if (IsCompressed()) { in GetUtfLength()
82 DCHECK(src->IsCompressed() in DoReplace()
88 (src->IsCompressed() || (!IsASCII(old_c) && AllASCIIExcept(src->value_, length, old_c))); in DoReplace()
101 if (LIKELY(src->IsCompressed())) { // LIKELY(compressible == src->IsCompressed()) in DoReplace()
112 if (UNLIKELY(src->IsCompressed())) { // LIKELY(compressible == src->IsCompressed()) in DoReplace()
129 (string->IsCompressed() && string2->IsCompressed()); in AllocFromStrings()
143 if (string->IsCompressed()) { in AllocFromStrings()
150 if (string2->IsCompressed()) { in AllocFromStrings()
272 if (IsCompressed()) { in ToModifiedUtf8()
293 if (lhs->IsCompressed() && rhs->IsCompressed()) { in CompareTo()
302 } else if (lhs->IsCompressed() || rhs->IsCompressed()) { in CompareTo()
304 lhs->IsCompressed() ? lhs->GetValueCompressed() : rhs->GetValueCompressed(); in CompareTo()
305 const uint16_t* uncompressed_chars = lhs->IsCompressed() ? rhs->GetValue() : lhs->GetValue(); in CompareTo()
310 return lhs->IsCompressed() ? char_diff : -char_diff; in CompareTo()
331 if (string->IsCompressed()) { in ToCharArray()
347 if (IsCompressed()) { in GetChars()
358 return (IsCompressed()) ? (GetValueCompressed() == nullptr) : (GetValue() == nullptr); in IsValueNull()