Lines Matching refs:std

339 	} else if (instanceof_function(obj->std.ce, dom_node_class_entry)) {  in dom_read_property()
340 php_error(E_WARNING, "Couldn't fetch %s. Node no longer exists", ZSTR_VAL(obj->std.ce->name)); in dom_read_property()
507 dom_object *clone = dom_objects_set_class(intern->std.ce, 0); in dom_objects_store_clone_obj()
509 clone->std.handlers = dom_get_obj_handlers(); in dom_objects_store_clone_obj()
511 if (instanceof_function(intern->std.ce, dom_node_class_entry)) { in dom_objects_store_clone_obj()
530 zend_objects_clone_members(&clone->std, &intern->std); in dom_objects_store_clone_obj()
532 return &clone->std; in dom_objects_store_clone_obj()
599 dom_object_handlers.offset = XtOffsetOf(dom_object, std); in PHP_MINIT_FUNCTION()
843 dom_xpath_object_handlers.offset = XtOffsetOf(dom_xpath_object, dom) + XtOffsetOf(dom_object, std); in PHP_MINIT_FUNCTION()
1012 zend_object_std_dtor(&intern->dom.std); in dom_xpath_objects_free_storage()
1042 zend_object_std_dtor(&intern->std); in dom_objects_free_storage()
1062 ZVAL_OBJ(&mapptr->baseobj_zv, &basenode->std); in dom_namednode_iter()
1084 zend_object_std_init(&intern->std, class_type); in dom_objects_set_class()
1086 object_properties_init(&intern->std, class_type); in dom_objects_set_class()
1097 intern->std.handlers = dom_get_obj_handlers(); in dom_objects_new()
1098 return &intern->std; in dom_objects_new()
1112 intern->dom.std.handlers = &dom_xpath_object_handlers; in dom_xpath_objects_new()
1114 zend_object_std_init(&intern->dom.std, class_type); in dom_xpath_objects_new()
1115 object_properties_init(&intern->dom.std, class_type); in dom_xpath_objects_new()
1117 return &intern->dom.std; in dom_xpath_objects_new()
1152 zend_object_std_dtor(&intern->std); in dom_nnodemap_objects_free_storage()
1171 intern->std.handlers = &dom_nnodemap_object_handlers; in dom_nnodemap_objects_new()
1173 return &intern->std; in dom_nnodemap_objects_new()
1203 GC_REFCOUNT(&intern->std)++; in php_dom_create_object()
1204 ZVAL_OBJ(return_value, &intern->std); in php_dom_create_object()