亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? parser.h

?? 下載來的一個看圖軟件的源代碼
?? H
?? 第 1 頁 / 共 2 頁
字號:
/* * parser.h : Interfaces, constants and types related to the XML parser. * * See Copyright for the status of this software. * * daniel@veillard.com */#ifndef __XML_PARSER_H__#define __XML_PARSER_H__#include <libxml/tree.h>#include <libxml/valid.h>#include <libxml/entities.h>#ifdef __cplusplusextern "C" {#endif/** * XML_DEFAULT_VERSION: * * The default version of XML used: 1.0 */#define XML_DEFAULT_VERSION	"1.0"/** * xmlParserInput: * * An xmlParserInput is an input flow for the XML processor. * Each entity parsed is associated an xmlParserInput (except the * few predefined ones). This is the case both for internal entities * - in which case the flow is already completely in memory - or * external entities - in which case we use the buf structure for * progressive reading and I18N conversions to the internal UTF-8 format. *//** * xmlParserInputDeallocate: * @str:  the string to deallocate * * Callback for freeing some parser input allocations. */typedef void (* xmlParserInputDeallocate)(xmlChar *str);struct _xmlParserInput {    /* Input buffer */    xmlParserInputBufferPtr buf;      /* UTF-8 encoded buffer */    const char *filename;             /* The file analyzed, if any */    const char *directory;            /* the directory/base of the file */    const xmlChar *base;              /* Base of the array to parse */    const xmlChar *cur;               /* Current char being parsed */    const xmlChar *end;               /* end of the array to parse */    int length;                       /* length if known */    int line;                         /* Current line */    int col;                          /* Current column */    int consumed;                     /* How many xmlChars already consumed */    xmlParserInputDeallocate free;    /* function to deallocate the base */    const xmlChar *encoding;          /* the encoding string for entity */    const xmlChar *version;           /* the version string for entity */    int standalone;                   /* Was that entity marked standalone */};/** * xmlParserNodeInfo: * * The parser can be asked to collect Node informations, i.e. at what * place in the file they were detected.  * NOTE: This is off by default and not very well tested. */typedef struct _xmlParserNodeInfo xmlParserNodeInfo;typedef xmlParserNodeInfo *xmlParserNodeInfoPtr;struct _xmlParserNodeInfo {  const struct _xmlNode* node;  /* Position & line # that text that created the node begins & ends on */  unsigned long begin_pos;  unsigned long begin_line;  unsigned long end_pos;  unsigned long end_line;};typedef struct _xmlParserNodeInfoSeq xmlParserNodeInfoSeq;typedef xmlParserNodeInfoSeq *xmlParserNodeInfoSeqPtr;struct _xmlParserNodeInfoSeq {  unsigned long maximum;  unsigned long length;  xmlParserNodeInfo* buffer;};/** * xmlParserInputState: * * The parser is now working also as a state based parser. * The recursive one use the state info for entities processing. */typedef enum {    XML_PARSER_EOF = -1,	/* nothing is to be parsed */    XML_PARSER_START = 0,	/* nothing has been parsed */    XML_PARSER_MISC,		/* Misc* before int subset */    XML_PARSER_PI,		/* Within a processing instruction */    XML_PARSER_DTD,		/* within some DTD content */    XML_PARSER_PROLOG,		/* Misc* after internal subset */    XML_PARSER_COMMENT,		/* within a comment */    XML_PARSER_START_TAG,	/* within a start tag */    XML_PARSER_CONTENT,		/* within the content */    XML_PARSER_CDATA_SECTION,	/* within a CDATA section */    XML_PARSER_END_TAG,		/* within a closing tag */    XML_PARSER_ENTITY_DECL,	/* within an entity declaration */    XML_PARSER_ENTITY_VALUE,	/* within an entity value in a decl */    XML_PARSER_ATTRIBUTE_VALUE,	/* within an attribute value */    XML_PARSER_SYSTEM_LITERAL,	/* within a SYSTEM value */    XML_PARSER_EPILOG, 		/* the Misc* after the last end tag */    XML_PARSER_IGNORE,		/* within an IGNORED section */    XML_PARSER_PUBLIC_LITERAL 	/* within a PUBLIC value */} xmlParserInputState;/** * XML_DETECT_IDS: * * Bit in the loadsubset context field to tell to do ID/REFs lookups. * Use it to initialize xmlLoadExtDtdDefaultValue. */#define XML_DETECT_IDS		2/** * XML_COMPLETE_ATTRS: * * Bit in the loadsubset context field to tell to do complete the * elements attributes lists with the ones defaulted from the DTDs. * Use it to initialize xmlLoadExtDtdDefaultValue. */#define XML_COMPLETE_ATTRS	4/** * xmlParserCtxt: * * The parser context. * NOTE This doesn't completely define the parser state, the (current ?) *      design of the parser uses recursive function calls since this allow *      and easy mapping from the production rules of the specification *      to the actual code. The drawback is that the actual function call *      also reflect the parser state. However most of the parsing routines *      takes as the only argument the parser context pointer, so migrating *      to a state based parser for progressive parsing shouldn't be too hard. */struct _xmlParserCtxt {    struct _xmlSAXHandler *sax;       /* The SAX handler */    void            *userData;        /* For SAX interface only, used by DOM build */    xmlDocPtr           myDoc;        /* the document being built */    int            wellFormed;        /* is the document well formed */    int       replaceEntities;        /* shall we replace entities ? */    const xmlChar    *version;        /* the XML version string */    const xmlChar   *encoding;        /* the declared encoding, if any */    int            standalone;        /* standalone document */    int                  html;        /* an HTML(1)/Docbook(2) document */    /* Input stream stack */    xmlParserInputPtr  input;         /* Current input stream */    int                inputNr;       /* Number of current input streams */    int                inputMax;      /* Max number of input streams */    xmlParserInputPtr *inputTab;      /* stack of inputs */    /* Node analysis stack only used for DOM building */    xmlNodePtr         node;          /* Current parsed Node */    int                nodeNr;        /* Depth of the parsing stack */    int                nodeMax;       /* Max depth of the parsing stack */    xmlNodePtr        *nodeTab;       /* array of nodes */    int record_info;                  /* Whether node info should be kept */    xmlParserNodeInfoSeq node_seq;    /* info about each node parsed */    int errNo;                        /* error code */    int     hasExternalSubset;        /* reference and external subset */    int             hasPErefs;        /* the internal subset has PE refs */    int              external;        /* are we parsing an external entity */    int                 valid;        /* is the document valid */    int              validate;        /* shall we try to validate ? */    xmlValidCtxt        vctxt;        /* The validity context */    xmlParserInputState instate;      /* current type of input */    int                 token;        /* next char look-ahead */        char           *directory;        /* the data directory */    /* Node name stack */    xmlChar           *name;          /* Current parsed Node */    int                nameNr;        /* Depth of the parsing stack */    int                nameMax;       /* Max depth of the parsing stack */    xmlChar *         *nameTab;       /* array of nodes */    long               nbChars;       /* number of xmlChar processed */    long            checkIndex;       /* used by progressive parsing lookup */    int             keepBlanks;       /* ugly but ... */    int             disableSAX;       /* SAX callbacks are disabled */    int               inSubset;       /* Parsing is in int 1/ext 2 subset */    xmlChar *          intSubName;    /* name of subset */    xmlChar *          extSubURI;     /* URI of external subset */    xmlChar *          extSubSystem;  /* SYSTEM ID of external subset */    /* xml:space values */    int *              space;         /* Should the parser preserve spaces */    int                spaceNr;       /* Depth of the parsing stack */    int                spaceMax;      /* Max depth of the parsing stack */    int *              spaceTab;      /* array of space infos */    int                depth;         /* to prevent entity substitution loops */    xmlParserInputPtr  entity;        /* used to check entities boundaries */    int                charset;       /* encoding of the in-memory content				         actually an xmlCharEncoding */    int                nodelen;       /* Those two fields are there to */    int                nodemem;       /* Speed up large node parsing */    int                pedantic;      /* signal pedantic warnings */    void              *_private;      /* For user data, libxml won't touch it */    int                loadsubset;    /* should the external subset be loaded */    int                linenumbers;   /* set line number in element content */    void              *catalogs;       /* document's own catalog */};/** * xmlSAXLocator: * * A SAX Locator. */struct _xmlSAXLocator {    const xmlChar *(*getPublicId)(void *ctx);    const xmlChar *(*getSystemId)(void *ctx);    int (*getLineNumber)(void *ctx);    int (*getColumnNumber)(void *ctx);};/** * xmlSAXHandler: * * A SAX handler is bunch of callbacks called by the parser when processing * of the input generate data or structure informations. *//** * resolveEntitySAXFunc: * @ctx:  the user data (XML parser context) * @publicId: The public ID of the entity * @systemId: The system ID of the entity * * Callback: * The entity loader, to control the loading of external entities, * the application can either: *    - override this resolveEntity() callback in the SAX block *    - or better use the xmlSetExternalEntityLoader() function to *      set up it's own entity resolution routine * * Returns the xmlParserInputPtr if inlined or NULL for DOM behaviour. */typedef xmlParserInputPtr (*resolveEntitySAXFunc) (void *ctx,				const xmlChar *publicId,				const xmlChar *systemId);/** * internalSubsetSAXFunc: * @ctx:  the user data (XML parser context) * @name:  the root element name * @ExternalID:  the external ID * @SystemID:  the SYSTEM ID (e.g. filename or URL) * * Callback on internal subset declaration. */typedef void (*internalSubsetSAXFunc) (void *ctx,				const xmlChar *name,				const xmlChar *ExternalID,				const xmlChar *SystemID);/** * externalSubsetSAXFunc: * @ctx:  the user data (XML parser context) * @name:  the root element name * @ExternalID:  the external ID * @SystemID:  the SYSTEM ID (e.g. filename or URL) * * Callback on external subset declaration. */typedef void (*externalSubsetSAXFunc) (void *ctx,				const xmlChar *name,				const xmlChar *ExternalID,				const xmlChar *SystemID);/** * getEntitySAXFunc: * @ctx:  the user data (XML parser context) * @name: The entity name * * Get an entity by name. * * Returns the xmlEntityPtr if found. */typedef xmlEntityPtr (*getEntitySAXFunc) (void *ctx,				const xmlChar *name);/** * getParameterEntitySAXFunc: * @ctx:  the user data (XML parser context) * @name: The entity name * * Get a parameter entity by name. * * Returns the xmlEntityPtr if found. */typedef xmlEntityPtr (*getParameterEntitySAXFunc) (void *ctx,				const xmlChar *name);/** * entityDeclSAXFunc: * @ctx:  the user data (XML parser context) * @name:  the entity name  * @type:  the entity type  * @publicId: The public ID of the entity * @systemId: The system ID of the entity * @content: the entity value (without processing). * * An entity definition has been parsed. */typedef void (*entityDeclSAXFunc) (void *ctx,				const xmlChar *name,				int type,				const xmlChar *publicId,				const xmlChar *systemId,				xmlChar *content);/** * notationDeclSAXFunc: * @ctx:  the user data (XML parser context) * @name: The name of the notation * @publicId: The public ID of the entity * @systemId: The system ID of the entity * * What to do when a notation declaration has been parsed. */typedef void (*notationDeclSAXFunc)(void *ctx,				const xmlChar *name,				const xmlChar *publicId,				const xmlChar *systemId);/** * attributeDeclSAXFunc: * @ctx:  the user data (XML parser context) * @elem:  the name of the element * @fullname:  the attribute name  * @type:  the attribute type  * @def:  the type of default value * @defaultValue: the attribute default value * @tree:  the tree of enumerated value set * * An attribute definition has been parsed. */typedef void (*attributeDeclSAXFunc)(void *ctx,				const xmlChar *elem,				const xmlChar *fullname,				int type,				int def,				const xmlChar *defaultValue,				xmlEnumerationPtr tree);/** * elementDeclSAXFunc: * @ctx:  the user data (XML parser context) * @name:  the element name  * @type:  the element type  * @content: the element value tree * * An element definition has been parsed. */typedef void (*elementDeclSAXFunc)(void *ctx,				const xmlChar *name,				int type,				xmlElementContentPtr content);/** * unparsedEntityDeclSAXFunc: * @ctx:  the user data (XML parser context) * @name: The name of the entity * @publicId: The public ID of the entity * @systemId: The system ID of the entity * @notationName: the name of the notation * * What to do when an unparsed entity declaration is parsed. */typedef void (*unparsedEntityDeclSAXFunc)(void *ctx,				const xmlChar *name,				const xmlChar *publicId,				const xmlChar *systemId,				const xmlChar *notationName);/** * setDocumentLocatorSAXFunc: * @ctx:  the user data (XML parser context) * @loc: A SAX Locator * * Receive the document locator at startup, actually xmlDefaultSAXLocator. * Everything is available on the context, so this is useless in our case. */typedef void (*setDocumentLocatorSAXFunc) (void *ctx,				xmlSAXLocatorPtr loc);/** * startDocumentSAXFunc: * @ctx:  the user data (XML parser context) * * Called when the document start being processed. */typedef void (*startDocumentSAXFunc) (void *ctx);/** * endDocumentSAXFunc: * @ctx:  the user data (XML parser context) * * Called when the document end has been detected. */typedef void (*endDocumentSAXFunc) (void *ctx);/** * startElementSAXFunc: * @ctx:  the user data (XML parser context) * @name:  The element name, including namespace prefix * @atts:  An array of name/value attributes pairs, NULL terminated * * Called when an opening tag has been processed. */typedef void (*startElementSAXFunc) (void *ctx,				const xmlChar *name,				const xmlChar **atts);/** * endElementSAXFunc: * @ctx:  the user data (XML parser context) * @name:  The element name * * Called when the end of an element has been detected. */typedef void (*endElementSAXFunc) (void *ctx,				const xmlChar *name);/** * attributeSAXFunc: * @ctx:  the user data (XML parser context)

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品一线二线三线精华| 青青草国产精品亚洲专区无| 国产成人一区二区精品非洲| 日韩一区和二区| 日韩精品电影在线| 欧美日韩一区中文字幕| 亚洲最大成人网4388xx| 色老头久久综合| 亚洲一区二区三区在线看| 在线观看免费视频综合| 亚洲国产一二三| 欧美视频在线播放| 亚洲午夜电影网| 欧美疯狂做受xxxx富婆| 日本最新不卡在线| 欧美v亚洲v综合ⅴ国产v| 九九国产精品视频| 久久精品亚洲国产奇米99| 国产91综合网| 中文字幕一区在线| 91蜜桃免费观看视频| 亚洲卡通欧美制服中文| 在线看国产日韩| 五月婷婷色综合| 欧美一级高清片在线观看| 久久99国产精品久久99| 久久久久国色av免费看影院| 处破女av一区二区| 亚洲三级在线看| 欧美三级中文字| 日韩国产精品91| 亚洲精品一区二区三区精华液| 狠狠狠色丁香婷婷综合激情| 国产精品色婷婷| 91理论电影在线观看| 亚洲影院在线观看| 欧美一区二区网站| 国产乱码字幕精品高清av| 中文字幕欧美三区| 在线免费一区三区| 日本欧美肥老太交大片| 久久久久青草大香线综合精品| 99视频一区二区| 亚洲风情在线资源站| 精品久久人人做人人爰| 波多野结衣视频一区| 亚洲午夜久久久久中文字幕久| 在线综合视频播放| 成人在线视频一区| 亚洲高清在线精品| 久久久久久夜精品精品免费| 色综合久久综合| 青青草97国产精品免费观看| 久久久精品2019中文字幕之3| 91麻豆免费看片| 久久精品国产澳门| 国产精品大尺度| 欧美精品自拍偷拍| 风间由美性色一区二区三区| 夜夜亚洲天天久久| 精品国产乱码久久久久久图片 | 亚洲色图在线看| 欧美日韩在线直播| 国产成人精品免费一区二区| 亚洲综合丝袜美腿| 精品国产青草久久久久福利| 91小视频在线免费看| 日本不卡一二三| 亚洲天堂成人在线观看| 日韩一区二区在线观看视频播放| 国产丶欧美丶日本不卡视频| 亚洲高清免费视频| 日本一区二区成人在线| 欧美日韩一区中文字幕| 国产黄色91视频| 亚洲国产视频一区二区| 日本一区二区三区国色天香| 91麻豆精品国产91久久久久久久久 | 国产精品毛片久久久久久| 欧美日韩免费视频| 成人av影院在线| 久久国产精品区| 亚洲国产三级在线| 中文字幕精品—区二区四季| 91麻豆精品国产91久久久使用方法| 成人黄色在线网站| 久久99精品久久久久久| 亚洲一区精品在线| 欧美国产欧美综合| 日韩一级大片在线观看| 色哟哟一区二区| 国产精品一区三区| 免费亚洲电影在线| 亚洲国产欧美一区二区三区丁香婷| 久久久亚洲精品一区二区三区| 7777精品伊人久久久大香线蕉超级流畅 | 一本大道av伊人久久综合| 国产精品自拍在线| 日韩成人av影视| 亚洲国产日韩综合久久精品| 亚洲国产精品黑人久久久| 日韩一区二区在线观看| 欧美日韩午夜在线视频| 99热这里都是精品| 国产99久久久国产精品| 激情丁香综合五月| 日日夜夜一区二区| 亚洲线精品一区二区三区| 国产精品动漫网站| 国产婷婷色一区二区三区| 日韩精品一区二区三区中文精品| 欧美色视频一区| 色婷婷综合久久久久中文| 99视频精品全部免费在线| 国产福利一区二区| 国产麻豆精品久久一二三| 久久电影网站中文字幕| 日韩成人一级片| 日韩电影在线一区二区| 亚洲国产一区二区a毛片| 亚洲在线视频一区| 一区二区三区在线观看欧美| 亚洲丝袜另类动漫二区| 一区精品在线播放| 国产精品动漫网站| 亚洲天堂av老司机| 亚洲女厕所小便bbb| 曰韩精品一区二区| 亚洲精品国产一区二区三区四区在线| 中文字幕一区二区三区精华液| 国产精品热久久久久夜色精品三区| 久久色中文字幕| 国产日韩欧美高清在线| 国产精品久线观看视频| 中文av一区特黄| 中文字幕一区日韩精品欧美| 亚洲视频中文字幕| 亚洲另类色综合网站| 亚洲国产视频在线| 日韩 欧美一区二区三区| 蜜桃视频在线观看一区二区| 经典一区二区三区| 国产成人福利片| hitomi一区二区三区精品| 91丨九色丨黑人外教| 在线观看视频一区二区欧美日韩| 欧美在线一二三四区| 欧美精品一二三四| 日韩一本二本av| 久久婷婷国产综合国色天香| 国产欧美一区二区在线| 国产精品对白交换视频| 亚洲一区在线观看视频| 日韩专区在线视频| 精品一区二区三区免费播放| 国产98色在线|日韩| 91无套直看片红桃| 欧美精品久久久久久久多人混战 | 日韩精品专区在线影院观看 | 欧美福利一区二区| 精品国产伦一区二区三区免费 | 亚洲一区免费在线观看| 日日夜夜精品免费视频| 经典三级在线一区| 成人h精品动漫一区二区三区| 色欲综合视频天天天| 7777精品伊人久久久大香线蕉超级流畅| 欧美成人欧美edvon| 国产精品传媒入口麻豆| 亚洲成人免费在线| 国产一区二区精品在线观看| 不卡视频一二三四| 欧美日韩国产色站一区二区三区| 日韩一级高清毛片| 国产精品黄色在线观看| 亚洲国产日韩a在线播放| 精品一区二区三区在线播放视频| 成人app软件下载大全免费| 欧美天天综合网| 久久嫩草精品久久久久| 一区二区三区视频在线看| 久久国产剧场电影| 91麻豆视频网站| 精品乱码亚洲一区二区不卡| 亚洲欧美另类综合偷拍| 蜜臀av一级做a爰片久久| 成人动漫在线一区| 91精品国产综合久久国产大片| 欧美—级在线免费片| 五月激情综合色| 成人成人成人在线视频| 欧美一区二区视频观看视频| 成人短视频下载| 3d成人h动漫网站入口| 99国内精品久久| 国产福利视频一区二区三区| 日韩女同互慰一区二区| 午夜亚洲国产au精品一区二区| 久久99久久久久久久久久久| 国产欧美一区二区三区鸳鸯浴 |