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

  /art/runtime/
utils_test.cc 38 EXPECT_EQ("java.lang.Class[]", PrettyDescriptor("[Ljava/lang/Class;"));
39 EXPECT_EQ("java.lang.Class[][]", PrettyDescriptor("[[Ljava/lang/Class;"));
43 EXPECT_EQ("java.lang.String", PrettyDescriptor("Ljava.lang.String;"));
44 EXPECT_EQ("java.lang.String", PrettyDescriptor("Ljava/lang/String;"));
48 EXPECT_EQ("boolean", PrettyDescriptor(Primitive::kPrimBoolean));
49 EXPECT_EQ("byte", PrettyDescriptor(Primitive::kPrimByte));
50 EXPECT_EQ("char", PrettyDescriptor(Primitive::kPrimChar));
51 EXPECT_EQ("short", PrettyDescriptor(Primitive::kPrimShort));
52 EXPECT_EQ("int", PrettyDescriptor(Primitive::kPrimInt));
53 EXPECT_EQ("float", PrettyDescriptor(Primitive::kPrimFloat))
    [all...]
reflection-inl.h 93 PrettyDescriptor(srcType).c_str(),
94 PrettyDescriptor(dstType).c_str()).c_str());
98 PrettyDescriptor(srcType).c_str(),
99 PrettyDescriptor(dstType).c_str()).c_str());
common_throws.cc 40 os << " (declaration of '" << PrettyDescriptor(referrer)
115 PrettyDescriptor(element_class).c_str(),
116 PrettyDescriptor(array_class).c_str()).c_str());
124 PrettyDescriptor(src_type).c_str(),
125 PrettyDescriptor(dest_type).c_str()).c_str());
136 msg << PrettyDescriptor(c);
152 msg << "Illegal class access: '" << PrettyDescriptor(referrer) << "' attempting to access '"
153 << PrettyDescriptor(accessed) << "'";
161 msg << "Illegal class access ('" << PrettyDescriptor(referrer) << "' attempting to access '"
162 << PrettyDescriptor(accessed) << "') in attempt to invoke " << typ
    [all...]
utils.cc 228 std::string PrettyDescriptor(mirror::String* java_descriptor) {
232 return PrettyDescriptor(java_descriptor->ToModifiedUtf8().c_str());
235 std::string PrettyDescriptor(mirror::Class* klass) {
240 return PrettyDescriptor(klass->GetDescriptor(&temp));
243 std::string PrettyDescriptor(const char* descriptor) {
298 result += PrettyDescriptor(f->GetTypeDescriptor());
302 result += PrettyDescriptor(FieldHelper(hs.NewHandle(f)).GetDeclaringClassDescriptor());
318 result += PrettyDescriptor(dex_file.GetFieldDeclaringClassDescriptor(field_id));
329 return PrettyDescriptor(dex_file.GetTypeDescriptor(type_id));
349 result += PrettyDescriptor(argument_descriptor.c_str())
    [all...]
reflection.cc 218 PrettyDescriptor(found_descriptor).c_str()).c_str());
240 PrettyDescriptor(dst_class).c_str(),
609 std::string expected_class_name(PrettyDescriptor(c));
704 PrettyDescriptor(dst_class).c_str(),
710 PrettyDescriptor(dst_class).c_str()).c_str());
728 PrettyDescriptor(dst_class).c_str()).c_str());
732 PrettyDescriptor(dst_class).c_str()).c_str());
770 PrettyDescriptor(dst_class).c_str(),
771 PrettyDescriptor(o->GetClass()->GetDescriptor(&temp)).c_str()).c_str());
utils.h 320 std::string PrettyDescriptor(mirror::String* descriptor)
322 std::string PrettyDescriptor(const char* descriptor);
323 std::string PrettyDescriptor(mirror::Class* klass)
325 std::string PrettyDescriptor(Primitive::Type type);
class_linker.cc 106 PrettyDescriptor(c).c_str());
109 PrettyDescriptor(c).c_str());
    [all...]
jni_internal.cc 120 << PrettyDescriptor(c) << " in " << c->GetDexCache()->GetLocation()->ToModifiedUtf8()
    [all...]
thread.cc     [all...]
trace.cc 704 PrettyDescriptor(method->GetDeclaringClassDescriptor()).c_str(), method->GetName(),
  /art/runtime/native/
java_lang_reflect_Constructor.cc 47 PrettyDescriptor(c.Get()).c_str());
  /art/runtime/verifier/
reg_type.cc 417 result << "Unresolved Reference" << ": " << PrettyDescriptor(GetDescriptor().c_str());
424 << PrettyDescriptor(GetDescriptor().c_str())
432 << PrettyDescriptor(GetDescriptor().c_str());
438 result << "Reference" << ": " << PrettyDescriptor(GetClass());
444 result << "Precise Reference" << ": "<< PrettyDescriptor(GetClass());
450 result << "Uninitialized Reference" << ": " << PrettyDescriptor(GetClass());
457 result << "Uninitialized This Reference" << ": " << PrettyDescriptor(GetClass());
method_verifier.cc 124 failure_message = " that attempts to sub-class final class " + PrettyDescriptor(super);
130 *error = "Verifier rejected class " + PrettyDescriptor(klass) + failure_message;
198 *error += PrettyDescriptor(dex_file->GetClassDescriptor(*class_def));
242 *error += PrettyDescriptor(dex_file->GetClassDescriptor(*class_def));
    [all...]
  /art/runtime/entrypoints/
entrypoint_utils.cc 57 PrettyDescriptor(klass).c_str());
64 PrettyDescriptor(klass).c_str());
entrypoint_utils-inl.h 58 PrettyDescriptor(klass).c_str());
  /art/runtime/mirror/
object.cc 243 << " of type " << PrettyDescriptor(c) << " at offset " << field_offset;
array-inl.h 73 PrettyDescriptor(array_class).c_str(),
class.cc 135 CHECK_LT(new_status, kStatusResolved) << PrettyDescriptor(this);
object_test.cc 303 EXPECT_EQ(PrettyDescriptor(soa.Self()->GetException(NULL)->GetClass()),
  /art/runtime/interpreter/
interpreter_common.cc 686 PrettyDescriptor(componentClass).c_str());
691 PrettyDescriptor(componentClass).c_str());
    [all...]
  /art/oatdump/
oatdump.cc     [all...]
  /art/compiler/driver/
compiler_driver.cc     [all...]
  /art/runtime/hprof/
hprof.cc 632 return LookupStringId(PrettyDescriptor(c));
    [all...]
  /art/runtime/jdwp/
jdwp_event.cc     [all...]
  /art/compiler/
image_writer.cc 717 << " " << PrettyDescriptor(klass);
    [all...]

Completed in 79 milliseconds