Lines Matching refs:used
25 used for that. Do not rely class entry's constructor, unless you refer
44 read_property is used to read object's property. This value is not
50 write_property is used to directly write object's property by
51 name. This handler is used to assign property variables or to change them
54 get_property_zval_ptr is used to obtain pointer to modifiable zval for
55 operations like += or ++. This should be used only if your object model
60 get_property_ptr is used to obtain zval ** for future writing to
64 This method is meant to be used for send-by-reference and assign-by-reference
68 get and set handlers are used when engine needs to access the object
80 get_method handler is used to find method description by name. It
89 call_method handler is used to perform method call. Parameters are
95 Objects can be compared via compare_objects handler. This is used with
104 get_class_name is used to retrieve class name of the object.
160 property. Is used when value of the property should be retrieved for
169 be used for read and write. If object properties are not zval's
173 get - retrieves zval* for object contents. To be used mainly with
174 proxy objects from get_property_ptr, but also may be used for
177 set - sets value for object contents. To be used mainly with