Home
last modified time | relevance | path

Searched refs:utf16_length_with_flag (Results 1 – 3 of 3) sorted by relevance

/art/runtime/mirror/
Dstring-inl.h204 inline String* String::Alloc(Thread* self, int32_t utf16_length_with_flag, in Alloc() argument
208 const bool compressible = kUseStringCompression && String::IsCompressed(utf16_length_with_flag); in Alloc()
210 size_t length = String::GetLengthFromCount(utf16_length_with_flag); in Alloc()
Dstring.cc215 const int32_t utf16_length_with_flag = String::GetFlaggedCount(utf16_length, compressible); in AllocFromModifiedUtf8() local
216 SetStringCountVisitor visitor(utf16_length_with_flag); in AllocFromModifiedUtf8()
217 ObjPtr<String> string = Alloc<true>(self, utf16_length_with_flag, allocator_type, visitor); in AllocFromModifiedUtf8()
Dstring.h250 ALWAYS_INLINE static String* Alloc(Thread* self, int32_t utf16_length_with_flag,