Lines Matching refs:std

338 	} else if (instanceof_function(obj->std.ce, dom_node_class_entry)) {  in dom_read_property()
339 php_error(E_WARNING, "Couldn't fetch %s. Node no longer exists", ZSTR_VAL(obj->std.ce->name)); in dom_read_property()
506 dom_object *clone = dom_objects_set_class(intern->std.ce); in dom_objects_store_clone_obj()
508 clone->std.handlers = dom_get_obj_handlers(); in dom_objects_store_clone_obj()
510 if (instanceof_function(intern->std.ce, dom_node_class_entry)) { in dom_objects_store_clone_obj()
529 zend_objects_clone_members(&clone->std, &intern->std); in dom_objects_store_clone_obj()
531 return &clone->std; in dom_objects_store_clone_obj()
598 dom_object_handlers.offset = XtOffsetOf(dom_object, std); in PHP_MINIT_FUNCTION()
841 dom_xpath_object_handlers.offset = XtOffsetOf(dom_xpath_object, dom) + XtOffsetOf(dom_object, std); in PHP_MINIT_FUNCTION()
1010 zend_object_std_dtor(&intern->dom.std); in dom_xpath_objects_free_storage()
1040 zend_object_std_dtor(&intern->std); in dom_objects_free_storage()
1060 ZVAL_OBJ(&mapptr->baseobj_zv, &basenode->std); in dom_namednode_iter()
1082 zend_object_std_init(&intern->std, class_type); in dom_objects_set_class()
1083 object_properties_init(&intern->std, class_type); in dom_objects_set_class()
1093 intern->std.handlers = dom_get_obj_handlers(); in dom_objects_new()
1094 return &intern->std; in dom_objects_new()
1107 intern->dom.std.handlers = &dom_xpath_object_handlers; in dom_xpath_objects_new()
1109 zend_object_std_init(&intern->dom.std, class_type); in dom_xpath_objects_new()
1110 object_properties_init(&intern->dom.std, class_type); in dom_xpath_objects_new()
1112 return &intern->dom.std; in dom_xpath_objects_new()
1147 zend_object_std_dtor(&intern->std); in dom_nnodemap_objects_free_storage()
1166 intern->std.handlers = &dom_nnodemap_object_handlers; in dom_nnodemap_objects_new()
1168 return &intern->std; in dom_nnodemap_objects_new()
1198 GC_ADDREF(&intern->std); in php_dom_create_object()
1199 ZVAL_OBJ(return_value, &intern->std); in php_dom_create_object()