Home | History | Annotate | Download | only in runtime

Lines Matching refs:PrettyDescriptor

210 std::string PrettyDescriptor(mirror::String* java_descriptor) {
214 return PrettyDescriptor(java_descriptor->ToModifiedUtf8().c_str());
217 std::string PrettyDescriptor(mirror::Class* klass) {
222 return PrettyDescriptor(klass->GetDescriptor(&temp));
225 std::string PrettyDescriptor(const char* descriptor) {
280 result += PrettyDescriptor(f->GetTypeDescriptor());
284 result += PrettyDescriptor(f->GetDeclaringClass()->GetDescriptor(&temp));
300 result += PrettyDescriptor(dex_file.GetFieldDeclaringClassDescriptor(field_id));
311 return PrettyDescriptor(dex_file.GetTypeDescriptor(type_id));
331 result += PrettyDescriptor(argument_descriptor.c_str());
348 return PrettyDescriptor(return_type);
358 std::string result(PrettyDescriptor(m->GetDeclaringClassDescriptor()));
381 std::string result(PrettyDescriptor(dex_file.GetMethodDeclaringClassDescriptor(method_id)));
404 std::string result(PrettyDescriptor(obj->GetClass()->GetDescriptor(&temp)));
406 result += "<" + PrettyDescriptor(obj->AsClass()->GetDescriptor(&temp)) + ">";
417 result += PrettyDescriptor(c);
428 result += PrettyDescriptor(c);
1470 std::string PrettyDescriptor(Primitive::Type type) {
1471 return PrettyDescriptor(Primitive::Descriptor(type));