Lines Matching defs:_xmlParserInput
52 struct _xmlParserInput { struct
54 xmlParserInputBufferPtr buf; /* UTF-8 encoded buffer */
56 const char *filename; /* The file analyzed, if any */
57 const char *directory; /* the directory/base of the file */
58 const xmlChar *base; /* Base of the array to parse */
59 const xmlChar *cur; /* Current char being parsed */
60 const xmlChar *end; /* end of the array to parse */
61 int length; /* length if known */
62 int line; /* Current line */
63 int col; /* Current column */
64 unsigned long consumed; /* How many xmlChars already consumed */
65 xmlParserInputDeallocate free; /* function to deallocate the base */
66 const xmlChar *encoding; /* the encoding string for entity */
67 const xmlChar *version; /* the version string for entity */
68 int standalone; /* Was that entity marked standalone */
69 int id; /* an unique identifier for the entity */
70 unsigned long parentConsumed; /* consumed bytes from parents */
71 xmlEntityPtr entity; /* entity, if any */