Lines Matching refs:ObjectArray
32 inline ObjectArray<T>* ObjectArray<T>::Alloc(Thread* self, Class* object_array_class, int32_t length) {
42 inline T* ObjectArray<T>::Get(int32_t i) const {
51 inline bool ObjectArray<T>::CheckAssignable(T* object) {
63 inline void ObjectArray<T>::Set(int32_t i, T* object) {
73 inline void ObjectArray<T>::SetWithoutChecks(int32_t i, T* object) {
80 inline void ObjectArray<T>::SetPtrWithoutChecks(int32_t i, T* object) {
87 inline T* ObjectArray<T>::GetWithoutChecks(int32_t i) const {
94 inline void ObjectArray<T>::Copy(const ObjectArray<T>* src, int src_pos,
95 ObjectArray<T>* dst, int dst_pos,
136 inline ObjectArray<T>* ObjectArray<T>::CopyOf(Thread* self, int32_t new_length) {
137 ObjectArray<T>* new_array = Alloc(self, GetClass(), new_length);