Lines Matching defs:node
1773 printf("Node %s matches pattern %s\n", path, pattern);
1775 printf("Node %s matches pattern %s\n",
1801 fprintf(stderr, " pattern %s node %s\n",
1804 fprintf(stderr, " pattern %s node %s\n",
2076 xmlNodePtr node;
2092 node = cur->nodesetval->nodeTab[i];
2093 xmlSaveTree(ctxt, node);
2145 ctxt->node = (xmlNodePtr) doc;
2470 xmlNodePtr node;
2473 node = doc->children;
2474 while ((node != NULL) && (node->last == NULL)) node = node->next;
2475 if (node != NULL) {
2476 nb = xmlValidGetValidElements(node->last, NULL, list, 256);
3066 printf("\t--chkregister : verify the node registration code\n");
3087 static void registerNode(xmlNodePtr node)
3089 node->_private = malloc(sizeof(long));
3090 *(long*)node->_private = (long) 0x81726354;
3094 static void deregisterNode(xmlNodePtr node)
3096 assert(node->_private != NULL);
3097 assert(*(long*)node->_private == (long) 0x81726354);
3098 free(node->_private);