Lines Matching +defs:val +defs:output
223 static void des_void_ptr(int no ATTRIBUTE_UNUSED, void *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
233 static void des_const_void_ptr(int no ATTRIBUTE_UNUSED, const void *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
244 static void des_userdata(int no ATTRIBUTE_UNUSED, void *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
258 static void des_int(int no ATTRIBUTE_UNUSED, int val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
271 static void des_parseroptions(int no ATTRIBUTE_UNUSED, int val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
285 static void des_long(int no ATTRIBUTE_UNUSED, long val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
298 static void des_xmlChar(int no ATTRIBUTE_UNUSED, xmlChar val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
310 static void des_unsigned_int(int no ATTRIBUTE_UNUSED, unsigned int val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
322 static void des_unsigned_long(int no ATTRIBUTE_UNUSED, unsigned long val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
336 static void des_double(int no ATTRIBUTE_UNUSED, double val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
346 static void des_unsigned_long_ptr(int no ATTRIBUTE_UNUSED, unsigned long *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
356 static void des_int_ptr(int no ATTRIBUTE_UNUSED, int *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
367 static void des_const_char_ptr(int no ATTRIBUTE_UNUSED, const char *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
376 static void des_xmlChar_ptr(int no ATTRIBUTE_UNUSED, xmlChar *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
385 static void des_FILE_ptr(int no ATTRIBUTE_UNUSED, FILE *val, int nr ATTRIBUTE_UNUSED) {
386 if (val != NULL) fclose(val);
393 static void des_debug_FILE_ptr(int no ATTRIBUTE_UNUSED, FILE *val, int nr ATTRIBUTE_UNUSED) {
394 if (val != NULL) fclose(val);
406 static void des_const_xmlChar_ptr(int no ATTRIBUTE_UNUSED, const xmlChar *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
421 static void des_filepath(int no ATTRIBUTE_UNUSED, const char *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
430 static void des_eaten_name(int no ATTRIBUTE_UNUSED, xmlChar *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
443 static void des_fileoutput(int no ATTRIBUTE_UNUSED, const char *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
452 static void des_xmlParserCtxtPtr(int no ATTRIBUTE_UNUSED, xmlParserCtxtPtr val, int nr ATTRIBUTE_UNUSED) {
453 if (val != NULL)
454 xmlFreeParserCtxt(val);
464 static void des_xmlSAXHandlerPtr(int no ATTRIBUTE_UNUSED, xmlSAXHandlerPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
474 static void des_xmlValidCtxtPtr(int no ATTRIBUTE_UNUSED, xmlValidCtxtPtr val, int nr ATTRIBUTE_UNUSED) {
476 if (val != NULL)
477 xmlFreeValidCtxt(val);
493 static void des_xmlParserInputBufferPtr(int no ATTRIBUTE_UNUSED, xmlParserInputBufferPtr val, int nr ATTRIBUTE_UNUSED) {
494 xmlFreeParserInputBuffer(val);
503 static void des_xmlDocPtr(int no ATTRIBUTE_UNUSED, xmlDocPtr val, int nr ATTRIBUTE_UNUSED) {
504 if ((val != NULL) && (val != api_doc) && (val->doc != api_doc))
505 xmlFreeDoc(val);
513 static void des_xmlAttrPtr(int no, xmlAttrPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
522 static void des_xmlDictPtr(int no ATTRIBUTE_UNUSED, xmlDictPtr val, int nr ATTRIBUTE_UNUSED) {
523 if (val != NULL)
524 xmlDictFree(val);
534 static void des_xmlNodePtr(int no, xmlNodePtr val, int nr ATTRIBUTE_UNUSED) {
537 } else if (val != NULL) {
538 xmlUnlinkNode(val);
539 xmlFreeNode(val);
550 static void des_xmlDtdPtr(int no, xmlDtdPtr val, int nr ATTRIBUTE_UNUSED) {
552 else if (val != NULL) {
553 xmlUnlinkNode((xmlNodePtr) val);
554 xmlFreeNode((xmlNodePtr) val);
563 static void des_xmlNsPtr(int no, xmlNsPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
573 static void des_xmlNodePtr_in(int no ATTRIBUTE_UNUSED, xmlNodePtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
582 static void des_xmlTextWriterPtr(int no ATTRIBUTE_UNUSED, xmlTextWriterPtr val, int nr ATTRIBUTE_UNUSED) {
583 if (val != NULL) xmlFreeTextWriter(val);
595 static void des_xmlTextReaderPtr(int no ATTRIBUTE_UNUSED, xmlTextReaderPtr val, int nr ATTRIBUTE_UNUSED) {
596 if (val != NULL) xmlFreeTextReader(val);
606 static void des_xmlBufferPtr(int no ATTRIBUTE_UNUSED, xmlBufferPtr val, int nr ATTRIBUTE_UNUSED) {
607 if (val != NULL) {
608 xmlBufferFree(val);
617 static void des_xmlListPtr(int no ATTRIBUTE_UNUSED, xmlListPtr val, int nr ATTRIBUTE_UNUSED) {
618 if (val != NULL) {
619 xmlListDelete(val);
628 static void des_xmlHashTablePtr(int no ATTRIBUTE_UNUSED, xmlHashTablePtr val, int nr ATTRIBUTE_UNUSED) {
629 if (val != NULL) {
630 xmlHashFree(val, NULL);
645 static void des_xmlXPathObjectPtr(int no ATTRIBUTE_UNUSED, xmlXPathObjectPtr val, int nr ATTRIBUTE_UNUSED) {
646 if (val != NULL) {
647 xmlXPathFreeObject(val);
658 static void des_xmlOutputBufferPtr(int no ATTRIBUTE_UNUSED, xmlOutputBufferPtr val, int nr ATTRIBUTE_UNUSED) {
659 if (val != NULL) {
660 xmlOutputBufferClose(val);
673 static void des_xmlNanoFTPCtxtPtr(int no ATTRIBUTE_UNUSED, void *val, int nr ATTRIBUTE_UNUSED) {
674 if (val != NULL) {
675 xmlNanoFTPFreeCtxt(val);
688 static void des_xmlNanoHTTPCtxtPtr(int no ATTRIBUTE_UNUSED, void *val, int nr ATTRIBUTE_UNUSED) {
689 if (val != NULL) {
690 xmlNanoHTTPClose(val);
702 static void des_xmlCharEncoding(int no ATTRIBUTE_UNUSED, xmlCharEncoding val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
711 static void des_xmlExpCtxtPtr(int no ATTRIBUTE_UNUSED, xmlExpCtxtPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
718 static void des_xmlExpNodePtr(int no ATTRIBUTE_UNUSED, xmlExpNodePtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
732 static void des_xmlHashDeallocator(int no ATTRIBUTE_UNUSED, xmlHashDeallocator val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
736 static void desret_int(int val ATTRIBUTE_UNUSED) {
738 static void desret_xmlChar(xmlChar val ATTRIBUTE_UNUSED) {
740 static void desret_long(long val ATTRIBUTE_UNUSED) {
742 static void desret_unsigned_long(unsigned long val ATTRIBUTE_UNUSED) {
744 static void desret_double(double val ATTRIBUTE_UNUSED) {
746 static void desret_xmlCharEncoding(xmlCharEncoding val ATTRIBUTE_UNUSED) {
749 static void desret_const_void_ptr(void *val ATTRIBUTE_UNUSED) {
752 static void desret_void_ptr(void *val ATTRIBUTE_UNUSED) {
754 static void desret_const_char_ptr(const char *val ATTRIBUTE_UNUSED) {
756 static void desret_const_xmlChar_ptr(const xmlChar *val ATTRIBUTE_UNUSED) {
758 static void desret_xmlChar_ptr(xmlChar *val) {
759 if (val != NULL)
760 xmlFree(val);
762 static void desret_xmlDocPtr(xmlDocPtr val) {
763 if (val != api_doc)
764 xmlFreeDoc(val);
766 static void desret_xmlDictPtr(xmlDictPtr val) {
767 xmlDictFree(val);
770 static void desret_xmlOutputBufferPtr(xmlOutputBufferPtr val) {
771 xmlOutputBufferClose(val);
775 static void desret_xmlTextReaderPtr(xmlTextReaderPtr val) {
776 xmlFreeTextReader(val);
779 static void desret_xmlNodePtr(xmlNodePtr val) {
780 if ((val != NULL) && (val != api_root) && (val != (xmlNodePtr) api_doc)) {
781 xmlUnlinkNode(val);
782 xmlFreeNode(val);
785 static void desret_xmlAttrPtr(xmlAttrPtr val) {
786 if (val != NULL) {
787 xmlUnlinkNode((xmlNodePtr) val);
788 xmlFreeNode((xmlNodePtr) val);
791 static void desret_xmlEntityPtr(xmlEntityPtr val) {
792 if (val != NULL) {
793 xmlUnlinkNode((xmlNodePtr) val);
794 xmlFreeNode((xmlNodePtr) val);
797 static void desret_xmlElementPtr(xmlElementPtr val) {
798 if (val != NULL) {
799 xmlUnlinkNode((xmlNodePtr) val);
802 static void desret_xmlAttributePtr(xmlAttributePtr val) {
803 if (val != NULL) {
804 xmlUnlinkNode((xmlNodePtr) val);
807 static void desret_xmlNsPtr(xmlNsPtr val ATTRIBUTE_UNUSED) {
809 static void desret_xmlDtdPtr(xmlDtdPtr val) {
810 desret_xmlNodePtr((xmlNodePtr)val);
813 static void desret_xmlXPathObjectPtr(xmlXPathObjectPtr val) {
814 xmlXPathFreeObject(val);
816 static void desret_xmlNodeSetPtr(xmlNodeSetPtr val) {
817 xmlXPathFreeNodeSet(val);
820 static void desret_xmlParserCtxtPtr(xmlParserCtxtPtr val) {
821 xmlFreeParserCtxt(val);
823 static void desret_xmlParserInputBufferPtr(xmlParserInputBufferPtr val) {
824 xmlFreeParserInputBuffer(val);
826 static void desret_xmlParserInputPtr(xmlParserInputPtr val) {
827 xmlFreeInputStream(val);
830 static void desret_xmlTextWriterPtr(xmlTextWriterPtr val) {
831 xmlFreeTextWriter(val);
834 static void desret_xmlBufferPtr(xmlBufferPtr val) {
835 xmlBufferFree(val);
838 static void desret_xmlSchemaParserCtxtPtr(xmlSchemaParserCtxtPtr val) {
839 xmlSchemaFreeParserCtxt(val);
841 static void desret_xmlSchemaTypePtr(xmlSchemaTypePtr val ATTRIBUTE_UNUSED) {
843 static void desret_xmlRelaxNGParserCtxtPtr(xmlRelaxNGParserCtxtPtr val) {
844 xmlRelaxNGFreeParserCtxt(val);
848 static void desret_const_htmlEntityDesc_ptr(const htmlEntityDesc * val ATTRIBUTE_UNUSED) {
852 static void desret_xmlNanoHTTPCtxtPtr(void *val) {
853 xmlNanoHTTPClose(val);
857 static void desret_xmlNanoFTPCtxtPtr(void *val) {
858 xmlNanoFTPClose(val);
866 static void des_const_xmlChar_ptr_ptr(int no ATTRIBUTE_UNUSED, const xmlChar ** val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
873 static void des_unsigned_char_ptr(int no ATTRIBUTE_UNUSED, unsigned char * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
880 static void des_const_unsigned_char_ptr(int no ATTRIBUTE_UNUSED, const unsigned char * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
888 static void des_const_htmlNodePtr(int no ATTRIBUTE_UNUSED, const htmlNodePtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
899 static void des_htmlDocPtr(int no ATTRIBUTE_UNUSED, htmlDocPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
900 if ((val != NULL) && (val != api_doc) && (val->doc != api_doc))
901 xmlFreeDoc(val);
903 static void desret_htmlDocPtr(htmlDocPtr val) {
904 if ((val != NULL) && (val != api_doc) && (val->doc != api_doc))
905 xmlFreeDoc(val);
913 static void des_htmlParserCtxtPtr(int no ATTRIBUTE_UNUSED, htmlParserCtxtPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
914 if (val != NULL)
915 htmlFreeParserCtxt(val);
917 static void desret_htmlParserCtxtPtr(htmlParserCtxtPtr val) {
918 if (val != NULL)
919 htmlFreeParserCtxt(val);
928 static void des_xmlNodeSetPtr(int no ATTRIBUTE_UNUSED, xmlNodeSetPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
938 static void des_xmlShellCtxtPtr(int no ATTRIBUTE_UNUSED, xmlShellCtxtPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
948 static void des_xmlPatternPtr(int no ATTRIBUTE_UNUSED, xmlPatternPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
956 static void des_xmlElementContentPtr(int no ATTRIBUTE_UNUSED, xmlElementContentPtr val, int nr ATTRIBUTE_UNUSED) {
957 if (val != NULL)
958 xmlFreeElementContent(val);
960 static void desret_xmlElementContentPtr(xmlElementContentPtr val) {
961 if (val != NULL)
962 xmlFreeElementContent(val);
969 static void des_xmlParserNodeInfoSeqPtr(int no ATTRIBUTE_UNUSED, xmlParserNodeInfoSeqPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
972 static void desret_const_xmlParserNodeInfo_ptr(const xmlParserNodeInfo *val ATTRIBUTE_UNUSED) {
984 static void desret_htmlStatus(htmlStatus val ATTRIBUTE_UNUSED) {
998 static void des_xmlAttributeDefault(int no ATTRIBUTE_UNUSED, xmlAttributeDefault val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
1010 static void des_xmlAttributeType(int no ATTRIBUTE_UNUSED, xmlAttributeType val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
1021 static void des_xmlBufferAllocationScheme(int no ATTRIBUTE_UNUSED, xmlBufferAllocationScheme val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
1024 static void desret_xmlBufferAllocationScheme(xmlBufferAllocationScheme val ATTRIBUTE_UNUSED) {
1037 static void des_xmlCatalogAllow(int no ATTRIBUTE_UNUSED, xmlCatalogAllow val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
1040 static void desret_xmlCatalogAllow(xmlCatalogAllow val ATTRIBUTE_UNUSED) {
1054 static void des_xmlCatalogPrefer(int no ATTRIBUTE_UNUSED, xmlCatalogPrefer val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
1057 static void desret_xmlCatalogPrefer(xmlCatalogPrefer val ATTRIBUTE_UNUSED) {
1071 static void des_xmlElementContentType(int no ATTRIBUTE_UNUSED, xmlElementContentType val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
1083 static void des_xmlElementTypeVal(int no ATTRIBUTE_UNUSED, xmlElementTypeVal val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
1095 static void des_xmlFeature(int no ATTRIBUTE_UNUSED, xmlFeature val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
1098 static void desret_xmlParserErrors(xmlParserErrors val ATTRIBUTE_UNUSED) {
1111 static void des_xmlSchemaValType(int no ATTRIBUTE_UNUSED, xmlSchemaValType val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
1114 static void desret_xmlSchemaValType(xmlSchemaValType val ATTRIBUTE_UNUSED) {
1129 static void des_xmlSchemaWhitespaceValueType(int no ATTRIBUTE_UNUSED, xmlSchemaWhitespaceValueType val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
1332 static void des_const_htmlElemDesc_ptr(int no ATTRIBUTE_UNUSED, const htmlElemDesc * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
1390 static void des_htmlNodePtr(int no ATTRIBUTE_UNUSED, htmlNodePtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
1489 static void des_htmlSAXHandlerPtr(int no ATTRIBUTE_UNUSED, htmlSAXHandlerPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
2029 int val; /* int 0 or 1 */
2034 val = gen_int(n_val, 0);
2036 ret_val = htmlHandleOmittedElem(val);
2039 des_int(n_val, val, 0);
2803 xmlOutputBufferPtr buf; /* the HTML buffer output */
2856 xmlOutputBufferPtr buf; /* the HTML buffer output */
2941 static void des_xmlChar_ptr_ptr(int no ATTRIBUTE_UNUSED, xmlChar ** val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
3200 xmlBufferPtr buf; /* the HTML buffer output */
3355 xmlOutputBufferPtr buf; /* the HTML buffer output */
3415 xmlOutputBufferPtr buf; /* the HTML buffer output */
3756 static void des_xmlEnumerationPtr(int no ATTRIBUTE_UNUSED, xmlEnumerationPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
4563 static void des_xmlSAXHandler_ptr(int no ATTRIBUTE_UNUSED, xmlSAXHandler * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
4932 static void des_xmlSAXLocatorPtr(int no ATTRIBUTE_UNUSED, xmlSAXLocatorPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
5479 xmlOutputBufferPtr buf; /* the output buffer to store canonical XML; this buffer MUST have encoder==NULL because C14N requires UTF-8 output */
5560 static void des_xmlCatalogPtr(int no ATTRIBUTE_UNUSED, xmlCatalogPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
6586 static void des_const_xmlChRangeGroup_ptr(int no ATTRIBUTE_UNUSED, const xmlChRangeGroup * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
6595 unsigned int val; /* character to be validated */
6603 val = gen_unsigned_int(n_val, 0);
6606 ret_val = xmlCharInRange(val, (const xmlChRangeGroup *)rptr);
6609 des_unsigned_int(n_val, val, 0);
6944 FILE * output; /* the FILE * for the output */
6952 output = gen_debug_FILE_ptr(n_output, 0);
6955 ret_val = xmlDebugCheckDocument(output, doc);
6958 des_debug_FILE_ptr(n_output, output, 0);
6984 FILE * output; /* the FILE * for the output */
6995 output = gen_debug_FILE_ptr(n_output, 0);
6999 xmlDebugDumpAttr(output, attr, depth);
7001 des_debug_FILE_ptr(n_output, output, 0);
7030 FILE * output; /* the FILE * for the output */
7041 output = gen_debug_FILE_ptr(n_output, 0);
7045 xmlDebugDumpAttrList(output, attr, depth);
7047 des_debug_FILE_ptr(n_output, output, 0);
7076 FILE * output; /* the FILE * for the output */
7084 output = gen_debug_FILE_ptr(n_output, 0);
7087 xmlDebugDumpDTD(output, dtd);
7089 des_debug_FILE_ptr(n_output, output, 0);
7115 FILE * output; /* the FILE * for the output */
7123 output = gen_debug_FILE_ptr(n_output, 0);
7126 xmlDebugDumpDocument(output, doc);
7128 des_debug_FILE_ptr(n_output, output, 0);
7154 FILE * output; /* the FILE * for the output */
7162 output = gen_debug_FILE_ptr(n_output, 0);
7165 xmlDebugDumpDocumentHead(output, doc);
7167 des_debug_FILE_ptr(n_output, output, 0);
7193 FILE * output; /* the FILE * for the output */
7201 output = gen_debug_FILE_ptr(n_output, 0);
7204 xmlDebugDumpEntities(output, doc);
7206 des_debug_FILE_ptr(n_output, output, 0);
7232 FILE * output; /* the FILE * for the output */
7243 output = gen_debug_FILE_ptr(n_output, 0);
7247 xmlDebugDumpNode(output, node, depth);
7249 des_debug_FILE_ptr(n_output, output, 0);
7278 FILE * output; /* the FILE * for the output */
7289 output = gen_debug_FILE_ptr(n_output, 0);
7293 xmlDebugDumpNodeList(output, node, depth);
7295 des_debug_FILE_ptr(n_output, output, 0);
7324 FILE * output; /* the FILE * for the output */
7335 output = gen_debug_FILE_ptr(n_output, 0);
7339 xmlDebugDumpOneNode(output, node, depth);
7341 des_debug_FILE_ptr(n_output, output, 0);
7370 FILE * output; /* the FILE * for the output */
7378 output = gen_debug_FILE_ptr(n_output, 0);
7381 xmlDebugDumpString(output, (const xmlChar *)str);
7383 des_debug_FILE_ptr(n_output, output, 0);
7443 FILE * output; /* the FILE * for the output */
7451 output = gen_debug_FILE_ptr(n_output, 0);
7454 xmlLsOneNode(output, node);
7456 des_debug_FILE_ptr(n_output, output, 0);
7480 static void des_char_ptr(int no ATTRIBUTE_UNUSED, char * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
7864 char * buffer; /* the output buffer */
8595 static void des_xmlCharEncodingHandler_ptr(int no ATTRIBUTE_UNUSED, xmlCharEncodingHandler * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
8638 xmlBufferPtr out; /* an xmlBuffer for the output. */
8684 xmlBufferPtr out; /* an xmlBuffer for the output. */
8730 xmlBufferPtr out; /* an xmlBuffer for the output. */
9022 static void des_xmlCharEncodingHandlerPtr(int no ATTRIBUTE_UNUSED, xmlCharEncodingHandlerPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
9249 static void des_xmlEntitiesTablePtr(int no ATTRIBUTE_UNUSED, xmlEntitiesTablePtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
9315 static void des_xmlEntityPtr(int no ATTRIBUTE_UNUSED, xmlEntityPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
10590 static void des_xmlLinkPtr(int no ATTRIBUTE_UNUSED, xmlLinkPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
10698 static void des_const_xmlListPtr(int no ATTRIBUTE_UNUSED, const xmlListPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
12117 static void des_char_ptr_ptr(int no ATTRIBUTE_UNUSED, char ** val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
13055 static void des_const_char_ptr_ptr(int no ATTRIBUTE_UNUSED, const char ** val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
13066 int * len; /* the length of the features name array (input/output) */
13275 int val; /* int 0 or 1 */
13280 val = gen_int(n_val, 0);
13282 ret_val = xmlKeepBlanksDefault(val);
13285 des_int(n_val, val, 0);
13307 int val; /* int 0 or 1 */
13312 val = gen_int(n_val, 0);
13314 ret_val = xmlLineNumbersDefault(val);
13317 des_int(n_val, val, 0);
13455 static void des_xmlNodePtr_ptr(int no ATTRIBUTE_UNUSED, xmlNodePtr * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
14128 static void des_const_xmlParserNodeInfoPtr(int no ATTRIBUTE_UNUSED, const xmlParserNodeInfoPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
14172 static void des_const_xmlParserCtxtPtr(int no ATTRIBUTE_UNUSED, const xmlParserCtxtPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
14179 static void des_const_xmlNodePtr(int no ATTRIBUTE_UNUSED, const xmlNodePtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
14225 static void des_const_xmlParserNodeInfoSeqPtr(int no ATTRIBUTE_UNUSED, const xmlParserNodeInfoSeqPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
14271 static void des_xmlParserInputPtr(int no ATTRIBUTE_UNUSED, xmlParserInputPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
14358 int val; /* int 0 or 1 */
14363 val = gen_int(n_val, 0);
14365 ret_val = xmlPedanticParserDefault(val);
14368 des_int(n_val, val, 0);
15292 int val; /* int 0 or 1 */
15297 val = gen_int(n_val, 0);
15299 ret_val = xmlSubstituteEntitiesDefault(val);
15302 des_int(n_val, val, 0);
15712 int val; /* the char value */
15721 val = gen_int(n_val, 2);
15723 ret_val = xmlCopyChar(len, out, val);
15728 des_int(n_val, val, 2);
15756 int val; /* the char value */
15763 val = gen_int(n_val, 1);
15765 ret_val = xmlCopyCharMultiByte(out, val);
15769 des_int(n_val, val, 1);
16942 static void des_xmlStreamCtxtPtr(int no ATTRIBUTE_UNUSED, xmlStreamCtxtPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
17193 static void des_xmlRelaxNGPtr(int no ATTRIBUTE_UNUSED, xmlRelaxNGPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
17204 FILE * output; /* the file output */
17212 output = gen_FILE_ptr(n_output, 0);
17215 xmlRelaxNGDump(output, schema);
17217 des_FILE_ptr(n_output, output, 0);
17243 FILE * output; /* the file output */
17251 output = gen_FILE_ptr(n_output, 0);
17254 xmlRelaxNGDumpTree(output, schema);
17256 des_FILE_ptr(n_output, output, 0);
17281 static void des_xmlRelaxNGParserCtxtPtr(int no ATTRIBUTE_UNUSED, xmlRelaxNGParserCtxtPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
17291 static void des_xmlRelaxNGValidityErrorFunc_ptr(int no ATTRIBUTE_UNUSED, xmlRelaxNGValidityErrorFunc * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
17301 static void des_xmlRelaxNGValidityWarningFunc_ptr(int no ATTRIBUTE_UNUSED, xmlRelaxNGValidityWarningFunc * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
17311 static void des_void_ptr_ptr(int no ATTRIBUTE_UNUSED, void ** val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
17376 static void des_xmlRelaxNGValidCtxtPtr(int no ATTRIBUTE_UNUSED, xmlRelaxNGValidCtxtPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
17981 static void des_xmlSchematronPtr(int no ATTRIBUTE_UNUSED, xmlSchematronPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
18001 static void des_xmlSchematronParserCtxtPtr(int no ATTRIBUTE_UNUSED, xmlSchematronParserCtxtPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
18021 static void des_xmlSchematronValidCtxtPtr(int no ATTRIBUTE_UNUSED, xmlSchematronValidCtxtPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
18292 xmlBufferPtr buf; /* the XML buffer output */
18514 static void des_const_xmlBufferPtr(int no ATTRIBUTE_UNUSED, const xmlBufferPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
18852 xmlBufferPtr buf; /* the XML buffer output */
18889 xmlBufferPtr buf; /* the XML buffer output */
19325 static void des_xmlDOMWrapCtxtPtr(int no ATTRIBUTE_UNUSED, xmlDOMWrapCtxtPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
20052 FILE * f; /* the FILE * for the output */
21880 xmlBufferPtr buf; /* the XML buffer output */
21941 xmlOutputBufferPtr buf; /* the XML buffer output */
22471 int val; /* the xml:space value ("0": default, 1: "preserve") */
22478 val = gen_int(n_val, 1);
22480 xmlNodeSetSpacePreserve(cur, val);
22483 des_int(n_val, val, 1);
22722 xmlOutputBufferPtr buf; /* an output I/O buffer */
22819 const char * filename; /* the filename or URL to output */
22874 xmlOutputBufferPtr buf; /* an output I/O buffer */
24087 static void des_xmlURIPtr(int no ATTRIBUTE_UNUSED, xmlURIPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
24166 FILE * stream; /* a FILE* for the output */
24517 static void des_xmlAttributeTablePtr(int no ATTRIBUTE_UNUSED, xmlAttributeTablePtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
24605 static void des_xmlElementTablePtr(int no ATTRIBUTE_UNUSED, xmlElementTablePtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
24632 static void des_xmlNotationTablePtr(int no ATTRIBUTE_UNUSED, xmlNotationTablePtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
24659 static void des_xmlAttributePtr(int no ATTRIBUTE_UNUSED, xmlAttributePtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
24668 xmlBufferPtr buf; /* the XML buffer output */
24707 xmlBufferPtr buf; /* the XML buffer output */
24744 static void des_xmlElementPtr(int no ATTRIBUTE_UNUSED, xmlElementPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
24753 xmlBufferPtr buf; /* the XML buffer output */
24792 xmlBufferPtr buf; /* the XML buffer output */
24829 static void des_xmlNotationPtr(int no ATTRIBUTE_UNUSED, xmlNotationPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
24838 xmlBufferPtr buf; /* the XML buffer output */
24877 xmlBufferPtr buf; /* the XML buffer output */
25463 char * buf; /* an output buffer */
25516 char * buf; /* an output buffer */
25664 static void des_xmlElementContent_ptr(int no ATTRIBUTE_UNUSED, xmlElementContent * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
27011 static void des_xmlXIncludeCtxtPtr(int no ATTRIBUTE_UNUSED, xmlXIncludeCtxtPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
28074 xmlOutputBufferPtr out; /* a buffered output */
28108 xmlOutputBufferPtr out; /* a buffered parser output */
28166 xmlOutputBufferPtr out; /* a buffered parser output */
28698 static void des_xmlAutomataPtr(int no ATTRIBUTE_UNUSED, xmlAutomataPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
28762 static void des_xmlAutomataStatePtr(int no ATTRIBUTE_UNUSED, xmlAutomataStatePtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
29018 static void des_xmlGenericErrorFunc_ptr(int no ATTRIBUTE_UNUSED, xmlGenericErrorFunc * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
29055 static void des_xmlErrorPtr(int no ATTRIBUTE_UNUSED, xmlErrorPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
29342 static void des_xmlModulePtr(int no ATTRIBUTE_UNUSED, xmlModulePtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
30707 static void des_xmlTextReaderErrorFunc_ptr(int no ATTRIBUTE_UNUSED, xmlTextReaderErrorFunc * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
31144 static void des_xmlTextReaderLocatorPtr(int no ATTRIBUTE_UNUSED, xmlTextReaderLocatorPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
32066 static void des_xmlSchemaValidCtxtPtr(int no ATTRIBUTE_UNUSED, xmlSchemaValidCtxtPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
32182 static void des_xmlSchemaPtr(int no ATTRIBUTE_UNUSED, xmlSchemaPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
32562 xmlBufferPtr buf; /* a buffer to receive the output */
32938 static void des_xmlRegExecCtxtPtr(int no ATTRIBUTE_UNUSED, xmlRegExecCtxtPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
33182 static void des_xmlRegexpPtr(int no ATTRIBUTE_UNUSED, xmlRegexpPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
33288 FILE * output; /* the file for the output debug */
33296 output = gen_FILE_ptr(n_output, 0);
33299 xmlRegexpPrint(output, regexp);
33301 des_FILE_ptr(n_output, output, 0);
33362 static void des_xmlSaveCtxtPtr(int no ATTRIBUTE_UNUSED, xmlSaveCtxtPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
33592 FILE * output; /* the file output */
33600 output = gen_FILE_ptr(n_output, 0);
33603 xmlSchemaDump(output, schema);
33605 des_FILE_ptr(n_output, output, 0);
33630 static void des_xmlSchemaParserCtxtPtr(int no ATTRIBUTE_UNUSED, xmlSchemaParserCtxtPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
33640 static void des_xmlSchemaValidityErrorFunc_ptr(int no ATTRIBUTE_UNUSED, xmlSchemaValidityErrorFunc * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
33650 static void des_xmlSchemaValidityWarningFunc_ptr(int no ATTRIBUTE_UNUSED, xmlSchemaValidityWarningFunc * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
33933 static void des_xmlSAXHandlerPtr_ptr(int no ATTRIBUTE_UNUSED, xmlSAXHandlerPtr * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
33953 static void des_xmlSchemaSAXPlugPtr(int no ATTRIBUTE_UNUSED, xmlSchemaSAXPlugPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
34335 static void des_xmlSchemaFacetPtr(int no ATTRIBUTE_UNUSED, xmlSchemaFacetPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
34345 static void des_xmlSchemaTypePtr(int no ATTRIBUTE_UNUSED, xmlSchemaTypePtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
34461 static void des_xmlSchemaValPtr(int no ATTRIBUTE_UNUSED, xmlSchemaValPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
34638 xmlSchemaValPtr val; /* the precomputed value */
34646 val = gen_xmlSchemaValPtr(n_val, 0);
34649 ret_val = xmlSchemaGetCanonValue(val, (const xmlChar **)retValue);
34652 des_xmlSchemaValPtr(n_val, val, 0);
34679 xmlSchemaValPtr val; /* the precomputed value */
34690 val = gen_xmlSchemaValPtr(n_val, 0);
34694 ret_val = xmlSchemaGetCanonValueWhtsp(val, (const xmlChar **)retValue, ws);
34697 des_xmlSchemaValPtr(n_val, val, 0);
34802 xmlSchemaValPtr val; /* a schemas value */
34807 val = gen_xmlSchemaValPtr(n_val, 0);
34809 ret_val = xmlSchemaGetValType(val);
34812 des_xmlSchemaValPtr(n_val, val, 0);
34932 static void des_xmlSchemaValPtr_ptr(int no ATTRIBUTE_UNUSED, xmlSchemaValPtr * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
34948 xmlSchemaValPtr * val; /* the return computed value */
34960 val = gen_xmlSchemaValPtr_ptr(n_val, 2);
34963 ret_val = xmlSchemaValPredefTypeNode(type, (const xmlChar *)value, val, node);
34968 des_xmlSchemaValPtr_ptr(n_val, val, 2);
35003 xmlSchemaValPtr * val; /* the return computed value */
35015 val = gen_xmlSchemaValPtr_ptr(n_val, 2);
35018 ret_val = xmlSchemaValPredefTypeNodeNoNorm(type, (const xmlChar *)value, val, node);
35023 des_xmlSchemaValPtr_ptr(n_val, val, 2);
35060 xmlSchemaValPtr val; /* the precomputed value */
35071 val = gen_xmlSchemaValPtr(n_val, 3);
35073 ret_val = xmlSchemaValidateFacet(base, facet, (const xmlChar *)value, val);
35079 des_xmlSchemaValPtr(n_val, val, 3);
35117 xmlSchemaValPtr val; /* the precomputed value */
35133 val = gen_xmlSchemaValPtr(n_val, 4);
35136 ret_val = xmlSchemaValidateFacetWhtsp(facet, fws, valType, (const xmlChar *)value, val, ws);
35143 des_xmlSchemaValPtr(n_val, val, 4);
35184 xmlSchemaValPtr val; /* the precomputed value */
35198 val = gen_xmlSchemaValPtr(n_val, 3);
35201 ret_val = xmlSchemaValidateLengthFacet(type, facet, (const xmlChar *)value, val, length);
35207 des_xmlSchemaValPtr(n_val, val, 3);
35246 xmlSchemaValPtr val; /* the precomputed value */
35263 val = gen_xmlSchemaValPtr(n_val, 3);
35267 ret_val = xmlSchemaValidateLengthFacetWhtsp(facet, valType, (const xmlChar *)value, val, length, ws);
35273 des_xmlSchemaValPtr(n_val, val, 3);
35368 xmlSchemaValPtr * val; /* the return computed value */
35377 val = gen_xmlSchemaValPtr_ptr(n_val, 2);
35379 ret_val = xmlSchemaValidatePredefinedType(type, (const xmlChar *)value, val);
35384 des_xmlSchemaValPtr_ptr(n_val, val, 2);
35453 xmlSchemaValPtr val; /* the value */
35458 val = gen_xmlSchemaValPtr(n_val, 0);
35460 ret_val = xmlSchemaValueGetAsBoolean(val);
35463 des_xmlSchemaValPtr(n_val, val, 0);
35487 xmlSchemaValPtr val; /* the value */
35492 val = gen_xmlSchemaValPtr(n_val, 0);
35494 ret_val = xmlSchemaValueGetAsString(val);
35497 des_xmlSchemaValPtr(n_val, val, 0);
35894 xmlChar * val; /* the xmlChar to search (needle) */
35901 val = gen_xmlChar_ptr(n_val, 1);
35903 ret_val = xmlStrcasestr((const xmlChar *)str, val);
35907 des_xmlChar_ptr(n_val, val, 1);
35933 xmlChar val; /* the xmlChar to search */
35940 val = gen_xmlChar(n_val, 1);
35942 ret_val = xmlStrchr((const xmlChar *)str, val);
35946 des_xmlChar(n_val, val, 1);
36252 xmlChar * val; /* the xmlChar to search (needle) */
36259 val = gen_const_xmlChar_ptr(n_val, 1);
36261 ret_val = xmlStrstr((const xmlChar *)str, (const xmlChar *)val);
36265 des_const_xmlChar_ptr(n_val, (const xmlChar *)val, 1);
42548 const char * uri; /* the URI of the resource for the output */
42550 int compression; /* compress the output? */
42591 int compression; /* compress the output? */
42632 int compression; /* compress the output? */
42676 int compression; /* compress the output? */
45156 int val; /* a boolean */
45161 val = gen_int(n_val, 0);
45163 ret_val = xmlXPathCastBooleanToNumber(val);
45166 des_int(n_val, val, 0);
45190 int val; /* a boolean */
45195 val = gen_int(n_val, 0);
45197 ret_val = xmlXPathCastBooleanToString(val);
45200 des_int(n_val, val, 0);
45394 double val; /* a number */
45399 val = gen_double(n_val, 0);
45401 ret_val = xmlXPathCastNumberToBoolean(val);
45404 des_double(n_val, val, 0);
45428 double val; /* a number */
45433 val = gen_double(n_val, 0);
45435 ret_val = xmlXPathCastNumberToString(val);
45438 des_double(n_val, val, 0);
45462 xmlChar * val; /* a string */
45467 val = gen_const_xmlChar_ptr(n_val, 0);
45469 ret_val = xmlXPathCastStringToBoolean((const xmlChar *)val);
45472 des_const_xmlChar_ptr(n_val, (const xmlChar *)val, 0);
45496 xmlChar * val; /* a string */
45501 val = gen_const_xmlChar_ptr(n_val, 0);
45503 ret_val = xmlXPathCastStringToNumber((const xmlChar *)val);
45506 des_const_xmlChar_ptr(n_val, (const xmlChar *)val, 0);
45530 xmlXPathObjectPtr val; /* an XPath object */
45535 val = gen_xmlXPathObjectPtr(n_val, 0);
45537 ret_val = xmlXPathCastToBoolean(val);
45540 des_xmlXPathObjectPtr(n_val, val, 0);
45564 xmlXPathObjectPtr val; /* an XPath object */
45569 val = gen_xmlXPathObjectPtr(n_val, 0);
45571 ret_val = xmlXPathCastToNumber(val);
45574 des_xmlXPathObjectPtr(n_val, val, 0);
45598 xmlXPathObjectPtr val; /* an XPath object */
45603 val = gen_xmlXPathObjectPtr(n_val, 0);
45605 ret_val = xmlXPathCastToString(val);
45608 des_xmlXPathObjectPtr(n_val, val, 0);
45681 static void des_xmlXPathCompExprPtr(int no ATTRIBUTE_UNUSED, xmlXPathCompExprPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
45691 static void des_xmlXPathContextPtr(int no ATTRIBUTE_UNUSED, xmlXPathContextPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
45840 xmlXPathObjectPtr val; /* an XPath object */
45845 val = gen_xmlXPathObjectPtr(n_val, 0);
45847 ret_val = xmlXPathConvertBoolean(val);
45848 val = NULL;
45851 des_xmlXPathObjectPtr(n_val, val, 0);
45875 xmlXPathObjectPtr val; /* an XPath object */
45880 val = gen_xmlXPathObjectPtr(n_val, 0);
45882 ret_val = xmlXPathConvertNumber(val);
45883 val = NULL;
45886 des_xmlXPathObjectPtr(n_val, val, 0);
45910 xmlXPathObjectPtr val; /* an XPath object */
45915 val = gen_xmlXPathObjectPtr(n_val, 0);
45917 ret_val = xmlXPathConvertString(val);
45918 val = NULL;
45921 des_xmlXPathObjectPtr(n_val, val, 0);
46103 double val; /* a double value */
46108 val = gen_double(n_val, 0);
46110 ret_val = xmlXPathIsInf(val);
46113 des_double(n_val, val, 0);
46137 double val; /* a double value */
46142 val = gen_double(n_val, 0);
46144 ret_val = xmlXPathIsNaN(val);
46147 des_double(n_val, val, 0);
46181 xmlNodePtr val; /* an initial xmlNodePtr, or NULL */
46186 val = gen_xmlNodePtr(n_val, 0);
46188 ret_val = xmlXPathNodeSetCreate(val);
46191 des_xmlNodePtr(n_val, val, 0);
46215 xmlXPathObjectPtr val; /* the original object */
46220 val = gen_xmlXPathObjectPtr(n_val, 0);
46222 ret_val = xmlXPathObjectCopy(val);
46225 des_xmlXPathObjectPtr(n_val, val, 0);
46324 static void des_xmlXPathParserContextPtr(int no ATTRIBUTE_UNUSED, xmlXPathParserContextPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
46685 FILE * output; /* the FILE * for the output */
46696 output = gen_FILE_ptr(n_output, 0);
46700 xmlXPathDebugDumpCompExpr(output, comp, depth);
46702 des_FILE_ptr(n_output, output, 0);
46731 FILE * output; /* the FILE * to dump the output */
46742 output = gen_FILE_ptr(n_output, 0);
46746 xmlXPathDebugDumpObject(output, cur, depth);
46748 des_FILE_ptr(n_output, output, 0);
47620 int val; /* the boolean value */
47625 val = gen_int(n_val, 0);
47627 ret_val = xmlXPathNewBoolean(val);
47630 des_int(n_val, val, 0);
47654 char * val; /* the char * value */
47659 val = gen_const_char_ptr(n_val, 0);
47661 ret_val = xmlXPathNewCString((const char *)val);
47664 des_const_char_ptr(n_val, (const char *)val, 0);
47688 double val; /* the double value */
47693 val = gen_double(n_val, 0);
47695 ret_val = xmlXPathNewFloat(val);
47698 des_double(n_val, val, 0);
47722 xmlNodePtr val; /* the NodePtr value */
47727 val = gen_xmlNodePtr(n_val, 0);
47729 ret_val = xmlXPathNewNodeSet(val);
47732 des_xmlNodePtr(n_val, val, 0);
47756 xmlNodeSetPtr val; /* an existing NodeSet */
47761 val = gen_xmlNodeSetPtr(n_val, 0);
47763 ret_val = xmlXPathNewNodeSetList(val);
47766 des_xmlNodeSetPtr(n_val, val, 0);
47800 xmlChar * val; /* the xmlChar * value */
47805 val = gen_const_xmlChar_ptr(n_val, 0);
47807 ret_val = xmlXPathNewString((const xmlChar *)val);
47810 des_const_xmlChar_ptr(n_val, (const xmlChar *)val, 0);
48450 xmlNodePtr val; /* a new xmlNodePtr */
48457 val = gen_xmlNodePtr(n_val, 1);
48459 xmlXPathNodeSetAdd(cur, val);
48462 des_xmlNodePtr(n_val, val, 1);
48535 xmlNodePtr val; /* a new xmlNodePtr */
48542 val = gen_xmlNodePtr(n_val, 1);
48544 xmlXPathNodeSetAddUnique(cur, val);
48547 des_xmlNodePtr(n_val, val, 1);
48575 xmlNodePtr val; /* the node */
48582 val = gen_xmlNodePtr(n_val, 1);
48584 ret_val = xmlXPathNodeSetContains(cur, val);
48588 des_xmlNodePtr(n_val, val, 1);
48615 xmlNodePtr val; /* an xmlNodePtr */
48622 val = gen_xmlNodePtr(n_val, 1);
48624 xmlXPathNodeSetDel(cur, val);
48627 des_xmlNodePtr(n_val, val, 1);
48695 int val; /* the index to remove */
48702 val = gen_int(n_val, 1);
48704 xmlXPathNodeSetRemove(cur, val);
48707 des_int(n_val, val, 1);
50326 char * val; /* the char * value */
50331 val = gen_char_ptr(n_val, 0);
50333 ret_val = xmlXPathWrapCString(val);
50336 des_char_ptr(n_val, val, 0);
50360 void * val; /* the user data */
50365 val = gen_void_ptr(n_val, 0);
50367 ret_val = xmlXPathWrapExternal(val);
50370 des_void_ptr(n_val, val, 0);
50394 xmlNodeSetPtr val; /* the NodePtr value */
50399 val = gen_xmlNodeSetPtr(n_val, 0);
50401 ret_val = xmlXPathWrapNodeSet(val);
50404 des_xmlNodeSetPtr(n_val, val, 0);
50709 static void des_xmlLocationSetPtr(int no ATTRIBUTE_UNUSED, xmlLocationSetPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
50722 xmlXPathObjectPtr val; /* a new xmlXPathObjectPtr */
50729 val = gen_xmlXPathObjectPtr(n_val, 1);
50731 xmlXPtrLocationSetAdd(cur, val);
50734 des_xmlXPathObjectPtr(n_val, val, 1);
50771 xmlXPathObjectPtr val; /* an xmlXPathObjectPtr */
50778 val = gen_xmlXPathObjectPtr(n_val, 1);
50780 xmlXPtrLocationSetDel(cur, val);
50783 des_xmlXPathObjectPtr(n_val, val, 1);
50820 int val; /* the index to remove */
50827 val = gen_int(n_val, 1);
50829 xmlXPtrLocationSetRemove(cur, val);
50832 des_int(n_val, val, 1);
51276 xmlLocationSetPtr val; /* the LocationSet value */
51281 val = gen_xmlLocationSetPtr(n_val, 0);
51283 ret_val = xmlXPtrWrapLocationSet(val);
51286 des_xmlLocationSetPtr(n_val, val, 0);