Home
last modified time | relevance | path

Searched refs:PrettyDescriptor (Results 1 – 25 of 62) sorted by relevance

123

/art/libdexfile/dex/
Ddescriptors_names_test.cc26 EXPECT_EQ("java.lang.Class[]", PrettyDescriptor("[Ljava/lang/Class;")); in TEST_F()
27 EXPECT_EQ("java.lang.Class[][]", PrettyDescriptor("[[Ljava/lang/Class;")); in TEST_F()
31 EXPECT_EQ("java.lang.String", PrettyDescriptor("Ljava.lang.String;")); in TEST_F()
32 EXPECT_EQ("java.lang.String", PrettyDescriptor("Ljava/lang/String;")); in TEST_F()
36 EXPECT_EQ("boolean", PrettyDescriptor(Primitive::kPrimBoolean)); in TEST_F()
37 EXPECT_EQ("byte", PrettyDescriptor(Primitive::kPrimByte)); in TEST_F()
38 EXPECT_EQ("char", PrettyDescriptor(Primitive::kPrimChar)); in TEST_F()
39 EXPECT_EQ("short", PrettyDescriptor(Primitive::kPrimShort)); in TEST_F()
40 EXPECT_EQ("int", PrettyDescriptor(Primitive::kPrimInt)); in TEST_F()
41 EXPECT_EQ("float", PrettyDescriptor(Primitive::kPrimFloat)); in TEST_F()
[all …]
Ddescriptors_names.h32 std::string PrettyDescriptor(const char* descriptor);
33 std::string PrettyDescriptor(Primitive::Type type);
Dprimitive.cc49 const char* Primitive::PrettyDescriptor(Primitive::Type type) { in PrettyDescriptor() function in art::Primitive
Ddescriptors_names.cc98 std::string PrettyDescriptor(const char* descriptor) { in PrettyDescriptor() function
484 std::string PrettyDescriptor(Primitive::Type type) { in PrettyDescriptor() function
485 return PrettyDescriptor(Primitive::Descriptor(type)); in PrettyDescriptor()
Dprimitive.h138 static const char* PrettyDescriptor(Type type);
/art/runtime/
Dreflection-inl.h109 PrettyDescriptor(srcType).c_str(), in ConvertPrimitiveValue()
110 PrettyDescriptor(dstType).c_str()).c_str()); in ConvertPrimitiveValue()
113 PrettyDescriptor(srcType).c_str(), in ConvertPrimitiveValue()
114 PrettyDescriptor(dstType).c_str()).c_str()); in ConvertPrimitiveValue()
Dclass_table.cc49 LOG(FATAL) << "Updating class found in frozen table " << klass->PrettyDescriptor(); in UpdateClass()
53 LOG(FATAL) << "Updating class not found " << klass->PrettyDescriptor(); in UpdateClass()
57 CHECK_NE(existing, klass) << klass->PrettyDescriptor(); in UpdateClass()
58 CHECK(!existing->IsResolved()) << klass->PrettyDescriptor(); in UpdateClass()
59 CHECK_EQ(klass->GetStatus(), ClassStatus::kResolving) << klass->PrettyDescriptor(); in UpdateClass()
60 CHECK(!klass->IsTemp()) << klass->PrettyDescriptor(); in UpdateClass()
Dcommon_throws.cc51 os << " (declaration of '" << referrer->PrettyDescriptor() in AddReferrerLocation()
132 mirror::Class::PrettyDescriptor(element_class).c_str(), in ThrowArrayStoreException()
133 mirror::Class::PrettyDescriptor(array_class).c_str()).c_str()); in ThrowArrayStoreException()
157 mirror::Class::PrettyDescriptor(src_type).c_str(), in ThrowClassCastException()
158 mirror::Class::PrettyDescriptor(dest_type).c_str()).c_str()); in ThrowClassCastException()
169 msg << mirror::Class::PrettyDescriptor(c); in ThrowClassCircularityError()
193 msg << "Illegal class access: '" << mirror::Class::PrettyDescriptor(referrer) in ThrowIllegalAccessErrorClass()
194 << "' attempting to access '" << mirror::Class::PrettyDescriptor(accessed) << "'"; in ThrowIllegalAccessErrorClass()
203 msg << "Illegal class access ('" << mirror::Class::PrettyDescriptor(referrer) in ThrowIllegalAccessErrorClassForMethodDispatch()
205 << mirror::Class::PrettyDescriptor(accessed) << "') in attempt to invoke " << type in ThrowIllegalAccessErrorClassForMethodDispatch()
[all …]
Dart_field.cc60 result += PrettyDescriptor(GetTypeDescriptor()); in PrettyField()
65 result += PrettyDescriptor(GetDeclaringClass()->GetDescriptor(&temp)); in PrettyField()
Dvar_handles.cc40 ThrowWrongMethodTypeException(mirror::MethodType::PrettyDescriptor(callee_type_), in operator ()()
41 mirror::MethodType::PrettyDescriptor(callsite_type_)); in operator ()()
129 mirror::MethodType::PrettyDescriptor(callsite_type)); in VarHandleInvokeAccessorImpl()
Dreflection.cc222 PrettyDescriptor(found_descriptor).c_str()).c_str()); in ThrowIllegalPrimitiveArgumentException()
256 mirror::Class::PrettyDescriptor(dst_class).c_str(), in BuildArgArrayFromObjectArray()
503 << soa.Self()->GetException()->GetClass()->PrettyDescriptor(); in InvokeMethodImpl()
920 dst_class->PrettyDescriptor().c_str(), in UnboxPrimitive()
926 dst_class->PrettyDescriptor().c_str()).c_str()); in UnboxPrimitive()
943 dst_class->PrettyDescriptor().c_str()).c_str()); in UnboxPrimitive()
947 dst_class->PrettyDescriptor().c_str()).c_str()); in UnboxPrimitive()
984 dst_class->PrettyDescriptor().c_str(), in UnboxPrimitive()
985 PrettyDescriptor(o->GetClass()->GetDescriptor(&temp)).c_str()).c_str()); in UnboxPrimitive()
1056 std::string expected_class_name(mirror::Class::PrettyDescriptor(c)); in InvalidReceiverError()
Ddebug_print.cc79 oss << loader_separator << loader->GetClass()->PrettyDescriptor() in DescribeLoaders()
/art/runtime/mirror/
Dmethod_type.cc257 ss << p_types.Get(i)->PrettyDescriptor(); in PrettyDescriptorImpl()
264 ss << r_type->PrettyDescriptor(); in PrettyDescriptorImpl()
269 std::string MethodType::PrettyDescriptor() { in PrettyDescriptor() function in art::mirror::MethodType
270 return PrettyDescriptor(this); in PrettyDescriptor()
273 std::string MethodType::PrettyDescriptor(ObjPtr<mirror::MethodType> method_type) { in PrettyDescriptor() function in art::mirror::MethodType
278 std::string MethodType::PrettyDescriptor(Handle<MethodType> method_type) { in PrettyDescriptor() function in art::mirror::MethodType
279 return PrettyDescriptor(method_type.Get()); in PrettyDescriptor()
282 std::string MethodType::PrettyDescriptor(RawMethodType method_type) { in PrettyDescriptor() function in art::mirror::MethodType
Dmethod_type.h104 std::string PrettyDescriptor() REQUIRES_SHARED(Locks::mutator_lock_);
164 static std::string PrettyDescriptor(ObjPtr<MethodType> method_type)
166 static std::string PrettyDescriptor(Handle<MethodType> method_type)
168 static std::string PrettyDescriptor(RawMethodType method_type)
Dobject.cc283 << " of type " << c->PrettyDescriptor() << " at offset " << field_offset; in CheckFieldAssignmentImpl()
305 std::string result(PrettyDescriptor(klass->GetDescriptor(&temp))); in PrettyTypeOf()
307 result += "<" + PrettyDescriptor(AsClass()->GetDescriptor(&temp)) + ">"; in PrettyTypeOf()
/art/test/626-const-class-linking/
Dclear_dex_cache_types.cc57 << i << " " << classes->Get(i)->GetClass()->PrettyDescriptor(); in Java_Main_nativeDumpClasses()
60 LOG(ERROR) << "Class #" << i << ": " << as_class->PrettyDescriptor() in Java_Main_nativeDumpClasses()
65 << (loader != nullptr ? loader->GetClass()->PrettyDescriptor() : "N/A"); in Java_Main_nativeDumpClasses()
/art/runtime/verifier/
Dclass_verifier.cc98 *error += PrettyDescriptor(dex_file->GetClassDescriptor(class_def)); in VerifyClass()
107 SCOPED_TRACE << "VerifyClass " << PrettyDescriptor(accessor.GetDescriptor()); in VerifyClass()
148 *error += PrettyDescriptor(dex_file->GetClassDescriptor(class_def)); in VerifyClass()
176 << ", class: " << PrettyDescriptor(dex_file->GetClassDescriptor(class_def)); in VerifyClass()
Dreg_type.cc165 result << "Unresolved Reference: " << PrettyDescriptor(std::string(GetDescriptor()).c_str()); in Dump()
172 << PrettyDescriptor(std::string(GetDescriptor()).c_str()) in Dump()
180 << PrettyDescriptor(std::string(GetDescriptor()).c_str()); in Dump()
186 result << "Reference: " << mirror::Class::PrettyDescriptor(GetClass()); in Dump()
192 result << "Precise Reference: " << mirror::Class::PrettyDescriptor(GetClass()); in Dump()
198 result << "Uninitialized Reference: " << mirror::Class::PrettyDescriptor(GetClass()); in Dump()
205 result << "Uninitialized This Reference: " << mirror::Class::PrettyDescriptor(GetClass()); in Dump()
/art/compiler/optimizing/
Dgraph_checker.cc1067 DataType::PrettyDescriptor(input->GetType()), in VisitPhi()
1068 DataType::PrettyDescriptor(phi->GetType()))); in VisitPhi()
1075 DataType::PrettyDescriptor(phi->GetType()))); in VisitPhi()
1211 DataType::PrettyDescriptor(input->GetType()))); in HandleBooleanInput()
1252 DataType::PrettyDescriptor(op->GetType()))); in VisitCondition()
1260 DataType::PrettyDescriptor(lhs->GetType()), in VisitCondition()
1261 DataType::PrettyDescriptor(rhs->GetType()))); in VisitCondition()
1284 DataType::PrettyDescriptor(result_type), in VisitNeg()
1285 DataType::PrettyDescriptor(input_type))); in VisitNeg()
1411 DataType::PrettyDescriptor(rhs_type))); in VisitBinaryOperation()
[all …]
Ddata_type.cc37 const char* DataType::PrettyDescriptor(Type type) { in PrettyDescriptor() function in art::DataType
Ddata_type_test.cc48 #define CHECK_NAME(type) EXPECT_STREQ(#type, DataType::PrettyDescriptor(DataType::Type::k##type)) in TEST()
/art/runtime/native/
Djava_lang_reflect_Constructor.cc71 c->PrettyDescriptor().c_str()); in Constructor_newInstance0()
82 if (c->PrettyDescriptor() == "dalvik.system.DexPathList$Element") { in Constructor_newInstance0()
/art/test/667-jit-jni-stub/
Djit_jni_stub_test.cc34 CHECK(method != nullptr) << soa.Decode<mirror::Class>(klass)->PrettyDescriptor() << "." << name; in Java_Main_callThrough()
/art/runtime/entrypoints/quick/
Dquick_throw_entrypoints.cc133 << " " << std::hex << dest_type->PrettyDescriptor() << ";" << dest_type->Depth() in artThrowClassCastException()
135 << " <: " << src_type->PrettyDescriptor() << ";" << src_type->Depth() in artThrowClassCastException()
/art/runtime/oat/
Daot_class_linker.cc72 CHECK(klass->IsThrowableClass()) << klass->PrettyDescriptor(); in InitializeClass()
353 self, "Can't store reference to %s %s", description, klass->PrettyDescriptor().c_str()); in TransactionWriteValueConstraint()
375 klass->PrettyDescriptor().c_str()); in TransactionAllocationConstraint()

123