Lines Matching refs:GetLength
38 int32_t count = GetLength(); in FastIndexOf()
54 hash_code = ComputeUtf16Hash(GetValueCompressed(), GetLength()); in ComputeHashCode()
56 hash_code = ComputeUtf16Hash(GetValue(), GetLength()); in ComputeHashCode()
64 return GetLength(); in GetUtfLength()
66 return CountUtf8Bytes(GetValue(), GetLength()); in GetUtfLength()
81 int32_t length = src->GetLength(); in DoReplace()
125 int32_t length = string->GetLength(); in AllocFromStrings()
126 int32_t length2 = string2->GetLength(); in AllocFromStrings()
226 } else if (this->GetLength() != that->GetLength()) { in Equals()
232 for (int32_t i = 0; i < that->GetLength(); ++i) { in Equals()
242 const int32_t length = GetLength(); in Equals()
278 ConvertUtf16ToModifiedUtf8(&result[0], byte_count, chars, GetLength()); in ToModifiedUtf8()
289 int32_t lhs_count = lhs->GetLength(); in CompareTo()
290 int32_t rhs_count = rhs->GetLength(); in CompareTo()
327 ObjPtr<CharArray> result = CharArray::Alloc(self, h_this->GetLength()); in ToCharArray()
330 int32_t length = h_this->GetLength(); in ToCharArray()
335 memcpy(result->GetData(), h_this->GetValue(), h_this->GetLength() * sizeof(uint16_t)); in ToCharArray()