Lines Matching refs:GetValue

48     return FastIndexOf<uint16_t>(GetValue(), ch, start);  in FastIndexOf()
60 return LastIndexOf<uint16_t>(GetValue(), ch, count - 1); in LastIndexOf()
140 uint16_t* new_value = new_string->GetValue(); in DoConcat()
147 memcpy(new_value, h_this->GetValue(), length_this * sizeof(uint16_t)); in DoConcat()
155 memcpy(new_value + length_this, h_arg->GetValue(), length_arg * sizeof(uint16_t)); in DoConcat()
170 new_value = new_string->GetValue(); in RepeatCharacters()
171 h_this_value = h_this->GetValue(); in RepeatCharacters()
229 memcpy(new_string->GetValue(), utf16_data_in, utf16_length * sizeof(uint16_t)); in AllocFromUtf16()
263 uint16_t* utf16_data_out = new_string->GetValue(); in AllocFromModifiedUtf8()
286 return memcmp(this->GetValue(), that->GetValue(), sizeof(uint16_t) * this->GetLength()) == 0; in Equals()
297 const uint16_t* value = GetValue(); in Equals()
330 ConvertUtf16ToModifiedUtf8(&result[0], byte_count, GetValue(), GetLength()); in ToModifiedUtf8()
357 const uint16_t* uncompressed_chars = lhs->IsCompressed() ? rhs->GetValue() : lhs->GetValue(); in CompareTo()
366 const uint16_t* lhs_chars = lhs->GetValue(); in CompareTo()
367 const uint16_t* rhs_chars = rhs->GetValue(); in CompareTo()
389 memcpy(result->GetData(), h_this->GetValue(), h_this->GetLength() * sizeof(uint16_t)); in ToCharArray()
407 uint16_t* value = GetValue() + start; in GetChars()
421 const uint16_t* value = GetValue(); in FillBytesLatin1()
439 const uint16_t* value = GetValue(); in FillBytesUTF16()
445 return (IsCompressed()) ? (GetValueCompressed() == nullptr) : (GetValue() == nullptr); in IsValueNull()