• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/

Lines Matching defs:nodes

286     xmlHashTablePtr triage;     /* hash table used to direct nodes to the
3307 ctxt, xmlNodePtr nodes,
3314 xmlNodePtr nodes);
3320 ctxt, xmlNodePtr nodes);
4267 * - trying to get a total order on the element nodes generated
5402 * @nodes: list of nodes
5410 xmlRelaxNGParsePatterns(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr nodes,
5416 while (nodes != NULL) {
5417 if (IS_RELAXNG(nodes, "element")) {
5418 cur = xmlRelaxNGParseElement(ctxt, nodes);
5424 def = xmlRelaxNGNewDefine(ctxt, nodes);
5433 cur = xmlRelaxNGParsePattern(ctxt, nodes);
5443 nodes = nodes->next;
5451 * @nodes: start children nodes
5458 xmlRelaxNGParseStart(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr nodes)
5463 if (nodes == NULL) {
5464 xmlRngPErr(ctxt, nodes, XML_RNGP_START_EMPTY, "start has no children\n",
5468 if (IS_RELAXNG(nodes, "empty")) {
5469 def = xmlRelaxNGNewDefine(ctxt, nodes);
5473 if (nodes->children != NULL) {
5474 xmlRngPErr(ctxt, nodes, XML_RNGP_EMPTY_CONTENT,
5477 } else if (IS_RELAXNG(nodes, "notAllowed")) {
5478 def = xmlRelaxNGNewDefine(ctxt, nodes);
5482 if (nodes->children != NULL) {
5483 xmlRngPErr(ctxt, nodes, XML_RNGP_NOTALLOWED_NOT_EMPTY,
5487 def = xmlRelaxNGParsePatterns(ctxt, nodes, 1);
5497 nodes = nodes->next;
5498 if (nodes != NULL) {
5499 xmlRngPErr(ctxt, nodes, XML_RNGP_START_CONTENT,
5509 * @nodes: grammar children nodes
5517 xmlNodePtr nodes)
5521 if (nodes == NULL) {
5522 xmlRngPErr(ctxt, nodes, XML_RNGP_GRAMMAR_EMPTY,
5526 while (nodes != NULL) {
5527 if (IS_RELAXNG(nodes, "start")) {
5528 if (nodes->children == NULL) {
5529 xmlRngPErr(ctxt, nodes, XML_RNGP_START_EMPTY,
5532 tmp = xmlRelaxNGParseStart(ctxt, nodes->children);
5536 } else if (IS_RELAXNG(nodes, "define")) {
5537 tmp = xmlRelaxNGParseDefine(ctxt, nodes);
5540 } else if (IS_RELAXNG(nodes, "include")) {
5541 tmp = xmlRelaxNGParseInclude(ctxt, nodes);
5545 xmlRngPErr(ctxt, nodes, XML_RNGP_GRAMMAR_CONTENT,
5546 "grammar has unexpected child %s\n", nodes->name,
5550 nodes = nodes->next;
5833 * @nodes: grammar children nodes
5906 * @nodes: grammar children nodes
6434 * @nodes: grammar children nodes
6442 xmlRelaxNGParseGrammar(xmlRelaxNGParserCtxtPtr ctxt, xmlNodePtr nodes)
6471 xmlRelaxNGParseGrammarContent(ctxt, nodes);
6474 xmlRngPErr(ctxt, nodes, XML_RNGP_GRAMMAR_CONTENT,
6477 xmlRngPErr(ctxt, nodes, XML_RNGP_GRAMMAR_NO_START,
6865 * Cleanup the subtree from unwanted nodes for parsing, resolve
7305 * Cleanup the document from unwanted nodes for parsing, resolve
8369 * Skip ignorable nodes in that context
10087 * Collect all the new nodes added at that step
10340 * Make sure it's only text nodes