Lines Matching refs:std

194 	zend_object		std;  member
198 return (PHPTidyObj *)((char*)(obj) - XtOffsetOf(PHPTidyObj, std)); in php_tidy_fetch_object()
665 zend_object_std_dtor(&intern->std); in tidy_object_free_storage()
684 zend_object_std_init(&intern->std, class_type); in tidy_object_new()
685 object_properties_init(&intern->std, class_type); in tidy_object_new()
717 intern->std.handlers = handlers; in tidy_object_new()
719 return &intern->std; in tidy_object_new()
818 if (!obj->std.properties) { in tidy_doc_update_properties()
819 rebuild_object_properties(&obj->std); in tidy_doc_update_properties()
822 zend_hash_str_update(obj->std.properties, "value", sizeof("value") - 1, &temp); in tidy_doc_update_properties()
828 if (!obj->std.properties) { in tidy_doc_update_properties()
829 rebuild_object_properties(&obj->std); in tidy_doc_update_properties()
832 zend_hash_str_update(obj->std.properties, "errorBuffer", sizeof("errorBuffer") - 1, &temp); in tidy_doc_update_properties()
848 if (!obj->std.properties) { in tidy_add_default_properties()
849 rebuild_object_properties(&obj->std); in tidy_add_default_properties()
853 ADD_PROPERTY_STRINGL(obj->std.properties, value, buf.bp, buf.size ? buf.size-1 : 0); in tidy_add_default_properties()
856 ADD_PROPERTY_STRING(obj->std.properties, name, tidyNodeGetName(obj->node)); in tidy_add_default_properties()
857 ADD_PROPERTY_LONG(obj->std.properties, type, tidyNodeGetType(obj->node)); in tidy_add_default_properties()
858 ADD_PROPERTY_LONG(obj->std.properties, line, tidyNodeLine(obj->node)); in tidy_add_default_properties()
859 ADD_PROPERTY_LONG(obj->std.properties, column, tidyNodeColumn(obj->node)); in tidy_add_default_properties()
860 ADD_PROPERTY_BOOL(obj->std.properties, proprietary, tidyNodeIsProp(obj->ptdoc->doc, obj->node)); in tidy_add_default_properties()
870 ADD_PROPERTY_LONG(obj->std.properties, id, tidyNodeGetId(obj->node)); in tidy_add_default_properties()
889 zend_hash_str_update(obj->std.properties, "attribute", sizeof("attribute") - 1, &attribute); in tidy_add_default_properties()
912 zend_hash_str_update(obj->std.properties, "child", sizeof("child") - 1, &children); in tidy_add_default_properties()
917 if (!obj->std.properties) { in tidy_add_default_properties()
918 rebuild_object_properties(&obj->std); in tidy_add_default_properties()
920 ADD_PROPERTY_NULL(obj->std.properties, errorBuffer); in tidy_add_default_properties()
921 ADD_PROPERTY_NULL(obj->std.properties, value); in tidy_add_default_properties()
1049 tidy_object_handlers_node.offset = tidy_object_handlers_doc.offset = XtOffsetOf(PHPTidyObj, std); in PHP_MINIT_FUNCTION()