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

1 2

  /art/runtime/
utils_test.cc 43 EXPECT_EQ("java.lang.Class[]", PrettyDescriptor("[Ljava/lang/Class;"));
44 EXPECT_EQ("java.lang.Class[][]", PrettyDescriptor("[[Ljava/lang/Class;"));
48 EXPECT_EQ("java.lang.String", PrettyDescriptor("Ljava.lang.String;"));
49 EXPECT_EQ("java.lang.String", PrettyDescriptor("Ljava/lang/String;"));
53 EXPECT_EQ("boolean", PrettyDescriptor(Primitive::kPrimBoolean));
54 EXPECT_EQ("byte", PrettyDescriptor(Primitive::kPrimByte));
55 EXPECT_EQ("char", PrettyDescriptor(Primitive::kPrimChar));
56 EXPECT_EQ("short", PrettyDescriptor(Primitive::kPrimShort));
57 EXPECT_EQ("int", PrettyDescriptor(Primitive::kPrimInt));
58 EXPECT_EQ("float", PrettyDescriptor(Primitive::kPrimFloat))
    [all...]
reflection-inl.h 109 PrettyDescriptor(srcType).c_str(),
110 PrettyDescriptor(dstType).c_str()).c_str());
113 PrettyDescriptor(srcType).c_str(),
114 PrettyDescriptor(dstType).c_str()).c_str());
art_field.cc 71 result += PrettyDescriptor(GetTypeDescriptor());
75 result += PrettyDescriptor(GetDeclaringClass()->GetDescriptor(&temp));
primitive.cc 49 const char* Primitive::PrettyDescriptor(Primitive::Type type) {
common_throws.cc 49 os << " (declaration of '" << referrer->PrettyDescriptor()
125 mirror::Class::PrettyDescriptor(element_class).c_str(),
126 mirror::Class::PrettyDescriptor(array_class).c_str()).c_str());
150 mirror::Class::PrettyDescriptor(src_type).c_str(),
151 mirror::Class::PrettyDescriptor(dest_type).c_str()).c_str());
162 msg << mirror::Class::PrettyDescriptor(c);
186 msg << "Illegal class access: '" << mirror::Class::PrettyDescriptor(referrer)
187 << "' attempting to access '" << mirror::Class::PrettyDescriptor(accessed) << "'";
196 msg << "Illegal class access ('" << mirror::Class::PrettyDescriptor(referrer)
198 << mirror::Class::PrettyDescriptor(accessed) << "') in attempt to invoke " << typ
    [all...]
reflection.cc 217 PrettyDescriptor(found_descriptor).c_str()).c_str());
252 mirror::Class::PrettyDescriptor(dst_class).c_str(),
782 dst_class->PrettyDescriptor().c_str(),
788 dst_class->PrettyDescriptor().c_str()).c_str());
805 dst_class->PrettyDescriptor().c_str()).c_str());
809 dst_class->PrettyDescriptor().c_str()).c_str());
847 dst_class->PrettyDescriptor().c_str()
    [all...]
utils.cc 150 std::string PrettyDescriptor(const char* descriptor) {
216 result += PrettyDescriptor(argument_descriptor.c_str());
233 return PrettyDescriptor(return_type);
888 std::string PrettyDescriptor(Primitive::Type type) {
889 return PrettyDescriptor(Primitive::Descriptor(type));
primitive.h 139 static const char* PrettyDescriptor(Type type);
utils.h 84 std::string PrettyDescriptor(const char* descriptor);
85 std::string PrettyDescriptor(Primitive::Type type);
class_linker-inl.h 109 klass->PrettyDescriptor().c_str());
128 klass->PrettyDescriptor().c_str());
class_linker.cc 184 self->ThrowNewException(descriptor, c->PrettyDescriptor().c_str());
210 extra = mirror::Class::PrettyDescriptor(verify_error->AsClass());
238 c->PrettyDescriptor().c_str());
    [all...]
jni_internal.cc 205 << "Failed to register native method in " << c->PrettyDescriptor()
    [all...]
  /art/test/626-const-class-linking/
clear_dex_cache_types.cc 57 << i << " " << classes->Get(i)->GetClass()->PrettyDescriptor();
60 LOG(ERROR) << "Class #" << i << ": " << as_class->PrettyDescriptor()
65 << (loader != nullptr ? loader->GetClass()->PrettyDescriptor() : "N/A");
  /art/compiler/optimizing/
graph_checker.cc 729 Primitive::PrettyDescriptor(input->GetType()),
730 Primitive::PrettyDescriptor(phi->GetType())));
737 Primitive::PrettyDescriptor(phi->GetType())));
    [all...]
induction_var_analysis.cc     [all...]
graph_visualizer.cc 397 StartAttributeStream("class_name") << PrettyDescriptor(descriptor);
650 << mirror::Class::PrettyDescriptor(info.GetTypeHandle().Get());
    [all...]
  /art/runtime/mirror/
method_type.cc 104 std::string MethodType::PrettyDescriptor() REQUIRES_SHARED(Locks::mutator_lock_) {
111 ss << p_types->GetWithoutChecks(i)->PrettyDescriptor();
118 ss << GetRType()->PrettyDescriptor();
method_type.h 69 std::string PrettyDescriptor() REQUIRES_SHARED(Locks::mutator_lock_);
object.cc 268 << " of type " << c->PrettyDescriptor() << " at offset " << field_offset;
293 std::string result(PrettyDescriptor(klass->GetDescriptor(&temp)));
295 result += "<" + PrettyDescriptor(AsClass()->GetDescriptor(&temp)) + ">";
class.cc 136 LOG(ERROR) << "Setting " << h_this->PrettyDescriptor() << " to erroneous.";
180 CHECK_LT(new_status, kStatusResolved) << h_this->PrettyDescriptor();
    [all...]
string-inl.h 231 Class::PrettyDescriptor(string_class).c_str(),
  /art/runtime/native/
java_lang_reflect_Constructor.cc 72 c->PrettyDescriptor().c_str());
83 if (c->PrettyDescriptor() == "dalvik.system.DexPathList$Element") {
java_lang_VMClassLoader.cc 95 c->PrettyDescriptor().c_str());
  /art/runtime/verifier/
reg_type.cc 342 result << "Unresolved Reference" << ": " << PrettyDescriptor(GetDescriptor().as_string().c_str());
349 << PrettyDescriptor(GetDescriptor().as_string().c_str())
357 << PrettyDescriptor(GetDescriptor().as_string().c_str());
363 result << "Reference" << ": " << mirror::Class::PrettyDescriptor(GetClass());
369 result << "Precise Reference" << ": "<< mirror::Class::PrettyDescriptor(GetClass());
375 result << "Uninitialized Reference" << ": " << mirror::Class::PrettyDescriptor(GetClass());
382 result << "Uninitialized This Reference" << ": " << mirror::Class::PrettyDescriptor(GetClass());
  /art/runtime/interpreter/
unstarted_runtime.cc 136 PrettyDescriptor(descriptor.c_str()).c_str());
314 klass->PrettyDescriptor().c_str());
738 mirror::Class::PrettyDescriptor(
740 mirror::Class::PrettyDescriptor(
806 mirror::Class::PrettyDescriptor(
808 mirror::Class::PrettyDescriptor(
    [all...]

Completed in 663 milliseconds

1 2