Lines Matching refs:object
22 #include "object.h"
31 class MANAGED ArtField : public Object {
63 // Offset to field within an Object
74 // field access, null object for static fields
75 bool GetBoolean(const Object* object) const
77 void SetBoolean(Object* object, bool z) const
79 int8_t GetByte(const Object* object) const
81 void SetByte(Object* object, int8_t b) const
83 uint16_t GetChar(const Object* object) const
85 void SetChar(Object* object, uint16_t c) const
87 int16_t GetShort(const Object* object) const
89 void SetShort(Object* object, int16_t s) const
91 int32_t GetInt(const Object* object) const
93 void SetInt(Object* object, int32_t i) const
95 int64_t GetLong(const Object* object) const
97 void SetLong(Object* object, int64_t j) const
99 float GetFloat(const Object* object) const
101 void SetFloat(Object* object, float f) const
103 double GetDouble(const Object* object) const
105 void SetDouble(Object* object, double d) const
107 Object* GetObject(const Object* object) const
109 void SetObject(Object* object, const Object* l) const
113 uint32_t Get32(const Object* object) const
115 void Set32(Object* object, uint32_t new_value) const
117 uint64_t Get64(const Object* object) const
119 void Set64(Object* object, uint64_t new_value) const
121 Object* GetObj(const Object* object) const
123 void SetObj(Object* object, const Object* new_value) const