Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(388)

Side by Side Diff: third_party/libxml/src/include/libxml/parserInternals.h

Issue 2010803004: Roll libxml to bdec2183f34b37ee89ae1d330c6ad2bb4d76605f (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update README.chromium Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/libxml/src/error.c ('k') | third_party/libxml/src/include/libxml/xmlerror.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Summary: internals routines and limits exported by the parser. 2 * Summary: internals routines and limits exported by the parser.
3 * Description: this module exports a number of internal parsing routines 3 * Description: this module exports a number of internal parsing routines
4 * they are not really all intended for applications but 4 * they are not really all intended for applications but
5 * can prove useful doing low level processing. 5 * can prove useful doing low level processing.
6 * 6 *
7 * Copy: See Copyright for the status of this software. 7 * Copy: See Copyright for the status of this software.
8 * 8 *
9 * Author: Daniel Veillard 9 * Author: Daniel Veillard
10 */ 10 */
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 xmlParserInputPtr input, 344 xmlParserInputPtr input,
345 xmlCharEncodingHandlerPtr handler); 345 xmlCharEncodingHandlerPtr handler);
346 346
347 #ifdef IN_LIBXML 347 #ifdef IN_LIBXML
348 /* internal error reporting */ 348 /* internal error reporting */
349 XMLPUBFUN void XMLCALL 349 XMLPUBFUN void XMLCALL
350 __xmlErrEncoding (xmlParserCtxtPtr ctxt, 350 __xmlErrEncoding (xmlParserCtxtPtr ctxt,
351 xmlParserErrors xmlerr, 351 xmlParserErrors xmlerr,
352 const char *msg, 352 const char *msg,
353 const xmlChar * str1, 353 const xmlChar * str1,
354 » » » » » » const xmlChar * str2); 354 » » » » » » const xmlChar * str2) LIBXML_AT TR_FORMAT(3,0);
355 #endif 355 #endif
356 356
357 /** 357 /**
358 * Input Streams. 358 * Input Streams.
359 */ 359 */
360 XMLPUBFUN xmlParserInputPtr XMLCALL 360 XMLPUBFUN xmlParserInputPtr XMLCALL
361 xmlNewStringInputStream (xmlParserCtxtPtr ctxt, 361 xmlNewStringInputStream (xmlParserCtxtPtr ctxt,
362 const xmlChar *buffer); 362 const xmlChar *buffer);
363 XMLPUBFUN xmlParserInputPtr XMLCALL 363 XMLPUBFUN xmlParserInputPtr XMLCALL
364 xmlNewEntityInputStream (xmlParserCtxtPtr ctxt, 364 xmlNewEntityInputStream (xmlParserCtxtPtr ctxt,
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 */ 635 */
636 XMLPUBFUN void XMLCALL 636 XMLPUBFUN void XMLCALL
637 xmlErrMemory (xmlParserCtxtPtr ctxt, 637 xmlErrMemory (xmlParserCtxtPtr ctxt,
638 const char *extra); 638 const char *extra);
639 #endif 639 #endif
640 640
641 #ifdef __cplusplus 641 #ifdef __cplusplus
642 } 642 }
643 #endif 643 #endif
644 #endif /* __XML_PARSER_INTERNALS_H__ */ 644 #endif /* __XML_PARSER_INTERNALS_H__ */
OLDNEW
« no previous file with comments | « third_party/libxml/src/error.c ('k') | third_party/libxml/src/include/libxml/xmlerror.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698