/art/runtime/interpreter/ |
D | lock_count_data.cc | 66 const_cast<mirror::Object*>(obj)->PrettyTypeOf().c_str()); in RemoveMonitorOrThrow() 100 mirror::Object::PrettyTypeOf(first).c_str()); in CheckAllMonitorsReleasedOrThrow()
|
D | unstarted_runtime.cc | 167 std::string type(mirror::Object::PrettyTypeOf(self->GetException())); in CheckExceptionGenerateClassNotFound() 231 mirror::Object::PrettyTypeOf(class_loader).c_str()); in UnstartedClassForNameCommon() 329 mirror::Object::PrettyTypeOf(self->GetException()).c_str()); in UnstartedClassNewInstance() 763 std::string type(mirror::Object::PrettyTypeOf(self->GetException())); in UnstartedVmClassLoaderFindLoadedClass()
|
D | interpreter_common.h | 602 oss << "/" << ref_value->PrettyTypeOf(); in TraceExecution()
|
D | interpreter_common.cc | 113 + obj->PrettyTypeOf() + " since it does not belong to clinit's class."); in DoFieldGet() 326 self, "Can't set fields of " + obj->PrettyTypeOf()); in DoFieldPut()
|
/art/runtime/jni/ |
D | jni_env_ext-inl.h | 43 << mirror::Object::PrettyTypeOf(obj) << ")\n"); in AddLocalReference()
|
D | jni_env_ext.cc | 203 o->PrettyTypeOf().c_str()); in ComputeMonitorDescription() 207 const std::string pretty_type(o->PrettyTypeOf()); in ComputeMonitorDescription()
|
D | jni_internal.cc | 545 std::string type(array->PrettyTypeOf()); in ThrowAIOOBE() 792 << mirror::Object::PrettyTypeOf(old_exception.Get()); in ExceptionDescribe() 796 LOG(WARNING) << "JNI WARNING: " << mirror::Object::PrettyTypeOf(soa.Self()->GetException()) in ExceptionDescribe() 2155 soa.Vm()->JniAbortF("GetArrayLength", "not an array: %s", obj->PrettyTypeOf().c_str()); in GetArrayLength()
|
/art/runtime/native/ |
D | java_lang_System.cc | 44 std::string actualType(mirror::Object::PrettyTypeOf(array)); in ThrowArrayStoreException_NotAnArray() 138 LOG(FATAL) << "Unknown array type: " << srcArray->PrettyTypeOf(); in System_arraycopy() 145 std::string srcType(srcArray->PrettyTypeOf()); in System_arraycopy() 146 std::string dstType(dstArray->PrettyTypeOf()); in System_arraycopy()
|
/art/runtime/mirror/ |
D | object.cc | 283 std::string Object::PrettyTypeOf(ObjPtr<mirror::Object> obj) { in PrettyTypeOf() function in art::mirror::Object 284 return (obj == nullptr) ? "null" : obj->PrettyTypeOf(); in PrettyTypeOf() 287 std::string Object::PrettyTypeOf() { in PrettyTypeOf() function in art::mirror::Object
|
D | object_array-inl.h | 304 std::string actualSrcType(mirror::Object::PrettyTypeOf(o)); in AssignableCheckingMemcpy() 305 std::string dstType(PrettyTypeOf()); in AssignableCheckingMemcpy()
|
D | throwable.cc | 96 std::string result(PrettyTypeOf()); in Dump()
|
D | object_test.cc | 810 TEST_F(ObjectTest, PrettyTypeOf) { in TEST_F() argument 812 EXPECT_EQ("null", mirror::Object::PrettyTypeOf(nullptr)); in TEST_F() 816 EXPECT_EQ("java.lang.String", mirror::Object::PrettyTypeOf(s.Get())); in TEST_F() 819 EXPECT_EQ("short[]", mirror::Object::PrettyTypeOf(a.Get())); in TEST_F() 824 EXPECT_EQ("java.lang.String[]", mirror::Object::PrettyTypeOf(o)); in TEST_F() 825 EXPECT_EQ("java.lang.Class<java.lang.String[]>", mirror::Object::PrettyTypeOf(o->GetClass())); in TEST_F()
|
D | object.h | 658 static std::string PrettyTypeOf(ObjPtr<mirror::Object> obj) 660 std::string PrettyTypeOf()
|
D | class-inl.h | 50 DCHECK((!IsVariableSize<kVerifyFlags>())) << "class=" << PrettyTypeOf(); in GetObjectSize() 57 DCHECK((!IsVariableSize<kVerifyFlags>())) << "class=" << PrettyTypeOf(); in GetObjectSizeAllocFastPath()
|
/art/runtime/ |
D | aot_class_linker.cc | 52 + klass->PrettyTypeOf() + " because it's superclass is not initialized."); in InitializeClass()
|
D | reference_table.cc | 98 std::string className(obj->PrettyTypeOf()); in DumpSummaryLine() 188 std::string className(ref->PrettyTypeOf()); in Dump() 207 extras = StringPrintf(" (referent is a %s)", referent->PrettyTypeOf().c_str()); in Dump()
|
D | reflection.cc | 257 mirror::Object::PrettyTypeOf(arg.Get()).c_str()).c_str()); in BuildArgArrayFromObjectArray() 286 mirror::Object::PrettyTypeOf(arg.Get()).c_str()).c_str()); \ in BuildArgArrayFromObjectArray() 401 << argument->PrettyTypeOf() << " as argument " << (i + 1) in CheckMethodArguments() 857 o->PrettyTypeOf().c_str()).c_str()); in UnboxPrimitive() 861 o->PrettyTypeOf().c_str(), in UnboxPrimitive() 993 std::string actual_class_name(mirror::Object::PrettyTypeOf(o)); in InvalidReceiverError()
|
D | monitor.cc | 663 mirror::Object::PrettyTypeOf(o).c_str(), in FailedUnlock() 670 mirror::Object::PrettyTypeOf(o).c_str(), in FailedUnlock() 679 mirror::Object::PrettyTypeOf(o).c_str(), in FailedUnlock() 688 mirror::Object::PrettyTypeOf(o).c_str(), in FailedUnlock() 694 mirror::Object::PrettyTypeOf(o).c_str(), in FailedUnlock()
|
D | quick_exception_handler.cc | 207 self_->DumpStack(LOG_STREAM(INFO) << "Delivering exception: " << exception_ref->PrettyTypeOf() in FindCatch()
|
/art/runtime/gc/ |
D | verification.cc | 206 oss << info.ToString() << " = " << obj << "(" << obj->PrettyTypeOf() << ")"; in VisitRoot() 235 oss << pair.second << " -> " << obj << "(" << obj->PrettyTypeOf() << ")." << pair2.second; in FirstPathFromRootSet()
|
D | heap.cc | 2984 LOG(ERROR) << "Root " << root << " is dead with type " << mirror::Object::PrettyTypeOf(root) in VisitRoot() 3013 LOG(ERROR) << "Obj type " << obj->PrettyTypeOf(); in VerifyReference() 3033 LOG(ERROR) << "Ref type " << ref->PrettyTypeOf(); in VerifyReference() 3238 LOG(ERROR) << "Object " << obj << " " << mirror::Object::PrettyTypeOf(obj) in operator ()() 3239 << " references " << ref << " " << mirror::Object::PrettyTypeOf(ref) in operator ()()
|
/art/runtime/gc/accounting/ |
D | mod_union_table.cc | 282 LOG(INFO) << "Object " << reinterpret_cast<const void*>(obj) << "(" << obj->PrettyTypeOf() in operator ()() 284 << reinterpret_cast<const void*>(ref) << "(" << mirror::Object::PrettyTypeOf(ref) in operator ()()
|
/art/runtime/entrypoints/ |
D | entrypoint_utils.cc | 54 o->PrettyTypeOf().c_str(), in CheckReferenceResult()
|
/art/runtime/arch/ |
D | stub_test.cc | 1060 EXPECT_FALSE(self->IsExceptionPending()) << mirror::Object::PrettyTypeOf(self->GetException()); in TEST_F() 1940 ASSERT_FALSE(self->IsExceptionPending()) << mirror::Object::PrettyTypeOf(self->GetException()); in TEST_F()
|
/art/runtime/hprof/ |
D | hprof.cc | 1078 << "Already visited " << obj << "(" << obj->PrettyTypeOf() << ")"; in DumpHeapObject()
|