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

1 2

  /art/runtime/
jni_env_ext-inl.h 36 << entry_count << " (most recent was a " << PrettyTypeOf(obj) << ")\n");
utils_test.cc 109 TEST_F(UtilsTest, PrettyTypeOf) {
111 EXPECT_EQ("null", PrettyTypeOf(nullptr));
115 EXPECT_EQ("java.lang.String", PrettyTypeOf(s.Get()));
118 EXPECT_EQ("short[]", PrettyTypeOf(a.Get()));
123 EXPECT_EQ("java.lang.String[]", PrettyTypeOf(o));
124 EXPECT_EQ("java.lang.Class<java.lang.String[]>", PrettyTypeOf(o->GetClass()));
reference_table.cc 91 std::string className(PrettyTypeOf(obj));
181 std::string className(PrettyTypeOf(ref));
200 extras = StringPrintf(" (storing a %s)", PrettyTypeOf(referent).c_str());
jni_env_ext.cc 172 PrettyTypeOf(o).c_str());
176 const std::string pretty_type(PrettyTypeOf(o));
reflection.cc 236 PrettyTypeOf(arg).c_str()).c_str());
264 PrettyTypeOf(arg).c_str()).c_str()); \
382 << PrettyTypeOf(argument) << " as argument " << (i + 1)
756 PrettyTypeOf(o).c_str()).c_str());
759 PrettyTypeOf(o).c_str(),
    [all...]
monitor.cc 506 PrettyTypeOf(o).c_str(),
513 PrettyTypeOf(o).c_str(),
522 PrettyTypeOf(o).c_str(),
531 PrettyTypeOf(o).c_str(),
537 PrettyTypeOf(o).c_str(),
    [all...]
read_barrier-inl.h 234 << "obj=" << obj << " rb_ptr=" << rb_ptr << " " << PrettyTypeOf(obj);
utils.h 131 // Used to implement PrettyClass, PrettyField, PrettyMethod, and PrettyTypeOf,
159 std::string PrettyTypeOf(mirror::Object* obj)
check_jni.cc 292 PrettyField(f).c_str(), PrettyTypeOf(o).c_str());
349 AbortF("can't call %s on instance of %s", PrettyMethod(m).c_str(), PrettyTypeOf(o).c_str());
416 AbortF("can't call %s on instance of %s", PrettyMethod(m).c_str(), PrettyTypeOf(o).c_str());
570 PrettyTypeOf(method).c_str(), jmethod);
600 PrettyTypeOf(field).c_str(), jfield);
611 "%s: %p", PrettyTypeOf(obj).c_str(), obj);
698 PrettyField(field).c_str(), PrettyTypeOf(o).c_str(), fid);
711 PrettyField(field).c_str(), PrettyTypeOf(o).c_str(), fid);
811 AbortF("%s has wrong type: %s", what, PrettyTypeOf(obj).c_str());
945 *msg += "INVALID NON-CLASS OBJECT OF TYPE:" + PrettyTypeOf(c)
    [all...]
stack.cc     [all...]
quick_exception_handler.cc 145 self_->DumpStack(LOG(INFO) << "Delivering exception: " << PrettyTypeOf(exception)
utils.cc 396 std::string PrettyTypeOf(mirror::Object* obj) {
430 result += PrettyTypeOf(c->GetClassLoader());
    [all...]
jni_internal.cc 231 std::string type(PrettyTypeOf(array));
473 << PrettyTypeOf(old_exception.Get());
477 LOG(WARNING) << "JNI WARNING: " << PrettyTypeOf(soa.Self()->GetException())
    [all...]
  /art/runtime/native/
java_lang_System.cc 40 std::string actualType(PrettyTypeOf(array));
130 LOG(FATAL) << "Unknown array type: " << PrettyTypeOf(srcArray);
137 std::string srcType(PrettyTypeOf(srcArray));
138 std::string dstType(PrettyTypeOf(dstArray));
  /art/runtime/mirror/
throwable.cc 85 std::string result(PrettyTypeOf(this));
object_array-inl.h 237 std::string actualSrcType(PrettyTypeOf(o));
238 std::string dstType(PrettyTypeOf(this));
  /art/runtime/gc/collector/
concurrent_copying.cc 584 << " " << to_ref << " " << PrettyTypeOf(to_ref);
674 << "To-space ref " << ref << " " << PrettyTypeOf(ref)
680 << "Non-moving/unevac from space ref " << ref << " " << PrettyTypeOf(ref)
758 << "Non-moving space/unevac from space ref " << obj << " " << PrettyTypeOf(obj)
    [all...]
  /art/runtime/gc/accounting/
mod_union_table.cc 274 LOG(INFO) << "Object " << reinterpret_cast<const void*>(obj) << "(" << PrettyTypeOf(obj)
275 << ")" << "References " << reinterpret_cast<const void*>(ref) << "(" << PrettyTypeOf(ref)
  /art/runtime/entrypoints/
entrypoint_utils.cc 133 PrettyTypeOf(o).c_str(),
  /art/runtime/gc/
heap.cc     [all...]
  /art/runtime/interpreter/
interpreter_goto_table_impl.cc 564 PrettyTypeOf(obj).c_str());
    [all...]
interpreter_switch_impl.cc 507 PrettyTypeOf(obj).c_str());
    [all...]
unstarted_runtime.cc 151 std::string type(PrettyTypeOf(self->GetException()));
272 PrettyTypeOf(self->GetException()).c_str());
534 std::string type(PrettyTypeOf(self->GetException()));
    [all...]
interpreter_common.h     [all...]
  /art/runtime/arch/
stub_test.cc     [all...]

Completed in 465 milliseconds

1 2