Lines Matching refs:property

1592 			xmlNodePtr property;  in model_to_xml_object()  local
1615 property = xmlNewNode(NULL, BAD_CAST("BOGUS")); in model_to_xml_object()
1616 xmlAddChild(node, property); in model_to_xml_object()
1617 set_xsi_nil(property); in model_to_xml_object()
1619 property = master_to_xml(enc, val, style, node); in model_to_xml_object()
1620 if (property->children && property->children->content && in model_to_xml_object()
1621 …model->u.element->fixed && strcmp(model->u.element->fixed, (char*)property->children->content) != … in model_to_xml_object()
1622 …'%s' is not allowed)", model->u.element->name, model->u.element->fixed, property->children->conten… in model_to_xml_object()
1625 xmlNodeSetName(property, BAD_CAST(model->u.element->name)); in model_to_xml_object()
1629 xmlNsPtr nsp = encode_add_ns(property, model->u.element->namens); in model_to_xml_object()
1630 xmlSetNs(property, nsp); in model_to_xml_object()
1635 property = xmlNewNode(NULL, BAD_CAST("BOGUS")); in model_to_xml_object()
1636 xmlAddChild(node, property); in model_to_xml_object()
1637 set_xsi_nil(property); in model_to_xml_object()
1641 property = master_to_xml(enc, data, style, node); in model_to_xml_object()
1642 if (property->children && property->children->content && in model_to_xml_object()
1643 …model->u.element->fixed && strcmp(model->u.element->fixed, (char*)property->children->content) != … in model_to_xml_object()
1644 …'%s' is not allowed)", model->u.element->name, model->u.element->fixed, property->children->conten… in model_to_xml_object()
1647 xmlNodeSetName(property, BAD_CAST(model->u.element->name)); in model_to_xml_object()
1651 xmlNsPtr nsp = encode_add_ns(property, model->u.element->namens); in model_to_xml_object()
1652 xmlSetNs(property, nsp); in model_to_xml_object()
1657 property = xmlNewNode(NULL, BAD_CAST(model->u.element->name)); in model_to_xml_object()
1658 xmlAddChild(node, property); in model_to_xml_object()
1659 set_xsi_nil(property); in model_to_xml_object()
1663 xmlNsPtr nsp = encode_add_ns(property, model->u.element->namens); in model_to_xml_object()
1664 xmlSetNs(property, nsp); in model_to_xml_object()
1869 xmlNodePtr property; in to_xml_object() local
1872 property = xmlNewNode(NULL, BAD_CAST("BOGUS")); in to_xml_object()
1873 xmlAddChild(xmlParam, property); in to_xml_object()
1874 set_xsi_nil(property); in to_xml_object()
1876 property = master_to_xml(array_el->encode, val, style, xmlParam); in to_xml_object()
1878 xmlNodeSetName(property, BAD_CAST(array_el->name)); in to_xml_object()
1882 xmlNsPtr nsp = encode_add_ns(property, array_el->namens); in to_xml_object()
1883 xmlSetNs(property, nsp); in to_xml_object()
1937 xmlNodePtr property; in to_xml_object() local
1941 property = master_to_xml(get_conversion(Z_TYPE_P(zprop)), zprop, style, xmlParam); in to_xml_object()
1954 xmlNodeSetName(property, BAD_CAST(prop_name)); in to_xml_object()