Lines Matching defs:Object
29 class Object {
34 Object();
35 Object(const Object&);
36 ~Object();
40 * parameter is copied, but ownership of the Object parameter is
41 * transferred. The Object parameter may be null, but the name must
44 void addObject(const char name[], Object* value);
80 * Return the number of slots/fields in this object. These can be
89 bool findObject(const char name[], Object** = NULL) const;
105 * Iterator class which returns all of the fields/slots in an Object,
110 Iter(const Object&);
140 Object* objectValue() const;
221 * Object (which may be null). Ownership of the Object is transferred.
224 void setObject(int index, Object*);
240 Object* const* objects() const {
270 Object** fObjects;
281 friend class Object;