HomeSort by relevance Sort by last modified time
    Searched refs:PrettyTypeOf (Results 1 - 25 of 36) sorted by null

1 2

  /art/runtime/jni/
jni_env_ext-inl.h 43 << mirror::Object::PrettyTypeOf(obj) << ")\n");
jni_env_ext.cc 203 o->PrettyTypeOf().c_str());
207 const std::string pretty_type(o->PrettyTypeOf());
check_jni.cc 365 f->PrettyField().c_str(), o->PrettyTypeOf().c_str());
423 o->PrettyTypeOf().c_str());
493 o->PrettyTypeOf().c_str());
649 method->PrettyTypeOf().c_str(), jmethod);
678 field->PrettyTypeOf().c_str(), jfield);
689 "%s: %p", obj->PrettyTypeOf().c_str(), obj.Ptr());
777 field->PrettyField().c_str(), o->PrettyTypeOf().c_str(), fid);
790 field->PrettyField().c_str(), o->PrettyTypeOf().c_str(), fid);
894 AbortF("%s has wrong type: %s", what, mirror::Object::PrettyTypeOf(obj).c_str());
    [all...]
  /art/runtime/interpreter/
lock_count_data.cc 66 const_cast<mirror::Object*>(obj)->PrettyTypeOf().c_str());
100 mirror::Object::PrettyTypeOf(first).c_str());
unstarted_runtime.cc 167 std::string type(mirror::Object::PrettyTypeOf(self->GetException()));
231 mirror::Object::PrettyTypeOf(class_loader).c_str());
329 mirror::Object::PrettyTypeOf(self->GetException()).c_str());
763 std::string type(mirror::Object::PrettyTypeOf(self->GetException()));
    [all...]
interpreter_switch_impl-inl.h     [all...]
interpreter_common.h 602 oss << "/" << ref_value->PrettyTypeOf();
  /art/runtime/
aot_class_linker.cc 52 + klass->PrettyTypeOf() + " because it's superclass is not initialized.");
reference_table.cc 98 std::string className(obj->PrettyTypeOf());
188 std::string className(ref->PrettyTypeOf());
207 extras = StringPrintf(" (referent is a %s)", referent->PrettyTypeOf().c_str());
reflection.cc 257 mirror::Object::PrettyTypeOf(arg.Get()).c_str()).c_str());
286 mirror::Object::PrettyTypeOf(arg.Get()).c_str()).c_str()); \
401 << argument->PrettyTypeOf() << " as argument " << (i + 1)
857 o->PrettyTypeOf().c_str()).c_str());
861 o->PrettyTypeOf().c_str()
    [all...]
monitor.cc 663 mirror::Object::PrettyTypeOf(o).c_str(),
670 mirror::Object::PrettyTypeOf(o).c_str(),
679 mirror::Object::PrettyTypeOf(o).c_str(),
688 mirror::Object::PrettyTypeOf(o).c_str(),
694 mirror::Object::PrettyTypeOf(o).c_str(),
    [all...]
quick_exception_handler.cc 207 self_->DumpStack(LOG_STREAM(INFO) << "Delivering exception: " << exception_ref->PrettyTypeOf()
  /art/runtime/native/
java_lang_System.cc 44 std::string actualType(mirror::Object::PrettyTypeOf(array));
138 LOG(FATAL) << "Unknown array type: " << srcArray->PrettyTypeOf();
145 std::string srcType(srcArray->PrettyTypeOf());
146 std::string dstType(dstArray->PrettyTypeOf());
  /art/runtime/mirror/
object.cc 283 std::string Object::PrettyTypeOf(ObjPtr<mirror::Object> obj) {
284 return (obj == nullptr) ? "null" : obj->PrettyTypeOf();
287 std::string Object::PrettyTypeOf() {
object_array-inl.h 304 std::string actualSrcType(mirror::Object::PrettyTypeOf(o));
305 std::string dstType(PrettyTypeOf());
object_test.cc     [all...]
throwable.cc 96 std::string result(PrettyTypeOf());
object.h 658 static std::string PrettyTypeOf(ObjPtr<mirror::Object> obj)
660 std::string PrettyTypeOf()
    [all...]
class-inl.h 50 DCHECK((!IsVariableSize<kVerifyFlags>())) << "class=" << PrettyTypeOf();
57 DCHECK((!IsVariableSize<kVerifyFlags>())) << "class=" << PrettyTypeOf();
    [all...]
class.cc 246 LOG(FATAL) << "class=" << PrettyTypeOf();
    [all...]
  /art/runtime/gc/
verification.cc 206 oss << info.ToString() << " = " << obj << "(" << obj->PrettyTypeOf() << ")";
235 oss << pair.second << " -> " << obj << "(" << obj->PrettyTypeOf() << ")." << pair2.second;
heap.cc     [all...]
  /art/runtime/gc/collector/
concurrent_copying.cc 627 << mirror::Object::PrettyTypeOf(ref) << " in holder " << holder << " "
628 << mirror::Object::PrettyTypeOf(holder) << " offset=" << offset.Uint32Value();
696 << holder_->PrettyTypeOf() << "(" << holder_.Ptr() << ") references object "
697 << ref->PrettyTypeOf() << "(" << ref << ") in newly allocated region at offset=" << offset;
    [all...]
  /art/runtime/gc/accounting/
mod_union_table.cc 282 LOG(INFO) << "Object " << reinterpret_cast<const void*>(obj) << "(" << obj->PrettyTypeOf()
284 << reinterpret_cast<const void*>(ref) << "(" << mirror::Object::PrettyTypeOf(ref)
  /art/runtime/entrypoints/
entrypoint_utils.cc 54 o->PrettyTypeOf().c_str(),

Completed in 493 milliseconds

1 2