Home
last modified time | relevance | path

Searched refs:IsCompressed (Results 1 – 12 of 12) sorted by relevance

/art/runtime/mirror/
Dstring.cc44 if (IsCompressed()) { in FastIndexOf()
53 if (IsCompressed()) { in ComputeHashCode()
63 if (IsCompressed()) { in GetUtfLength()
82 DCHECK(src->IsCompressed() in DoReplace()
88 (src->IsCompressed() || (!IsASCII(old_c) && AllASCIIExcept(src->value_, length, old_c))); in DoReplace()
101 if (LIKELY(src->IsCompressed())) { // LIKELY(compressible == src->IsCompressed()) in DoReplace()
112 if (UNLIKELY(src->IsCompressed())) { // LIKELY(compressible == src->IsCompressed()) in DoReplace()
129 (string->IsCompressed() && string2->IsCompressed()); in AllocFromStrings()
143 if (string->IsCompressed()) { in AllocFromStrings()
150 if (string2->IsCompressed()) { in AllocFromStrings()
[all …]
Dstring-alloc-inl.h47 DCHECK(!string->IsCompressed() || kUseStringCompression); in operator()
67 DCHECK(!string->IsCompressed() || kUseStringCompression); in operator()
70 if (string->IsCompressed()) { in operator()
105 if (kUseStringCompression && String::IsCompressed(count_)) { in operator()
135 bool compressible = kUseStringCompression && String::IsCompressed(count_); in operator()
136 if (src_string_->IsCompressed()) { in operator()
163 const bool compressible = kUseStringCompression && String::IsCompressed(utf16_length_with_flag); in Alloc()
246 ((string->IsCompressed()) ? true : String::AllASCII<uint16_t>(string->GetValue() + offset, in AllocFromString()
Dstring-inl.h51 if (IsCompressed()) { in CharAt()
76 if (IsCompressed()) { in GetHashCode()
Dstring.h72 if (IsCompressed()) { in SizeOf()
193 bool IsCompressed() REQUIRES_SHARED(Locks::mutator_lock_) { in IsCompressed() function
194 return kUseStringCompression && IsCompressed(GetCount()); in IsCompressed()
204 ALWAYS_INLINE static bool IsCompressed(int32_t count) { in IsCompressed() function
/art/runtime/interpreter/
Dinterpreter_intrinsics.cc196 if (str->IsCompressed()) { in MterpStringCharAt()
281 if (str->IsCompressed()) { in MterpStringGetCharsNoCheck()
311 if (str->IsCompressed()) { in MterpStringEquals()
Dunstarted_runtime_test.cc431 if (string_arg->IsCompressed() && string_result->IsCompressed()) { in TEST_F()
434 } else if (!string_arg->IsCompressed() && !string_result->IsCompressed()) { in TEST_F()
/art/runtime/jni/
Djni_internal.cc2002 if (s->IsCompressed()) { in GetStringRegion()
2022 if (s->IsCompressed()) { in GetStringUTFRegion()
2039 if (heap->IsMovableObject(s) || s->IsCompressed()) { in GetStringChars()
2041 if (s->IsCompressed()) { in GetStringChars()
2064 if (s->IsCompressed() || (s->IsCompressed() == false && chars != s->GetValue())) { in ReleaseStringChars()
2085 if (s->IsCompressed()) { in GetStringCritical()
2117 if (s->IsCompressed() || (s->IsCompressed() == false && s->GetValue() != chars)) { in ReleaseStringCritical()
2134 if (s->IsCompressed()) { in GetStringUTFChars()
/art/runtime/
Dintern_table.cc327 if (a_string->IsCompressed()) { in operator ()()
Ddebugger.cc4375 bool is_compressed = (name != nullptr) ? name->IsCompressed() : false; in DdmSendThreadNotification()
/art/runtime/hprof/
Dhprof.cc1534 if (s->IsCompressed()) { in DumpHeapInstanceObject()
1561 if (s->IsCompressed()) { in DumpHeapInstanceObject()
/art/runtime/native/
Djava_lang_Class.cc344 const bool is_name_compressed = name->IsCompressed(); in FindFieldByName()
/art/openjdkjvmti/
Dti_heap.cc84 if (str->IsCompressed()) { in ReportString()