Home | History | Annotate | Download | only in libxml2

Lines Matching refs:xmlValidGetValidElements

6920  * xmlValidGetValidElements:
6930 * to insert before 'node': xmlValidGetValidElements(node->prev, node, ...
6931 * to insert next 'node': xmlValidGetValidElements(node, node->next, ...
6932 * to replace 'node': xmlValidGetValidElements(node->prev, node->next, ...
6933 * to prepend a child to 'node': xmlValidGetValidElements(NULL, node->childs,
6934 * to append a child to 'node': xmlValidGetValidElements(node->last, NULL, ...
6945 xmlValidGetValidElements(xmlNode *prev, xmlNode *next, const xmlChar **names,