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

1 2

  /art/runtime/
jni_internal-inl.h 36 << entry_count << " (most recent was a " << PrettyTypeOf(obj) << ")\n");
utils_test.cc 106 TEST_F(UtilsTest, PrettyTypeOf) {
108 EXPECT_EQ("null", PrettyTypeOf(NULL));
112 EXPECT_EQ("java.lang.String", PrettyTypeOf(s.Get()));
115 EXPECT_EQ("short[]", PrettyTypeOf(a.Get()));
120 EXPECT_EQ("java.lang.String[]", PrettyTypeOf(o));
121 EXPECT_EQ("java.lang.Class<java.lang.String[]>", PrettyTypeOf(o->GetClass()));
reference_table.cc 124 std::string className(PrettyTypeOf(obj));
181 std::string className(PrettyTypeOf(ref));
monitor.cc 344 PrettyTypeOf(o).c_str(),
351 PrettyTypeOf(o).c_str(),
360 PrettyTypeOf(o).c_str(),
369 PrettyTypeOf(o).c_str(),
375 PrettyTypeOf(o).c_str(),
    [all...]
reflection.cc 241 PrettyTypeOf(arg).c_str()).c_str());
269 PrettyTypeOf(arg).c_str()).c_str()); \
386 << PrettyTypeOf(argument) << " as argument " << (i + 1)
610 std::string actual_class_name(PrettyTypeOf(o));
705 PrettyTypeOf(o).c_str()).c_str());
709 PrettyTypeOf(o).c_str(),
check_jni.cc 219 PrettyField(f.Get()).c_str(), PrettyTypeOf(obj).c_str());
264 PrettyField(f).c_str(), PrettyTypeOf(o).c_str());
360 PrettyMethod(m).c_str(), PrettyTypeOf(o).c_str());
469 msg += "INVALID NON-CLASS OBJECT OF TYPE:" + PrettyTypeOf(c);
657 JniAbortF(function_name_, "%s has wrong type: %s", what, PrettyTypeOf(obj).c_str());
691 JniAbortF(function_name_, "jarray argument has non-array type: %s", PrettyTypeOf(a).c_str());
809 std::string type(PrettyTypeOf(exception));
    [all...]
quick_exception_handler.cc 123 self_->DumpStack(LOG(INFO) << "Delivering exception: " << PrettyTypeOf(exception)
utils.h 315 // Used to implement PrettyClass, PrettyField, PrettyMethod, and PrettyTypeOf,
343 std::string PrettyTypeOf(mirror::Object* obj)
utils.cc 411 std::string PrettyTypeOf(mirror::Object* obj) {
445 result += PrettyTypeOf(c->GetClassLoader());
    [all...]
thread.cc     [all...]
jni_internal.cc 248 std::string type(PrettyTypeOf(array));
746 << PrettyTypeOf(old_exception.Get());
750 LOG(WARNING) << "JNI WARNING: " << PrettyTypeOf(soa.Self()->GetException(nullptr))
    [all...]
runtime.cc 250 os << "Pending exception " << PrettyTypeOf(exception)
    [all...]
  /art/runtime/native/
java_lang_System.cc 38 std::string actualType(PrettyTypeOf(array));
124 LOG(FATAL) << "Unknown array type: " << PrettyTypeOf(srcArray);
131 std::string srcType(PrettyTypeOf(srcArray));
132 std::string dstType(PrettyTypeOf(dstArray));
  /art/runtime/mirror/
throwable.cc 73 std::string result(PrettyTypeOf(this));
object_array-inl.h 229 std::string actualSrcType(PrettyTypeOf(o));
230 std::string dstType(PrettyTypeOf(this));
class-inl.h 46 CHECK(!is_variable_size) << " class=" << PrettyTypeOf(this);
class.cc 156 CHECK_GE(new_class_size, GetClassSize()) << " class=" << PrettyTypeOf(this);
object-inl.h 404 << " class=" << PrettyTypeOf(GetClass<kNewFlags, kReadBarrierOption>());
    [all...]
  /art/runtime/gc/accounting/
mod_union_table.cc 181 LOG(INFO) << "Object " << reinterpret_cast<const void*>(obj) << "(" << PrettyTypeOf(obj)
182 << ")" << "References " << reinterpret_cast<const void*>(ref) << "(" << PrettyTypeOf(ref)
  /art/runtime/entrypoints/
entrypoint_utils.cc 229 JniAbortF(NULL, "attempt to return an instance of %s from %s", PrettyTypeOf(o).c_str(),
  /art/runtime/interpreter/
interpreter_common.h 365 oss << "/" << PrettyTypeOf(ref_value);
  /art/runtime/gc/
heap.cc     [all...]
  /art/runtime/arch/
stub_test.cc     [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc     [all...]
  /art/runtime/gc/allocator/
rosalloc.cc     [all...]

Completed in 266 milliseconds

1 2