Home
last modified time | relevance | path

Searched refs:PrettyDescriptor (Results 1 – 25 of 64) 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
486 std::string PrettyDescriptor(Primitive::Type type) { in PrettyDescriptor() function
487 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()
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()
64 result += PrettyDescriptor(GetDeclaringClass()->GetDescriptor(&temp)); in PrettyField()
Dreflection.cc222 PrettyDescriptor(found_descriptor).c_str()).c_str()); in ThrowIllegalPrimitiveArgumentException()
256 mirror::Class::PrettyDescriptor(dst_class).c_str(), in BuildArgArrayFromObjectArray()
502 << soa.Self()->GetException()->GetClass()->PrettyDescriptor(); in InvokeMethodImpl()
919 dst_class->PrettyDescriptor().c_str(), in UnboxPrimitive()
925 dst_class->PrettyDescriptor().c_str()).c_str()); in UnboxPrimitive()
942 dst_class->PrettyDescriptor().c_str()).c_str()); in UnboxPrimitive()
946 dst_class->PrettyDescriptor().c_str()).c_str()); in UnboxPrimitive()
983 dst_class->PrettyDescriptor().c_str(), in UnboxPrimitive()
984 PrettyDescriptor(o->GetClass()->GetDescriptor(&temp)).c_str()).c_str()); in UnboxPrimitive()
1055 std::string expected_class_name(mirror::Class::PrettyDescriptor(c)); in InvalidReceiverError()
Dvar_handles.cc93 callsite_type->PrettyDescriptor()); in VarHandleInvokeAccessor()
Ddebug_print.cc79 oss << loader_separator << loader->GetClass()->PrettyDescriptor() in DescribeLoaders()
/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()
175 << ", class: " << PrettyDescriptor(dex_file->GetClassDescriptor(class_def)); in VerifyClass()
Dreg_type.cc359 result << "Unresolved Reference: " << PrettyDescriptor(std::string(GetDescriptor()).c_str()); in Dump()
366 << PrettyDescriptor(std::string(GetDescriptor()).c_str()) in Dump()
374 << PrettyDescriptor(std::string(GetDescriptor()).c_str()); in Dump()
380 result << "Reference: " << mirror::Class::PrettyDescriptor(GetClass()); in Dump()
386 result << "Precise Reference: " << mirror::Class::PrettyDescriptor(GetClass()); in Dump()
392 result << "Uninitialized Reference: " << mirror::Class::PrettyDescriptor(GetClass()); in Dump()
399 result << "Uninitialized This Reference: " << mirror::Class::PrettyDescriptor(GetClass()); in Dump()
/art/compiler/optimizing/
Dgraph_checker.cc993 DataType::PrettyDescriptor(input->GetType()), in VisitPhi()
994 DataType::PrettyDescriptor(phi->GetType()))); in VisitPhi()
1001 DataType::PrettyDescriptor(phi->GetType()))); in VisitPhi()
1138 DataType::PrettyDescriptor(input->GetType()))); in HandleBooleanInput()
1179 DataType::PrettyDescriptor(op->GetType()))); in VisitCondition()
1187 DataType::PrettyDescriptor(lhs->GetType()), in VisitCondition()
1188 DataType::PrettyDescriptor(rhs->GetType()))); in VisitCondition()
1211 DataType::PrettyDescriptor(result_type), in VisitNeg()
1212 DataType::PrettyDescriptor(input_type))); in VisitNeg()
1244 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()
Djava_lang_VMClassLoader.cc104 c->PrettyDescriptor().c_str()); in VMClassLoader_findLoadedClass()
/art/runtime/mirror/
Dmethod_type.cc215 std::string MethodType::PrettyDescriptor() { in PrettyDescriptor() function in art::mirror::MethodType
222 ss << p_types->GetWithoutChecks(i)->PrettyDescriptor(); in PrettyDescriptor()
229 ss << GetRType()->PrettyDescriptor(); in PrettyDescriptor()
Dobject.cc273 << " of type " << c->PrettyDescriptor() << " at offset " << field_offset; in CheckFieldAssignmentImpl()
295 std::string result(PrettyDescriptor(klass->GetDescriptor(&temp))); in PrettyTypeOf()
297 result += "<" + PrettyDescriptor(AsClass()->GetDescriptor(&temp)) + ">"; in PrettyTypeOf()
Dmethod_type.h77 std::string PrettyDescriptor() REQUIRES_SHARED(Locks::mutator_lock_);
Darray-alloc-inl.h137 array_class->PrettyDescriptor().c_str(), in Alloc()
/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/test/667-jit-jni-stub/
Djit_jni_stub_test.cc45 CHECK(method != nullptr) << soa.Decode<mirror::Class>(klass)->PrettyDescriptor() << "." << name; in Java_Main_callThrough()

123