Lines Matching refs:GetLength
42 int32_t count = GetLength(); in FastIndexOf()
70 hash_code = ComputeUtf16Hash(GetValueCompressed(), GetLength()); in ComputeHashCode()
72 hash_code = ComputeUtf16Hash(GetValue(), GetLength()); in ComputeHashCode()
80 return GetLength(); in GetUtfLength()
82 return CountUtf8Bytes(GetValue(), GetLength()); in GetUtfLength()
97 int32_t length = src->GetLength(); in DoReplace()
139 int32_t length = string->GetLength(); in AllocFromStrings()
140 int32_t length2 = string2->GetLength(); in AllocFromStrings()
238 } else if (this->GetLength() != that->GetLength()) { in Equals()
244 for (int32_t i = 0; i < that->GetLength(); ++i) { in Equals()
254 if (this->GetLength() != that_length) { in Equals()
267 const int32_t length = GetLength(); in Equals()
294 const int32_t length = GetLength(); in Equals()
327 ConvertUtf16ToModifiedUtf8(&result[0], byte_count, chars, GetLength()); in ToModifiedUtf8()
338 int32_t lhs_count = lhs->GetLength(); in CompareTo()
339 int32_t rhs_count = rhs->GetLength(); in CompareTo()
382 ObjPtr<CharArray> result = CharArray::Alloc(self, GetLength()); in ToCharArray()
385 int32_t length = string->GetLength(); in ToCharArray()
390 memcpy(result->GetData(), string->GetValue(), string->GetLength() * sizeof(uint16_t)); in ToCharArray()