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()
73 int32_t length = src->GetLength(); in DoReplace()
116 int32_t length_this = h_this->GetLength(); in DoConcat()
117 int32_t length_arg = h_arg->GetLength(); in DoConcat()
228 return memcmp(this->GetValueCompressed(), that->GetValueCompressed(), this->GetLength()) == 0; in Equals()
230 return memcmp(this->GetValue(), that->GetValue(), sizeof(uint16_t) * this->GetLength()) == 0; in Equals()
236 const int32_t length = GetLength(); in Equals()
270 return std::string(reinterpret_cast<const char*>(GetValueCompressed()), GetLength()); in ToModifiedUtf8()
274 ConvertUtf16ToModifiedUtf8(&result[0], byte_count, GetValue(), GetLength()); in ToModifiedUtf8()
285 int32_t lhs_count = lhs->GetLength(); in CompareTo()
286 int32_t rhs_count = rhs->GetLength(); in CompareTo()
323 ObjPtr<CharArray> result = CharArray::Alloc(self, h_this->GetLength()); in ToCharArray()
326 int32_t length = h_this->GetLength(); in ToCharArray()
333 memcpy(result->GetData(), h_this->GetValue(), h_this->GetLength() * sizeof(uint16_t)); in ToCharArray()