Lines Matching refs:GetValueCompressed

46     return FastIndexOf<uint8_t>(GetValueCompressed(), ch, start);  in FastIndexOf()
58 return LastIndexOf<uint8_t>(GetValueCompressed(), ch, count - 1); in LastIndexOf()
136 uint8_t* new_value = new_string->GetValueCompressed(); in DoConcat()
137 memcpy(new_value, h_this->GetValueCompressed(), length_this * sizeof(uint8_t)); in DoConcat()
138 memcpy(new_value + length_this, h_arg->GetValueCompressed(), length_arg * sizeof(uint8_t)); in DoConcat()
142 const uint8_t* value_this = h_this->GetValueCompressed(); in DoConcat()
150 const uint8_t* value_arg = h_arg->GetValueCompressed(); in DoConcat()
167 new_value = new_string->GetValueCompressed(); in RepeatCharacters()
168 h_this_value = h_this->GetValueCompressed(); in RepeatCharacters()
224 uint8_t* value = new_string->GetValueCompressed(); in AllocFromUtf16()
261 memcpy(new_string->GetValueCompressed(), utf8_data_in, utf16_length * sizeof(uint8_t)); in AllocFromModifiedUtf8()
284 return memcmp(this->GetValueCompressed(), that->GetValueCompressed(), this->GetLength()) == 0; in Equals()
295 memcmp(modified_utf8, GetValueCompressed(), length) == 0; in Equals()
326 return std::string(reinterpret_cast<const char*>(GetValueCompressed()), GetLength()); in ToModifiedUtf8()
346 const uint8_t* lhs_chars = lhs->GetValueCompressed(); in CompareTo()
347 const uint8_t* rhs_chars = rhs->GetValueCompressed(); in CompareTo()
356 lhs->IsCompressed() ? lhs->GetValueCompressed() : rhs->GetValueCompressed(); in CompareTo()
383 const uint8_t* src = h_this->GetValueCompressed(); in ToCharArray()
402 const uint8_t* value = GetValueCompressed() + start; in GetChars()
416 const uint8_t* value = GetValueCompressed(); in FillBytesLatin1()
432 const uint8_t* value = GetValueCompressed(); in FillBytesUTF16()
445 return (IsCompressed()) ? (GetValueCompressed() == nullptr) : (GetValue() == nullptr); in IsValueNull()