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

1 2

  /art/runtime/
utils_test.cc 39 EXPECT_EQ("java.lang.Class[]", PrettyDescriptor("[Ljava/lang/Class;"));
40 EXPECT_EQ("java.lang.Class[][]", PrettyDescriptor("[[Ljava/lang/Class;"));
44 EXPECT_EQ("java.lang.String", PrettyDescriptor("Ljava.lang.String;"));
45 EXPECT_EQ("java.lang.String", PrettyDescriptor("Ljava/lang/String;"));
49 EXPECT_EQ("boolean", PrettyDescriptor(Primitive::kPrimBoolean));
50 EXPECT_EQ("byte", PrettyDescriptor(Primitive::kPrimByte));
51 EXPECT_EQ("char", PrettyDescriptor(Primitive::kPrimChar));
52 EXPECT_EQ("short", PrettyDescriptor(Primitive::kPrimShort));
53 EXPECT_EQ("int", PrettyDescriptor(Primitive::kPrimInt));
54 EXPECT_EQ("float", PrettyDescriptor(Primitive::kPrimFloat))
    [all...]
primitive.cc 34 const char* Primitive::PrettyDescriptor(Primitive::Type type) {
reflection-inl.h 93 PrettyDescriptor(srcType).c_str(),
94 PrettyDescriptor(dstType).c_str()).c_str());
97 PrettyDescriptor(srcType).c_str(),
98 PrettyDescriptor(dstType).c_str()).c_str());
common_throws.cc 43 os << " (declaration of '" << PrettyDescriptor(referrer)
115 PrettyDescriptor(element_class).c_str(),
116 PrettyDescriptor(array_class).c_str()).c_str());
124 PrettyDescriptor(src_type).c_str(),
125 PrettyDescriptor(dest_type).c_str()).c_str());
136 msg << PrettyDescriptor(c);
159 msg << "Illegal class access: '" << PrettyDescriptor(referrer) << "' attempting to access '"
160 << PrettyDescriptor(accessed) << "'";
168 msg << "Illegal class access ('" << PrettyDescriptor(referrer) << "' attempting to access '"
169 << PrettyDescriptor(accessed) << "') in attempt to invoke " << typ
    [all...]
utils.cc 210 std::string PrettyDescriptor(mirror::String* java_descriptor) {
214 return PrettyDescriptor(java_descriptor->ToModifiedUtf8().c_str());
217 std::string PrettyDescriptor(mirror::Class* klass) {
222 return PrettyDescriptor(klass->GetDescriptor(&temp));
225 std::string PrettyDescriptor(const char* descriptor) {
280 result += PrettyDescriptor(f->GetTypeDescriptor());
284 result += PrettyDescriptor(f->GetDeclaringClass()->GetDescriptor(&temp));
300 result += PrettyDescriptor(dex_file.GetFieldDeclaringClassDescriptor(field_id));
311 return PrettyDescriptor(dex_file.GetTypeDescriptor(type_id));
331 result += PrettyDescriptor(argument_descriptor.c_str())
    [all...]
utils.h 136 std::string PrettyDescriptor(mirror::String* descriptor)
138 std::string PrettyDescriptor(const char* descriptor);
139 std::string PrettyDescriptor(mirror::Class* klass)
141 std::string PrettyDescriptor(Primitive::Type type);
reflection.cc 211 PrettyDescriptor(found_descriptor).c_str()).c_str());
235 PrettyDescriptor(dst_class).c_str(),
755 PrettyDescriptor(dst_class).c_str(),
760 PrettyDescriptor(dst_class).c_str()).c_str());
776 PrettyDescriptor(dst_class).c_str()).c_str());
779 PrettyDescriptor(dst_class).c_str()).c_str());
817 PrettyDescriptor(dst_class).c_str(),
818 PrettyDescriptor(o->GetClass()->GetDescriptor(&temp)).c_str()).c_str());
    [all...]
primitive.h 139 static const char* PrettyDescriptor(Type type);
class_linker.cc 147 self->ThrowNewException(descriptor, PrettyDescriptor(c).c_str());
173 extra = PrettyDescriptor(verify_error->AsClass());
197 PrettyDescriptor(c).c_str());
    [all...]
