/art/runtime/mirror/ |
D | object_test.cc | 134 class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/ArrayIndexOutOfBoundsException;")); in TEST_F() 149 EXPECT_OBJ_PTR_EQ(class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Cloneable;"), in TEST_F() 151 EXPECT_OBJ_PTR_EQ(class_linker_->FindSystemClass(soa.Self(), "Ljava/io/Serializable;"), in TEST_F() 158 MutableHandle<Class> c = hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "[I")); in TEST_F() 165 c.Assign(class_linker_->FindSystemClass(soa.Self(), "[Ljava/lang/Object;")); in TEST_F() 170 c.Assign(class_linker_->FindSystemClass(soa.Self(), "[[Ljava/lang/Object;")); in TEST_F() 179 MutableHandle<Class> c = hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "[B")); in TEST_F() 187 c.Assign(class_linker_->FindSystemClass(soa.Self(), "[I")); in TEST_F() 193 c.Assign(class_linker_->FindSystemClass(soa.Self(), "[Ljava/lang/Object;")); in TEST_F() 199 c.Assign(class_linker_->FindSystemClass(soa.Self(), "[[Ljava/lang/Object;")); in TEST_F() [all …]
|
D | var_handle_test.cc | 120 class_linker->FindSystemClass(self, "Ljava/nio/ByteBuffer;")); in CreateByteBufferViewVarHandle()
|
/art/runtime/ |
D | method_handles_test.cc | 185 Handle<mirror::Class> to = hs.NewHandle(cl->FindSystemClass(soa.Self(), "Ljava/lang/Number;")); in TEST_F() 201 Handle<mirror::Class> to = hs.NewHandle(cl->FindSystemClass(soa.Self(), "Ljava/lang/Integer;")); in TEST_F() 221 Handle<mirror::Class> to = hs.NewHandle(cl->FindSystemClass(soa.Self(), "Ljava/lang/Integer;")); in TEST_F() 236 Handle<mirror::Class> to = hs.NewHandle(cl->FindSystemClass(soa.Self(), "Ljava/lang/Number;")); in TEST_F() 251 Handle<mirror::Class> to = hs.NewHandle(cl->FindSystemClass(soa.Self(), "Ljava/lang/Runtime;")); in TEST_F() 265 Handle<mirror::Class> to = hs.NewHandle(cl->FindSystemClass(soa.Self(), "Ljava/lang/Long;")); in TEST_F() 279 Handle<mirror::Class> to = hs.NewHandle(cl->FindSystemClass(soa.Self(), "Ljava/lang/Byte;")); in TEST_F() 297 Handle<mirror::Class> from = hs.NewHandle(cl->FindSystemClass(soa.Self(), "Ljava/lang/Integer;")); in TEST_F() 312 Handle<mirror::Class> from = hs.NewHandle(cl->FindSystemClass(soa.Self(), "Ljava/lang/Integer;")); in TEST_F() 325 Handle<mirror::Class> from = hs.NewHandle(cl->FindSystemClass(soa.Self(), "Ljava/lang/Integer;")); in TEST_F() [all …]
|
D | handle_scope_test.cc | 54 ObjPtr<mirror::Class> c = class_linker->FindSystemClass(soa.Self(), "Ljava/lang/Object;"); in TEST_F() 97 hs.NewHandle(class_linker->FindSystemClass(soa.Self(), "Ljava/lang/Object;")); in TEST_F()
|
D | class_linker_test.cc | 68 EXPECT_TRUE(class_linker_->FindSystemClass(self, descriptor.c_str()) == nullptr); in AssertNonExistentClass() 74 class_linker_->FindSystemClass(self, "Ljava/lang/NoClassDefFoundError;"); in AssertNonExistentClass() 81 AssertPrimitiveClass(descriptor, class_linker_->FindSystemClass(self, descriptor.c_str())); in AssertPrimitiveClass() 206 EXPECT_OBJ_PTR_EQ(class_linker_->FindSystemClass(self, "Ljava/lang/Object;"), in AssertArrayClass() 245 class_linker_->FindSystemClass(self, "Ljava/lang/Object;"); in AssertArrayClass() 416 hs.NewHandle(class_linker_->FindSystemClass(self, descriptor.c_str()))); in AssertDexFileClass() 480 Runtime::Current()->GetClassLinker()->FindSystemClass(self, class_descriptor.c_str()); in Check() 927 class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;")); in TEST_F() 1081 class_linker_->FindSystemClass(soa.Self(), "[Ljava/lang/String;"); in TEST_F() 1098 EXPECT_OBJ_PTR_EQ(class_linker_->FindSystemClass(soa.Self(), "[J"), long_array->GetClass()); in TEST_F() [all …]
|
D | runtime_intrinsics.cc | 40 ObjPtr<mirror::Class> cls = class_linker->FindSystemClass(self, class_name); in FindIntrinsicMethod()
|
D | transaction_test.cc | 50 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), in testTransactionAbort() 56 h_klass.Assign(class_linker_->FindSystemClass(soa.Self(), in testTransactionAbort() 101 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;"))); in TEST_F() 118 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;"))); in TEST_F() 145 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "[Ljava/lang/Object;"))); in TEST_F() 232 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;"))); in TEST_F() 332 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;"))); in TEST_F() 455 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;"))); in TEST_F()
|
D | proxy_test.cc | 114 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "[Ljava/lang/Class;"))); in TEST_F() 117 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "[[Ljava/lang/Class;"))); in TEST_F()
|
D | indirect_reference_table_test.cc | 66 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;")); in TEST_F() 285 class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;")); in TEST_F() 495 class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;")); in TEST_F()
|
D | class_linker.cc | 720 ObjPtr<mirror::Class> c2 = FindSystemClass(self, descriptor); in CheckSystemClass() 966 auto java_lang_Cloneable = hs.NewHandle(FindSystemClass(self, "Ljava/lang/Cloneable;")); in InitWithoutImage() 968 auto java_io_Serializable = hs.NewHandle(FindSystemClass(self, "Ljava/io/Serializable;")); in InitWithoutImage() 986 FindSystemClass(self, GetClassRootDescriptor(ClassRoot::kJavaLangStringArrayClass))); in InitWithoutImage() 992 FindSystemClass(self, "Ljava/lang/reflect/Proxy;")); in InitWithoutImage() 995 ObjPtr<mirror::Class> class_root = FindSystemClass(self, "Ljava/lang/reflect/Field;"); in InitWithoutImage() 1000 class_root = FindSystemClass(self, "[Ljava/lang/reflect/Field;"); in InitWithoutImage() 1005 class_root = FindSystemClass(self, "Ljava/lang/reflect/Constructor;"); in InitWithoutImage() 1008 class_root = FindSystemClass(self, "[Ljava/lang/reflect/Constructor;"); in InitWithoutImage() 1013 class_root = FindSystemClass(self, "Ljava/lang/reflect/Method;"); in InitWithoutImage() [all …]
|
D | common_runtime_test.cc | 338 class_linker->FindSystemClass(self, "Ljava/lang/Object;"))); in FillHeap() 341 class_linker->FindSystemClass(self, "[Ljava/lang/Object;"))); in FillHeap()
|
D | reflection_test.cc | 103 MakeInterpreted(class_linker_->FindSystemClass(self, "Ljava/lang/Class;")); in ReflectionTestMakeInterpreted() 104 MakeInterpreted(class_linker_->FindSystemClass(self, "Ljava/lang/Object;")); in ReflectionTestMakeInterpreted()
|
D | oat_file_assistant_test.cc | 1271 hs.NewHandle(linker->FindSystemClass(soa.Self(), "Ldalvik/system/DexFile;"))); in TEST_F()
|
D | class_linker.h | 199 ObjPtr<mirror::Class> FindSystemClass(Thread* self, const char* descriptor) in FindSystemClass() function
|
D | runtime.cc | 1168 ObjPtr<mirror::Class> klass = class_linker->FindSystemClass(self, exception_class_descriptor); in CreatePreAllocatedException()
|
/art/runtime/verifier/ |
D | method_verifier_test.cc | 41 ObjPtr<mirror::Class> klass = class_linker_->FindSystemClass(self, descriptor.c_str()); in VerifyClass()
|
D | reg_type_cache.cc | 364 klass = class_linker->FindSystemClass(Thread::Current(), type.descriptor); in CreatePrimitiveAndSmallConstantTypes()
|
/art/runtime/gc/ |
D | heap_test.cc | 71 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "[Ljava/lang/Object;"))); in TEST_F()
|
/art/compiler/driver/ |
D | compiler_options.cc | 183 bool is_system_class = class_linker->FindSystemClass(self, descriptor) != nullptr; in IsMethodVerifiedWithoutFailures()
|
/art/dex2oat/linker/ |
D | image_write_read_test.cc | 124 ObjPtr<mirror::Class> klass = class_linker_->FindSystemClass(soa.Self(), descriptor); in TestWriteRead()
|
D | image_test.h | 388 class_linker->FindSystemClass(Thread::Current(), image_class.c_str()); in Compile()
|
/art/runtime/arch/ |
D | stub_test.cc | 698 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;"))); in TEST_F() 700 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/String;"))); in TEST_F() 702 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "Ljava/util/List;"))); in TEST_F() 704 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Cloneable;"))); in TEST_F() 706 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "Ljava/util/ArrayList;"))); in TEST_F() 798 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;"))); in TEST_F() 847 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "[Ljava/lang/Object;"))); in TEST_F() 915 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "[Ljava/lang/Object;"))); in TEST_F() 1933 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;"))); in TEST_F()
|
/art/runtime/jni/ |
D | jni_internal_test.cc | 2267 MakeInterpreted(class_linker_->FindSystemClass(self, "Ljava/lang/Class;")); in TEST_F() 2268 MakeInterpreted(class_linker_->FindSystemClass(self, "Ljava/lang/Object;")); in TEST_F() 2269 MakeInterpreted(class_linker_->FindSystemClass(self, "Ljava/nio/DirectByteBuffer;")); in TEST_F() 2270 MakeInterpreted(class_linker_->FindSystemClass(self, "Ljava/nio/Bits;")); in TEST_F() 2271 MakeInterpreted(class_linker_->FindSystemClass(self, "Ljava/nio/MappedByteBuffer;")); in TEST_F() 2272 MakeInterpreted(class_linker_->FindSystemClass(self, "Ljava/nio/ByteBuffer;")); in TEST_F() 2273 MakeInterpreted(class_linker_->FindSystemClass(self, "Ljava/nio/Buffer;")); in TEST_F()
|
/art/runtime/gc/space/ |
D | space_test.h | 59 Runtime::Current()->GetClassLinker()->FindSystemClass(self, "[B"); in GetByteArrayClass()
|
/art/dex2oat/driver/ |
D | compiler_driver.cc | 1124 hs.NewHandle(class_linker->FindSystemClass(self, descriptor.c_str()))); in LoadImageClasses() 1140 hs.NewHandle(class_linker->FindSystemClass(self, "Ljava/lang/Throwable;"))); in LoadImageClasses()
|