Home | History | Annotate | Download | only in libxml2

Lines Matching refs:xmlValidGetValidElements

6923  * xmlValidGetValidElements:
6933 * to insert before 'node': xmlValidGetValidElements(node->prev, node, ...
6934 * to insert next 'node': xmlValidGetValidElements(node, node->next, ...
6935 * to replace 'node': xmlValidGetValidElements(node->prev, node->next, ...
6936 * to prepend a child to 'node': xmlValidGetValidElements(NULL, node->childs,
6937 * to append a child to 'node': xmlValidGetValidElements(node->last, NULL, ...
6948 xmlValidGetValidElements(xmlNode *prev, xmlNode *next, const xmlChar **names,