Home | History | Annotate | Download | only in runtime

Lines Matching refs:ObjectArray

97 inline mirror::ObjectArray<T>* ClassLinker::AllocObjectArray(Thread* self, size_t length) {
98 return mirror::ObjectArray<T>::Alloc(self, GetClassRoot(kObjectArrayClass), length);
101 inline mirror::ObjectArray<mirror::Class>* ClassLinker::AllocClassArray(Thread* self,
103 return mirror::ObjectArray<mirror::Class>::Alloc(self, GetClassRoot(kClassArrayClass), length);
106 inline mirror::ObjectArray<mirror::String>* ClassLinker::AllocStringArray(Thread* self,
108 return mirror::ObjectArray<mirror::String>::Alloc(self, GetClassRoot(kJavaLangStringArrayClass),
112 inline mirror::ObjectArray<mirror::ArtMethod>* ClassLinker::AllocArtMethodArray(Thread* self,
114 return mirror::ObjectArray<mirror::ArtMethod>::Alloc(self,
123 inline mirror::ObjectArray<mirror::ArtField>* ClassLinker::AllocArtFieldArray(Thread* self,
125 return mirror::ObjectArray<mirror::ArtField>::Alloc(self,