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

  /art/runtime/native/
java_lang_System.cc 174 std::string actualType(PrettyTypeOf(array));
223 std::string srcType(PrettyTypeOf(srcArray));
224 std::string dstType(PrettyTypeOf(dstArray));
251 LOG(FATAL) << "Unknown primitive array type: " << PrettyTypeOf(srcArray);
309 std::string actualSrcType(PrettyTypeOf(o));
310 std::string dstType(PrettyTypeOf(dstArray));
  /art/runtime/
utils_test.cc 92 TEST_F(UtilsTest, PrettyTypeOf) {
94 EXPECT_EQ("null", PrettyTypeOf(NULL));
97 EXPECT_EQ("java.lang.String", PrettyTypeOf(s.get()));
100 EXPECT_EQ("short[]", PrettyTypeOf(a.get()));
105 EXPECT_EQ("java.lang.String[]", PrettyTypeOf(o));
106 EXPECT_EQ("java.lang.Class<java.lang.String[]>", PrettyTypeOf(o->GetClass()));
monitor.cc 300 PrettyTypeOf(o).c_str(),
307 PrettyTypeOf(o).c_str(),
316 PrettyTypeOf(o).c_str(),
325 PrettyTypeOf(o).c_str(),
331 PrettyTypeOf(o).c_str(),
636 threadId, thinp, PrettyTypeOf(obj).c_str(), LW_LOCK_OWNER(thin));
691 reinterpret_cast<void*>(*thinp), PrettyTypeOf(obj).c_str());
865 os << "<" << object << "> (a " << PrettyTypeOf(object) << ")";
    [all...]
reference_table.cc 120 std::string className(PrettyTypeOf(obj));
177 std::string className(PrettyTypeOf(ref));
reflection.cc 111 std::string actual_class_name(PrettyTypeOf(o));
293 PrettyTypeOf(o).c_str()).c_str());
297 PrettyTypeOf(o).c_str(),
scoped_thread_state_change.h 182 << entry_count << " (most recent was a " << PrettyTypeOf(obj) << ")\n"
utils.h 185 // Used to implement PrettyClass, PrettyField, PrettyMethod, and PrettyTypeOf,
212 std::string PrettyTypeOf(const mirror::Object* obj)
check_jni.cc 222 PrettyField(f).c_str(), PrettyTypeOf(obj).c_str());
266 PrettyField(f).c_str(), PrettyTypeOf(o).c_str());
360 PrettyMethod(m).c_str(), PrettyTypeOf(o).c_str());
467 msg += "INVALID NON-CLASS OBJECT OF TYPE:" + PrettyTypeOf(c);
655 JniAbortF(function_name_, "%s has wrong type: %s", what, PrettyTypeOf(obj).c_str());
689 JniAbortF(function_name_, "jarray argument has non-array type: %s", PrettyTypeOf(a).c_str());
812 std::string type(PrettyTypeOf(exception));
    [all...]
utils.cc 397 std::string PrettyTypeOf(const mirror::Object* obj) {
432 result += PrettyTypeOf(c->GetClassLoader());
    [all...]
thread.cc 840 os << " - locked <" << o << "> (a " << PrettyTypeOf(o) << ")\n";
    [all...]
jni_internal.cc 126 << PrettyTypeOf(argument) << " as argument " << (i + 1) << " to " << PrettyMethod(m);
344 std::string type(PrettyTypeOf(array));
789 << PrettyTypeOf(old_exception.get());
793 LOG(WARNING) << "JNI WARNING: " << PrettyTypeOf(soa.Self()->GetException(NULL))
    [all...]
runtime.cc 168 os << "Pending exception " << PrettyTypeOf(exception)
    [all...]
  /art/runtime/mirror/
throwable.cc 52 std::string result(PrettyTypeOf(this));
class-inl.h 35 DCHECK(!IsVariableSize()) << " class=" << PrettyTypeOf(this);
38 DCHECK_GE(result, sizeof(Object)) << " class=" << PrettyTypeOf(this);
class.cc 133 CHECK_GE(new_class_size, GetClassSize()) << " class=" << PrettyTypeOf(this);
  /art/runtime/gc/accounting/
mod_union_table.cc 154 LOG(INFO) << "Object " << reinterpret_cast<const void*>(obj) << "(" << PrettyTypeOf(obj) << ")"
156 << "(" << PrettyTypeOf(ref) << ") without being in mod-union table";
  /art/runtime/entrypoints/
entrypoint_utils.h 319 PrettyTypeOf(o).c_str(), PrettyMethod(m).c_str());
  /art/runtime/gc/
heap.cc     [all...]
  /art/runtime/gc/collector/
mark_sweep.cc     [all...]
  /art/runtime/interpreter/
interpreter.cc     [all...]

Completed in 423 milliseconds