/art/compiler/ |
D | exception_test.cc | 226 trace_array->Get(0)->GetDeclaringClass()->ToModifiedUtf8().c_str()); in TEST_F() 228 trace_array->Get(0)->GetFileName()->ToModifiedUtf8().c_str()); in TEST_F() 229 EXPECT_STREQ("g", trace_array->Get(0)->GetMethodName()->ToModifiedUtf8().c_str()); in TEST_F() 234 trace_array->Get(1)->GetDeclaringClass()->ToModifiedUtf8().c_str()); in TEST_F() 236 trace_array->Get(1)->GetFileName()->ToModifiedUtf8().c_str()); in TEST_F() 237 EXPECT_STREQ("f", trace_array->Get(1)->GetMethodName()->ToModifiedUtf8().c_str()); in TEST_F()
|
D | image_writer.cc | 955 << string->ToModifiedUtf8(); in FindInternedString() 970 << string->ToModifiedUtf8(); in FindInternedString()
|
/art/runtime/mirror/ |
D | throwable.cc | 89 result += msg->ToModifiedUtf8(); in Dump() 135 method_name != nullptr ? method_name->ToModifiedUtf8().c_str() : "<unknown method>", in Dump() 136 file_name != nullptr ? file_name->ToModifiedUtf8().c_str() : "(Unknown Source)", in Dump()
|
D | string.h | 148 std::string ToModifiedUtf8() SHARED_REQUIRES(Locks::mutator_lock_);
|
D | string-inl.h | 224 << ToModifiedUtf8() << " " << result; in GetHashCode()
|
D | string.cc | 221 std::string String::ToModifiedUtf8() { in ToModifiedUtf8() function in art::mirror::String
|
D | class.cc | 903 return dex_cache->GetLocation()->ToModifiedUtf8(); in GetLocation()
|
/art/runtime/ |
D | intern_table.cc | 215 const std::string utf8 = s->ToModifiedUtf8(); in LookupStringFromImage() 404 CHECK(Find(string.Read()) == nullptr) << "Already found " << string.Read()->ToModifiedUtf8(); in AddTableFromMemory() 439 LOG(FATAL) << "Attempting to remove non-interned string " << s->ToModifiedUtf8(); in Remove()
|
D | reference_table.cc | 189 std::string utf8(s->ToModifiedUtf8()); in Dump()
|
D | quick_exception_handler.cc | 144 std::string str_msg(msg != nullptr ? msg->ToModifiedUtf8() : ""); in FindCatch()
|
D | class_linker.cc | 1544 std::string dex_file_location(dex_cache->GetLocation()->ToModifiedUtf8()); in OpenImageDexFiles() 1613 std::string dex_file_location(h_dex_cache->GetLocation()->ToModifiedUtf8()); in AddImageSpace() 1711 VLOG(image) << name->ToModifiedUtf8(); in AddImageSpace() 1715 VLOG(image) << name->ToModifiedUtf8(); in AddImageSpace() 3196 const std::string dex_cache_location = dex_cache->GetLocation()->ToModifiedUtf8(); in RegisterDexFileLocked() 3546 source += dex_cache->GetLocation()->ToModifiedUtf8(); in InsertClass() 3787 LOG(WARNING) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8(); in AttemptSupertypeVerification() 3935 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8() in VerifyClass() 3968 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8() in VerifyClass() 4261 decoded_name->ToModifiedUtf8().c_str())); in CreateProxyClass() [all …]
|
D | thread.cc | 445 self->SetThreadName(self->GetThreadName(soa)->ToModifiedUtf8().c_str()); in CreateCallback() 596 thread_name = java_name->ToModifiedUtf8(); in CreateNativeThread() 864 SetThreadName(peer_thread_name->ToModifiedUtf8().c_str()); in CreatePeer() 1252 group_name = (group_name_string != nullptr) ? group_name_string->ToModifiedUtf8() : "<null>"; in DumpState()
|
D | utils.cc | 214 return PrettyDescriptor(java_descriptor->ToModifiedUtf8().c_str()); in PrettyDescriptor()
|
D | debugger.cc | 1930 *str = obj->AsString()->ToModifiedUtf8(); in StringToUtf8() 1972 *name = s->ToModifiedUtf8(); in GetThreadName() 2039 std::string thread_group_name(s->ToModifiedUtf8()); in GetThreadGroupName()
|
D | jni_internal.cc | 103 << PrettyDescriptor(c) << " in " << c->GetDexCache()->GetLocation()->ToModifiedUtf8() in ReportInvalidJNINativeMethod() 2188 << c->GetDexCache()->GetLocation()->ToModifiedUtf8(); in RegisterNativeMethods()
|
D | class_linker_test.cc | 1230 location->ToModifiedUtf8(), in TEST_F()
|
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 120 std::string descriptor(DotToDescriptor(className->ToModifiedUtf8().c_str())); in UnstartedRuntimeFindClass() 299 " runtime. name=%s class=%s", name2->ToModifiedUtf8().c_str(), in UnstartedClassGetDeclaredField() 402 std::string resource_name_str = resource_name->ToModifiedUtf8(); in GetResourceAsStream() 774 AbortTransactionOrFail(self, "getProperty key %s not supported", h_key->ToModifiedUtf8().c_str()); in GetSystemProperty() 1310 std::string string_value = obj->AsString()->ToModifiedUtf8(); in UnstartedIntegerParseInt() 1354 std::string string_value = obj->AsString()->ToModifiedUtf8(); in UnstartedLongParseLong()
|
D | interpreter_common.h | 1003 oss << "/java.lang.String \"" << ref_value->AsString()->ToModifiedUtf8() << "\""; in TraceExecution()
|
/art/runtime/native/ |
D | java_lang_Class.cc | 214 CHECK_NE(field.GetName(), name->ToModifiedUtf8()); in FindFieldByName() 304 std::string name_str = name_string->ToModifiedUtf8(); in Class_getDeclaredField()
|
D | dalvik_system_VMRuntime.cc | 274 table_->operator[](string->ToModifiedUtf8()) = string; in VisitRoot()
|
/art/compiler/jni/ |
D | jni_compiler_test.cc | 780 EXPECT_STREQ("MyClassNatives.java", ste->GetFileName()->ToModifiedUtf8().c_str()); in JNI_TEST() 781 EXPECT_STREQ("MyClassNatives", ste->GetDeclaringClass()->ToModifiedUtf8().c_str()); in JNI_TEST() 782 EXPECT_STREQ("fooI", ste->GetMethodName()->ToModifiedUtf8().c_str()); in JNI_TEST()
|
/art/oatdump/ |
D | oatdump.cc | 1547 PrintableString(string->ToModifiedUtf8().c_str()).c_str()); in PrettyObjectValue() 1679 PrintableString(obj->AsString()->ToModifiedUtf8().c_str()).c_str()); in Callback()
|
/art/runtime/hprof/ |
D | hprof.cc | 617 return LookupStringId(string->ToModifiedUtf8()); in LookupStringId()
|