HomeSort by relevance Sort by last modified time
    Searched refs:PrettyDescriptor (Results 1 - 25 of 51) 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) {
422 std::string PrettyDescriptor(Primitive::Type type) {
423 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 741 DataType::PrettyDescriptor(input->GetType()),
742 DataType::PrettyDescriptor(phi->GetType())));
749 DataType::PrettyDescriptor(phi->GetType())));
    [all...]
data_type_test.cc 48 #define CHECK_NAME(type) EXPECT_STREQ(#type, DataType::PrettyDescriptor(DataType::Type::k##type))
data_type.h 213 static const char* PrettyDescriptor(Type type);
  /art/runtime/
reflection-inl.h 110 PrettyDescriptor(srcType).c_str(),
111 PrettyDescriptor(dstType).c_str()).c_str());
114 PrettyDescriptor(srcType).c_str(),
115 PrettyDescriptor(dstType).c_str()).c_str());
art_field.cc 72 result += PrettyDescriptor(GetTypeDescriptor());
76 result += PrettyDescriptor(GetDeclaringClass()->GetDescriptor(&temp));
common_throws.cc 52 os << " (declaration of '" << referrer->PrettyDescriptor()
133 mirror::Class::PrettyDescriptor(element_class).c_str(),
134 mirror::Class::PrettyDescriptor(array_class).c_str()).c_str());
159 mirror::Class::PrettyDescriptor(src_type).c_str(),
160 mirror::Class::PrettyDescriptor(dest_type).c_str()).c_str());
171 msg << mirror::Class::PrettyDescriptor(c);
195 msg << "Illegal class access: '" << mirror::Class::PrettyDescriptor(referrer)
196 << "' attempting to access '" << mirror::Class::PrettyDescriptor(accessed) << "'";
205 msg << "Illegal class access ('" << mirror::Class::PrettyDescriptor(referrer)
207 << mirror::Class::PrettyDescriptor(accessed) << "') in attempt to invoke " << typ
    [all...]
debug_print.cc 81 oss << loader_separator << loader->GetClass()->PrettyDescriptor()
170 LOG(ERROR) << " iface #" << i << ": " << iface->PrettyDescriptor();
182 LOG(ERROR) << " - " << klass->PrettyDescriptor();
reflection.cc 220 PrettyDescriptor(found_descriptor).c_str()).c_str());
254 mirror::Class::PrettyDescriptor(dst_class).c_str(),
786 dst_class->PrettyDescriptor().c_str(),
792 dst_class->PrettyDescriptor().c_str()).c_str());
809 dst_class->PrettyDescriptor().c_str()).c_str());
813 dst_class->PrettyDescriptor().c_str()).c_str());
    [all...]
class_linker-inl.h 170 klass->PrettyDescriptor().c_str());
189 klass->PrettyDescriptor().c_str());
class_linker.cc 193 self->ThrowNewException(descriptor, c->PrettyDescriptor().c_str());
219 extra = mirror::Class::PrettyDescriptor(verify_error->AsClass());
247 c->PrettyDescriptor().c_str());
    [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/runtime/mirror/
method_type.cc 121 std::string MethodType::PrettyDescriptor() REQUIRES_SHARED(Locks::mutator_lock_) {
128 ss << p_types->GetWithoutChecks(i)->PrettyDescriptor();
135 ss << GetRType()->PrettyDescriptor();
method_type.h 77 std::string PrettyDescriptor() REQUIRES_SHARED(Locks::mutator_lock_);
object.cc 271 << " of type " << c->PrettyDescriptor() << " at offset " << field_offset;
296 std::string result(PrettyDescriptor(klass->GetDescriptor(&temp)));
298 result += "<" + PrettyDescriptor(AsClass()->GetDescriptor(&temp)) + ">";
class.cc 180 LOG(ERROR) << "Setting " << h_this->PrettyDescriptor() << " to erroneous.";
232 CHECK_LT(new_status, ClassStatus::kResolved) << h_this->PrettyDescriptor();
    [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/native/
java_lang_reflect_Constructor.cc 72 c->PrettyDescriptor().c_str());
83 if (c->PrettyDescriptor() == "dalvik.system.DexPathList$Element") {
java_lang_VMClassLoader.cc 97 c->PrettyDescriptor().c_str());
  /art/runtime/verifier/
reg_type.cc 344 result << "Unresolved Reference" << ": " << PrettyDescriptor(GetDescriptor().as_string().c_str());
351 << PrettyDescriptor(GetDescriptor().as_string().c_str())
359 << PrettyDescriptor(GetDescriptor().as_string().c_str());
365 result << "Reference" << ": " << mirror::Class::PrettyDescriptor(GetClass());
371 result << "Precise Reference" << ": "<< mirror::Class::PrettyDescriptor(GetClass());
377 result << "Uninitialized Reference" << ": " << mirror::Class::PrettyDescriptor(GetClass());
384 result << "Uninitialized This Reference" << ": " << mirror::Class::PrettyDescriptor(GetClass());
    [all...]

Completed in 430 milliseconds

1 2 3