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

1 2 3

  /art/libdexfile/dex/
descriptors_names_test.cc 26 EXPECT_EQ("java.lang.Class[]", PrettyDescriptor("[Ljava/lang/Class;"));
27 EXPECT_EQ("java.lang.Class[][]", PrettyDescriptor("[[Ljava/lang/Class;"));
31 EXPECT_EQ("java.lang.String", PrettyDescriptor("Ljava.lang.String;"));
32 EXPECT_EQ("java.lang.String", PrettyDescriptor("Ljava/lang/String;"));
36 EXPECT_EQ("boolean", PrettyDescriptor(Primitive::kPrimBoolean));
37 EXPECT_EQ("byte", PrettyDescriptor(Primitive::kPrimByte));
38 EXPECT_EQ("char", PrettyDescriptor(Primitive::kPrimChar));
39 EXPECT_EQ("short", PrettyDescriptor(Primitive::kPrimShort));
40 EXPECT_EQ("int", PrettyDescriptor(Primitive::kPrimInt));
41 EXPECT_EQ("float", PrettyDescriptor(Primitive::kPrimFloat))
    [all...]
descriptors_names.h 32 std::string PrettyDescriptor(const char* descriptor);
33 std::string PrettyDescriptor(Primitive::Type type);
primitive.cc 49 const char* Primitive::PrettyDescriptor(Primitive::Type type) {
descriptors_names.cc 76 std::string PrettyDescriptor(const char* descriptor) {
408 std::string PrettyDescriptor(Primitive::Type type) {
409 return PrettyDescriptor(Primitive::Descriptor(type));
primitive.h 138 static const char* PrettyDescriptor(Type type);
  /art/compiler/optimizing/
data_type.cc 37 const char* DataType::PrettyDescriptor(Type type) {
graph_checker.cc     [all...]
data_type_test.cc 48 #define CHECK_NAME(type) EXPECT_STREQ(#type, DataType::PrettyDescriptor(DataType::Type::k##type))
  /art/runtime/
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 65 result += PrettyDescriptor(GetTypeDescriptor());
69 result += PrettyDescriptor(GetDeclaringClass()->GetDescriptor(&temp));
common_throws.cc 50 os << " (declaration of '" << referrer->PrettyDescriptor()
131 mirror::Class::PrettyDescriptor(element_class).c_str(),
132 mirror::Class::PrettyDescriptor(array_class).c_str()).c_str());
157 mirror::Class::PrettyDescriptor(src_type).c_str(),
158 mirror::Class::PrettyDescriptor(dest_type).c_str()).c_str());
169 msg << mirror::Class::PrettyDescriptor(c);
193 msg << "Illegal class access: '" << mirror::Class::PrettyDescriptor(referrer)
194 << "' attempting to access '" << mirror::Class::PrettyDescriptor(accessed) << "'";
203 msg << "Illegal class access ('" << mirror::Class::PrettyDescriptor(referrer)
205 << mirror::Class::PrettyDescriptor(accessed) << "') in attempt to invoke " << typ
    [all...]
var_handles.cc 93 callsite_type->PrettyDescriptor());
debug_print.cc 81 oss << loader_separator << loader->GetClass()->PrettyDescriptor()
170 LOG(ERROR) << " iface #" << i << ": " << iface->PrettyDescriptor();
182 LOG(ERROR) << " - " << klass->PrettyDescriptor();
reflection.cc 222 PrettyDescriptor(found_descriptor).c_str()).c_str());
256 mirror::Class::PrettyDescriptor(dst_class).c_str(),
856 dst_class->PrettyDescriptor().c_str(),
    [all...]
module_exclusion_test.cc 67 ASSERT_TRUE(resolved_type == nullptr) << resolved_type->PrettyDescriptor();
  /art/test/626-const-class-linking/
clear_dex_cache_types.cc 59 << i << " " << classes->Get(i)->GetClass()->PrettyDescriptor();
62 LOG(ERROR) << "Class #" << i << ": " << as_class->PrettyDescriptor()
67 << (loader != nullptr ? loader->GetClass()->PrettyDescriptor() : "N/A");
  /art/runtime/verifier/
class_verifier.cc 67 failure_message = " that attempts to sub-class final class " + super->PrettyDescriptor();
73 *error = "Verifier rejected class " + klass->PrettyDescriptor() + failure_message;
108 *error += PrettyDescriptor(dex_file->GetClassDescriptor(class_def));
114 SCOPED_TRACE << "VerifyClass " << PrettyDescriptor(accessor.GetDescriptor());
164 *error += PrettyDescriptor(dex_file->GetClassDescriptor(class_def));
181 PrettyDescriptor(accessor.GetDescriptor()).c_str());
reg_type.cc 359 result << "Unresolved Reference: " << PrettyDescriptor(std::string(GetDescriptor()).c_str());
366 << PrettyDescriptor(std::string(GetDescriptor()).c_str())
374 << PrettyDescriptor(std::string(GetDescriptor()).c_str());
380 result << "Reference: " << mirror::Class::PrettyDescriptor(GetClass());
386 result << "Precise Reference: " << mirror::Class::PrettyDescriptor(GetClass());
392 result << "Uninitialized Reference: " << mirror::Class::PrettyDescriptor(GetClass());
399 result << "Uninitialized This Reference: " << mirror::Class::PrettyDescriptor(GetClass());
    [all...]
  /art/test/667-jit-jni-stub/
jit_jni_stub_test.cc 45 CHECK(method != nullptr) << soa.Decode<mirror::Class>(klass)->PrettyDescriptor() << "." << name;
  /art/runtime/entrypoints/quick/
quick_throw_entrypoints.cc 133 << " " << std::hex << dest_type->PrettyDescriptor() << ";" << dest_type->Depth()
135 << " <: " << src_type->PrettyDescriptor() << ";" << src_type->Depth()
  /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 103 c->PrettyDescriptor().c_str());
  /art/runtime/mirror/
method_type.h 70 std::string PrettyDescriptor() REQUIRES_SHARED(Locks::mutator_lock_);
method_type.cc 155 std::string MethodType::PrettyDescriptor() {
162 ss << p_types->GetWithoutChecks(i)->PrettyDescriptor();
169 ss << GetRType()->PrettyDescriptor();
object.cc 274 << " of type " << c->PrettyDescriptor() << " at offset " << field_offset;
296 std::string result(PrettyDescriptor(klass->GetDescriptor(&temp)));
298 result += "<" + PrettyDescriptor(AsClass()->GetDescriptor(&temp)) + ">";

Completed in 1075 milliseconds

1 2 3