Home | History | Annotate | Download | only in mirror

Lines Matching refs:ObjectArray

57 inline ObjectArray<ArtMethod>* Class::GetDirectMethods() const {
59 return GetFieldObject<ObjectArray<ArtMethod>*>(
63 inline void Class::SetDirectMethods(ObjectArray<ArtMethod>* new_direct_methods)
65 DCHECK(NULL == GetFieldObject<ObjectArray<ArtMethod>*>(
79 ObjectArray<ArtMethod>* direct_methods =
80 GetFieldObject<ObjectArray<ArtMethod>*>(
90 inline ObjectArray<ArtMethod>* Class::GetVirtualMethods() const {
92 return GetFieldObject<ObjectArray<ArtMethod>*>(
96 inline void Class::SetVirtualMethods(ObjectArray<ArtMethod>* new_virtual_methods) {
122 ObjectArray<ArtMethod>* virtual_methods =
123 GetFieldObject<ObjectArray<ArtMethod>*>(
128 inline ObjectArray<ArtMethod>* Class::GetVTable() const {
130 return GetFieldObject<ObjectArray<ArtMethod>*>(OFFSET_OF_OBJECT_MEMBER(Class, vtable_), false);
133 inline ObjectArray<ArtMethod>* Class::GetVTableDuringLinking() const {
135 return GetFieldObject<ObjectArray<ArtMethod>*>(OFFSET_OF_OBJECT_MEMBER(Class, vtable_), false);
138 inline void Class::SetVTable(ObjectArray<ArtMethod>* new_vtable)
266 inline ObjectArray<ArtField>* Class::GetIFields() const {
268 return GetFieldObject<ObjectArray<ArtField>*>(OFFSET_OF_OBJECT_MEMBER(Class, ifields_), false);
271 inline void Class::SetIFields(ObjectArray<ArtField>* new_ifields)
273 DCHECK(NULL == GetFieldObject<ObjectArray<ArtField>*>(
278 inline ObjectArray<ArtField>* Class::GetSFields() const {
280 return GetFieldObject<ObjectArray<ArtField>*>(OFFSET_OF_OBJECT_MEMBER(Class, sfields_), false);
283 inline void Class::SetSFields(ObjectArray<ArtField>* new_sfields)
285 DCHECK(NULL == GetFieldObject<ObjectArray<ArtField>*>(
301 ObjectArray<ArtField>* sfields= GetFieldObject<ObjectArray<ArtField>*>(
318 ObjectArray<ArtField>* ifields= GetFieldObject<ObjectArray<ArtField>*>(