HomeSort by relevance Sort by last modified time
    Searched full:object_array_class (Results 1 - 5 of 5) sorted by null

  /art/runtime/mirror/
object_array.h 28 static ObjectArray<T>* Alloc(Thread* self, Class* object_array_class, int32_t length)
object_array-inl.h 32 inline ObjectArray<T>* ObjectArray<T>::Alloc(Thread* self, Class* object_array_class, int32_t length) {
33 Array* array = Array::Alloc(self, object_array_class, length, sizeof(Object*));
object_test.cc 478 Class* Object_array_class = class_linker_->FindSystemClass("[Ljava/lang/Object;");
480 EXPECT_FALSE(java_lang_Class->InstanceOf(Object_array_class));
481 EXPECT_TRUE(Object_array_class->InstanceOf(java_lang_Class));
484 Object* array = ObjectArray<Object>::Alloc(soa.Self(), Object_array_class, 1);
  /art/compiler/
image_writer.cc 373 Class* object_array_class = class_linker->FindSystemClass("[Ljava/lang/Object;"); local
377 ObjectArray<Object>* dex_caches = ObjectArray<Object>::Alloc(self, object_array_class,
387 ObjectArray<Object>::Alloc(self, object_array_class,
  /art/runtime/
class_linker.cc 226 // java_lang_Object comes next so that object_array_class can be created.
234 SirtRef<mirror::Class> object_array_class(self, AllocClass(self, java_lang_Class.get(), sizeof(mirror::Class)));
235 object_array_class->SetComponentType(java_lang_Object.get());
252 class_roots_ = mirror::ObjectArray<mirror::Class>::Alloc(self, object_array_class.get(), kClassRootsMax);
257 SetClassRoot(kObjectArrayClass, object_array_class.get());
383 CHECK_EQ(object_array_class.get(), found_object_array_class);
399 kh.ChangeClass(object_array_class.get());
    [all...]

Completed in 442 milliseconds