Home | History | Annotate | Download | only in libxml2

Lines Matching refs:root

2149  * @node:  the root element
2153 * which registers all namespaces declarations found on the root element.
2159 xmlNodePtr root, xmlNodePtr node2 ATTRIBUTE_UNUSED)
2163 if ((root == NULL) || (root->type != XML_ELEMENT_NODE) ||
2164 (root->nsDef == NULL) || (ctxt == NULL) || (ctxt->pctxt == NULL))
2166 ns = root->nsDef;
2753 * Show the full path from the root to the node, if needed building
2900 fprintf(ctxt->output, "\tcd [path] change directory to path or to root\n");
2913 fprintf(ctxt->output, "\tsetrootns register all namespace found on the root element\n");
2980 xmlNodePtr root;
2982 root = xmlDocGetRootElement(ctxt->doc);
2983 xmlShellRegisterRootNamespaces(ctxt, NULL, root, NULL);