Lines Matching refs:std
198 zend_object std; member
658 zend_object_std_dtor(&intern->std TSRMLS_CC); in tidy_object_free_storage()
681 zend_object_std_init(&intern->std, class_type TSRMLS_CC); in tidy_object_new()
682 object_properties_init(&intern->std, class_type); in tidy_object_new()
825 if (!obj->std.properties) { in tidy_doc_update_properties()
826 rebuild_object_properties(&obj->std); in tidy_doc_update_properties()
830 …zend_hash_update(obj->std.properties, "value", sizeof("value"), (void *)&temp, sizeof(zval *), NUL… in tidy_doc_update_properties()
836 if (!obj->std.properties) { in tidy_doc_update_properties()
837 rebuild_object_properties(&obj->std); in tidy_doc_update_properties()
841 …zend_hash_update(obj->std.properties, "errorBuffer", sizeof("errorBuffer"), (void *)&temp, sizeof(… in tidy_doc_update_properties()
857 if (!obj->std.properties) { in tidy_add_default_properties()
858 rebuild_object_properties(&obj->std); in tidy_add_default_properties()
862 ADD_PROPERTY_STRINGL(obj->std.properties, value, buf.bp, buf.size ? buf.size-1 : 0); in tidy_add_default_properties()
865 ADD_PROPERTY_STRING(obj->std.properties, name, tidyNodeGetName(obj->node)); in tidy_add_default_properties()
866 ADD_PROPERTY_LONG(obj->std.properties, type, tidyNodeGetType(obj->node)); in tidy_add_default_properties()
867 ADD_PROPERTY_LONG(obj->std.properties, line, tidyNodeLine(obj->node)); in tidy_add_default_properties()
868 ADD_PROPERTY_LONG(obj->std.properties, column, tidyNodeColumn(obj->node)); in tidy_add_default_properties()
869 ADD_PROPERTY_BOOL(obj->std.properties, proprietary, tidyNodeIsProp(obj->ptdoc->doc, obj->node)); in tidy_add_default_properties()
879 ADD_PROPERTY_LONG(obj->std.properties, id, tidyNodeGetId(obj->node)); in tidy_add_default_properties()
899 …zend_hash_update(obj->std.properties, "attribute", sizeof("attribute"), (void *)&attribute, sizeof… in tidy_add_default_properties()
924 …zend_hash_update(obj->std.properties, "child", sizeof("child"), (void *)&children, sizeof(zval *),… in tidy_add_default_properties()
929 if (!obj->std.properties) { in tidy_add_default_properties()
930 rebuild_object_properties(&obj->std); in tidy_add_default_properties()
932 ADD_PROPERTY_NULL(obj->std.properties, errorBuffer); in tidy_add_default_properties()
933 ADD_PROPERTY_NULL(obj->std.properties, value); in tidy_add_default_properties()