Lines Matching refs:GetValue
47 return FastIndexOf<uint16_t>(GetValue(), ch, start); in FastIndexOf()
56 hash_code = ComputeUtf16Hash(GetValue(), GetLength()); in ComputeHashCode()
132 uint16_t* new_value = new_string->GetValue(); in DoConcat()
139 memcpy(new_value, h_this->GetValue(), length_this * sizeof(uint16_t)); in DoConcat()
147 memcpy(new_value + length_this, h_arg->GetValue(), length_arg * sizeof(uint16_t)); in DoConcat()
173 memcpy(new_string->GetValue(), utf16_data_in, utf16_length * sizeof(uint16_t)); in AllocFromUtf16()
207 uint16_t* utf16_data_out = new_string->GetValue(); in AllocFromModifiedUtf8()
230 return memcmp(this->GetValue(), that->GetValue(), sizeof(uint16_t) * this->GetLength()) == 0; in Equals()
241 const uint16_t* value = GetValue(); in Equals()
274 ConvertUtf16ToModifiedUtf8(&result[0], byte_count, GetValue(), GetLength()); in ToModifiedUtf8()
301 const uint16_t* uncompressed_chars = lhs->IsCompressed() ? rhs->GetValue() : lhs->GetValue(); in CompareTo()
310 const uint16_t* lhs_chars = lhs->GetValue(); in CompareTo()
311 const uint16_t* rhs_chars = rhs->GetValue(); in CompareTo()
333 memcpy(result->GetData(), h_this->GetValue(), h_this->GetLength() * sizeof(uint16_t)); in ToCharArray()
351 uint16_t* value = GetValue() + start; in GetChars()
357 return (IsCompressed()) ? (GetValueCompressed() == nullptr) : (GetValue() == nullptr); in IsValueNull()