jni_internal.cc 103 << PrettyDescriptor(c) << " in " << c->GetDexCache()->GetLocation()->ToModifiedUtf8()
    [all...]
check_jni.cc 622 "type %s: %p", PrettyDescriptor(c).c_str(), c);
652 AbortF("can't make objects of type %s: %p", PrettyDescriptor(c).c_str(), c);
666 PrettyDescriptor(a->GetClass()).c_str(), PrettyDescriptor(type).c_str(), array);
690 PrettyField(field).c_str(), PrettyDescriptor(field->GetTypeDescriptor()).c_str(),
691 PrettyDescriptor(type).c_str(), fid);
704 PrettyField(field).c_str(), PrettyDescriptor(c).c_str(), fid);
    [all...]
  /art/compiler/optimizing/
graph_checker.cc 715 Primitive::PrettyDescriptor(input->GetType()),
716 Primitive::PrettyDescriptor(phi->GetType())));
723 Primitive::PrettyDescriptor(phi->GetType())));
    [all...]
induction_var_analysis.cc     [all...]
  /art/runtime/native/
java_lang_VMClassLoader.cc 57 PrettyDescriptor(c).c_str());
java_lang_reflect_Constructor.cc 124 PrettyDescriptor(c.Get()).c_str());
135 if (PrettyDescriptor(c.Get()) == "dalvik.system.DexPathList$Element") {
  /art/runtime/verifier/
reg_type.cc 336 result << "Unresolved Reference" << ": " << PrettyDescriptor(GetDescriptor().as_string().c_str());
343 << PrettyDescriptor(GetDescriptor().as_string().c_str())
351 << PrettyDescriptor(GetDescriptor().as_string().c_str());
357 result << "Reference" << ": " << PrettyDescriptor(GetClass());
363 result << "Precise Reference" << ": "<< PrettyDescriptor(GetClass());
369 result << "Uninitialized Reference" << ": " << PrettyDescriptor(GetClass());
376 result << "Uninitialized This Reference" << ": " << PrettyDescriptor(GetClass());
method_verifier.cc 141 failure_message = " that attempts to sub-class final class " + PrettyDescriptor(super);
147 *error = "Verifier rejected class " + PrettyDescriptor(klass) + failure_message;
249 *error_string += PrettyDescriptor(dex_file->GetClassDescriptor(*class_def));
277 *error += PrettyDescriptor(dex_file->GetClassDescriptor(*class_def));
329 PrettyDescriptor(dex_file->GetClassDescriptor(*class_def)).c_str());
    [all...]
  /art/runtime/entrypoints/
entrypoint_utils.cc 63 PrettyDescriptor(klass).c_str());
68 PrettyDescriptor(klass).c_str());
  /art/runtime/mirror/
object.cc 243 << " of type " << PrettyDescriptor(c) << " at offset " << field_offset;
string-inl.h 179 PrettyDescriptor(string_class).c_str(),
array-inl.h 167 PrettyDescriptor(array_class).c_str(),
class.cc 91 LOG(ERROR) << "Setting " << PrettyDescriptor(h_this.Get()) << " to erroneous.";
118 CHECK_LT(new_status, kStatusResolved) << PrettyDescriptor(h_this.Get());
    [all...]
  /art/oatdump/
oatdump.cc     [all...]
  /art/runtime/interpreter/
unstarted_runtime.cc 127 method_name.c_str(), PrettyDescriptor(descriptor.c_str()).c_str());
300 PrettyDescriptor(klass).c_str());
558 PrettyDescriptor(src_array->GetClass()->GetComponentType()).c_str(),
559 PrettyDescriptor(dst_array->GetClass()->GetComponentType()).c_str());
624 PrettyDescriptor(src_array->GetClass()->GetComponentType()).c_str(),
625 PrettyDescriptor(dst_array->GetClass()->GetComponentType()).c_str());
664 PrettyDescriptor(src_type).c_str());
    [all...]
interpreter_common.cc     [all...]

Completed in 485 milliseconds

1 2