Lines Matching refs:element

69  * properties with an element. The property manipulation code overcomes this
214 * Pool element specific
275 /* Load up DTD element a-dtype data to improve performance */
391 * Work out the element type and free the elem
403 * Remove an element from the document. Note that only three types of elements
435 * Create a property element.
441 xmlNodePtr element;
444 if ((element = node_create(parent, BAD_CAST "property")) == NULL) {
449 xmlFree(element);
452 (void) pool_xml_set_attr(element, BAD_CAST c_name, &val);
454 xmlFree(element);
457 (void) pool_xml_set_attr(element, BAD_CAST c_type, &val);
458 return (element);
496 * Put a property on an element. Check if the property is an attribute,
497 * if it is update that value. If not add a property element.
531 * Remove a property from an element. Check if the property is an attribute,
573 * Get the data type for an attribute name from the element node. The data
644 * Set the data type for an attribute name from the element node. The
717 * Get the data type for a property name from the element node. The data
817 * Set the data type for a property name from the element node. The
828 xmlNodePtr element;
851 element = property_create
857 element = path->nodesetval->nodeTab[0];
858 if (xmlHasProp(element, BAD_CAST c_type) == NULL) {
864 data = xmlGetProp(element, BAD_CAST c_type);
918 xmlNodeSetContent(element, buf);
926 * of the properties stored for an element
1322 * Returns element pointer/NULL
1334 /* Set up the function pointers for element manipulation */
1343 * Specific initialisation for different types of element
1481 /* In XML terms, create an element of the appropriate class */
1493 * If we know the class of an element, we know it's parent.
1768 * Return the next element in a result set.
1787 * Return the previous element in a result set.
1837 * Return the first element in a result set.
1851 * Return the last element in a result set.
2064 * Try to work out if an element contains an attribute of the supplied name.
2067 * element.
2523 /* Load up the d-type data for each element */
2529 * element declaration
2533 * element descriptions as there is no libxml API to do this (they
2571 * information for an element. The supplied data is assumed to be in "a-dtype"
2583 const int max_attr = 11; /* Not more than 10 types per element */
2743 /* Get the root element */