Lines Matching refs:property

1628 			xmlNodePtr property;  in model_to_xml_object()  local
1651 property = xmlNewNode(NULL, BAD_CAST("BOGUS")); in model_to_xml_object()
1652 xmlAddChild(node, property); in model_to_xml_object()
1653 set_xsi_nil(property); in model_to_xml_object()
1655 property = master_to_xml(enc, val, style, node); in model_to_xml_object()
1656 if (property->children && property->children->content && in model_to_xml_object()
1657 …model->u.element->fixed && strcmp(model->u.element->fixed, (char*)property->children->content) != … in model_to_xml_object()
1658 …'%s' is not allowed)", model->u.element->name, model->u.element->fixed, property->children->conten… in model_to_xml_object()
1661 xmlNodeSetName(property, BAD_CAST(model->u.element->name)); in model_to_xml_object()
1665 xmlNsPtr nsp = encode_add_ns(property, model->u.element->namens); in model_to_xml_object()
1666 xmlSetNs(property, nsp); in model_to_xml_object()
1671 property = xmlNewNode(NULL, BAD_CAST("BOGUS")); in model_to_xml_object()
1672 xmlAddChild(node, property); in model_to_xml_object()
1673 set_xsi_nil(property); in model_to_xml_object()
1677 property = master_to_xml(enc, data, style, node); in model_to_xml_object()
1678 if (property->children && property->children->content && in model_to_xml_object()
1679 …model->u.element->fixed && strcmp(model->u.element->fixed, (char*)property->children->content) != … in model_to_xml_object()
1680 …'%s' is not allowed)", model->u.element->name, model->u.element->fixed, property->children->conten… in model_to_xml_object()
1683 xmlNodeSetName(property, BAD_CAST(model->u.element->name)); in model_to_xml_object()
1687 xmlNsPtr nsp = encode_add_ns(property, model->u.element->namens); in model_to_xml_object()
1688 xmlSetNs(property, nsp); in model_to_xml_object()
1693 property = xmlNewNode(NULL, BAD_CAST(model->u.element->name)); in model_to_xml_object()
1694 xmlAddChild(node, property); in model_to_xml_object()
1695 set_xsi_nil(property); in model_to_xml_object()
1699 xmlNsPtr nsp = encode_add_ns(property, model->u.element->namens); in model_to_xml_object()
1700 xmlSetNs(property, nsp); in model_to_xml_object()
1905 xmlNodePtr property; in to_xml_object() local
1908 property = xmlNewNode(NULL, BAD_CAST("BOGUS")); in to_xml_object()
1909 xmlAddChild(xmlParam, property); in to_xml_object()
1910 set_xsi_nil(property); in to_xml_object()
1912 property = master_to_xml(array_el->encode, val, style, xmlParam); in to_xml_object()
1914 xmlNodeSetName(property, BAD_CAST(array_el->name)); in to_xml_object()
1918 xmlNsPtr nsp = encode_add_ns(property, array_el->namens); in to_xml_object()
1919 xmlSetNs(property, nsp); in to_xml_object()
1973 xmlNodePtr property; in to_xml_object() local
1977 property = master_to_xml(get_conversion(Z_TYPE_P(zprop)), zprop, style, xmlParam); in to_xml_object()
1990 xmlNodeSetName(property, BAD_CAST(prop_name)); in to_xml_object()