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

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

?? xmlentitydecl.hpp

?? IBM的解析xml的工具Xerces的源代碼
?? HPP
?? 第 1 頁 / 共 2 頁
字號:
      * @return the plugged-in memory manager      */    MemoryManager* getMemoryManager() const;    //@}    // -----------------------------------------------------------------------    //  Setter methods    // -----------------------------------------------------------------------    /** @name Setter methods */    //@{    /**     *  This method will set the entity name. The format of this name is     *  defined by the particular validator in use, since it will be the     *  one who creates entity definitions as it parses the DTD, Schema,     *  ect...     *     *  @param  entName   The new name to give to this entity.     */    void setName    (        const   XMLCh* const    entName    );    /**     *  This method will set the notation name for this entity. By setting     *  this, you are indicating that this is an unparsed external entity.     *     *  @param  newName   The new notation name to give to this entity.     */    void setNotationName(const XMLCh* const newName);    /**     *  This method will set a new public id on this entity. The public id     *  has no particular form and is purely for client consumption.     *     *  @param  newId     The new public id to give to this entity.     */    void setPublicId(const XMLCh* const newId);    /**     *  This method will set a new sysetm id on this entity. This will     *  then control where the source for this entity lives. If it is     *  an internal entity, then the system id is only for bookkeeping     *  purposes, and to allow any external entities referenced from     *  within the entity to be correctly resolved.     *     *  @param  newId     The new system id to give to the entity.     */    void setSystemId(const XMLCh* const newId);    /**     *  This method will set a new baseURI on this entity. This will     *  then control the URI used to resolve the relative system Id.     *     *  @param  newId     The new base URI to give to the entity.     */    void setBaseURI(const XMLCh* const newId);    /**     *  This method will set a new value for this entity. This is only     *  valid if the entity is to be an internal entity. By setting this     *  field, you are indicating that the entity is internal.     *     *  @param  newValue  The new value to give to this entity.     */    void setValue(const XMLCh* const newValue);    //@}    /* For internal use only */    void setId(const unsigned int newId);    // -----------------------------------------------------------------------    //  Support named pool syntax    // -----------------------------------------------------------------------    /** @name Setter methods */    //@{    /**      * This method allows objects of this class to be used within a standard      * keyed collection used commonly within the parser system. The collection      * calls this method to get the key (usually to hash it) by which the      * object is to be stored.      */    const XMLCh* getKey() const;    //@}    /***     * Support for Serialization/De-serialization     ***/    DECL_XSERIALIZABLE(XMLEntityDecl)private :    // -----------------------------------------------------------------------    //  Unimplemented constructors and operators    // -----------------------------------------------------------------------    XMLEntityDecl(const XMLEntityDecl&);    XMLEntityDecl& operator=(XMLEntityDecl&);    // -----------------------------------------------------------------------    //  XMLEntityDecl: Private helper methods    // -----------------------------------------------------------------------    void cleanUp();    // -----------------------------------------------------------------------    //  Private data members    //    //  fId    //      This is the unique id given to this entity decl.    //    //  fName    //      The name of the enitity. Entity names are never namespace based.    //    //  fNotationName    //      The optional notation of the entity. If there was none, then its    //      empty.    //    //  fPublicId    //      The public id of the entity, which can be empty.    //    //  fSystemId    //      The system id of the entity.    //    //  fValue    //  fValueLen    //      The entity's value and length, which is only valid if its an    //      internal style entity.    //    //  fBaseURI    //      The base URI of the entity.   According to XML InfoSet, such value    //      is the URI where it is declared (NOT referenced).    // -----------------------------------------------------------------------    unsigned int    fId;    unsigned int    fValueLen;    XMLCh*          fValue;    XMLCh*          fName;    XMLCh*          fNotationName;    XMLCh*          fPublicId;    XMLCh*          fSystemId;    XMLCh*          fBaseURI;    MemoryManager*  fMemoryManager;};// ---------------------------------------------------------------------------//  XMLEntityDecl: Getter methods// ---------------------------------------------------------------------------inline unsigned int XMLEntityDecl::getId() const{    return fId;}inline const XMLCh* XMLEntityDecl::getName() const{    return fName;}inline const XMLCh* XMLEntityDecl::getNotationName() const{    return fNotationName;}inline const XMLCh* XMLEntityDecl::getPublicId() const{    return fPublicId;}inline const XMLCh* XMLEntityDecl::getSystemId() const{    return fSystemId;}inline const XMLCh* XMLEntityDecl::getBaseURI() const{    return fBaseURI;}inline const XMLCh* XMLEntityDecl::getValue() const{    return fValue;}inline unsigned int XMLEntityDecl::getValueLen() const{    return fValueLen;}inline bool XMLEntityDecl::isExternal() const{    // If it has a system or public id, its external    return ((fPublicId != 0) || (fSystemId != 0));}inline bool XMLEntityDecl::isUnparsed() const{    // If it has a notation, its unparsed    return (fNotationName != 0);}inline MemoryManager* XMLEntityDecl::getMemoryManager() const{    return fMemoryManager;}// ---------------------------------------------------------------------------//  XMLEntityDecl: Setter methods// ---------------------------------------------------------------------------inline void XMLEntityDecl::setId(const unsigned int newId){    fId = newId;}inline void XMLEntityDecl::setNotationName(const XMLCh* const newName){    if (fNotationName)        fMemoryManager->deallocate(fNotationName);    fNotationName = XMLString::replicate(newName, fMemoryManager);}inline void XMLEntityDecl::setPublicId(const XMLCh* const newId){    if (fPublicId)        fMemoryManager->deallocate(fPublicId);    fPublicId = XMLString::replicate(newId, fMemoryManager);}inline void XMLEntityDecl::setSystemId(const XMLCh* const newId){    if (fSystemId)        fMemoryManager->deallocate(fSystemId);    fSystemId = XMLString::replicate(newId, fMemoryManager);}inline void XMLEntityDecl::setBaseURI(const XMLCh* const newId){    if (fBaseURI)        fMemoryManager->deallocate(fBaseURI);    fBaseURI = XMLString::replicate(newId, fMemoryManager);}inline void XMLEntityDecl::setValue(const XMLCh* const newValue){    if (fValue)        fMemoryManager->deallocate(fValue);    fValue = XMLString::replicate(newValue, fMemoryManager);    fValueLen = XMLString::stringLen(newValue);}// ---------------------------------------------------------------------------//  XMLEntityDecl: Support named pool syntax// ---------------------------------------------------------------------------inline const XMLCh* XMLEntityDecl::getKey() const{    return fName;}XERCES_CPP_NAMESPACE_END#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日本在线视频| 欧美精品久久一区二区三区| 欧美高清www午色夜在线视频| 久久理论电影网| 午夜亚洲福利老司机| 99久久久久久| 久久久午夜精品理论片中文字幕| 亚洲成人激情av| 9i在线看片成人免费| 26uuu久久天堂性欧美| 丝瓜av网站精品一区二区| www.亚洲在线| 久久亚洲精精品中文字幕早川悠里| 亚洲国产日韩a在线播放| 成人激情开心网| 精品国产91乱码一区二区三区 | 在线精品视频一区二区三四| 精品免费视频一区二区| 亚洲综合自拍偷拍| 成人不卡免费av| 国产欧美精品日韩区二区麻豆天美| 日韩黄色免费网站| 欧美性受xxxx黑人xyx| 亚洲欧美色图小说| www.亚洲精品| 中文字幕制服丝袜一区二区三区| 国产一区欧美二区| 欧美xxxxx牲另类人与| 热久久一区二区| 7777女厕盗摄久久久| 一区二区在线观看免费视频播放| av日韩在线网站| 国产精品私人自拍| 国产91精品久久久久久久网曝门| 26uuu久久天堂性欧美| 激情小说欧美图片| 日韩欧美国产wwwww| 免费成人性网站| 欧美变态tickling挠脚心| 毛片不卡一区二区| 欧美大片在线观看一区二区| 久久99最新地址| 2024国产精品| 国产伦精品一区二区三区视频青涩| 欧美xfplay| 国产美女在线精品| 国产亚洲综合av| 成人免费毛片片v| 亚洲人xxxx| 欧美系列日韩一区| 丝袜诱惑亚洲看片| 欧美一二三四区在线| 久久99国产精品麻豆| 2020国产精品自拍| 国产成人在线看| 中文字幕av一区二区三区| 91在线观看高清| 亚洲激情自拍偷拍| 欧美日高清视频| 狠狠狠色丁香婷婷综合久久五月| 精品国产sm最大网站| 国产成人在线免费| 自拍偷拍欧美精品| 欧美揉bbbbb揉bbbbb| 日韩黄色片在线观看| 精品国产91洋老外米糕| 成人动漫中文字幕| 亚洲一区二区在线观看视频| 正在播放亚洲一区| 国内精品免费**视频| 中文一区二区在线观看| 色播五月激情综合网| 亚洲国产精品久久久男人的天堂| 91精品在线观看入口| 国产精品一区免费在线观看| 中文字幕一区在线| 欧美性猛交xxxx乱大交退制版| 蜜桃久久精品一区二区| 国产欧美一区二区精品仙草咪| av成人免费在线| 天天做天天摸天天爽国产一区| 精品国产成人系列| 91免费看`日韩一区二区| 午夜久久久影院| 久久精品综合网| 日本精品视频一区二区| 精品中文av资源站在线观看| 国产精品久久久久7777按摩 | 一区二区三区加勒比av| 欧美一区日本一区韩国一区| 国产激情一区二区三区| 一区二区三区在线观看动漫| 日韩一区二区三区视频在线观看| 成人精品鲁一区一区二区| 亚洲国产综合在线| 久久久精品综合| 欧美视频完全免费看| 国产尤物一区二区在线| 玉足女爽爽91| 2021中文字幕一区亚洲| 欧美色网一区二区| 国产91精品在线观看| 日韩精品福利网| 一色屋精品亚洲香蕉网站| 欧美一区二区三区免费| 99久久国产综合精品麻豆| 伦理电影国产精品| 亚洲免费资源在线播放| 久久精品综合网| 91麻豆精品国产91久久久更新时间 | 亚洲国产激情av| 欧美一卡二卡在线| 91一区二区三区在线播放| 国产真实精品久久二三区| 亚洲成人综合视频| 最新国产精品久久精品| 2023国产精品视频| 欧美一区二区三区日韩| 色狠狠色狠狠综合| 成人av综合一区| 激情综合网激情| 五月婷婷综合网| 一片黄亚洲嫩模| 国产精品久久久久一区二区三区共 | 成人动漫视频在线| 精品无人码麻豆乱码1区2区| 视频一区视频二区在线观看| 日韩伦理av电影| 日本一区二区三区视频视频| 日韩免费电影一区| 欧美夫妻性生活| 欧洲国产伦久久久久久久| www.日本不卡| 国产成人综合自拍| 国产麻豆精品theporn| 久久99这里只有精品| 日韩国产精品久久久| 亚洲国产日日夜夜| 亚洲综合av网| 亚洲女同一区二区| 中文字幕在线不卡一区| 国产色91在线| 久久久精品黄色| 久久久青草青青国产亚洲免观| 精品国产伦一区二区三区免费| 欧美妇女性影城| 欧美日韩一区二区在线视频| 日本韩国一区二区三区| 91在线视频播放地址| 国产99久久久国产精品潘金网站| 久久99精品久久久| 久久国产精品99精品国产| 蜜桃一区二区三区在线观看| 秋霞午夜鲁丝一区二区老狼| 天天免费综合色| 日本中文字幕不卡| 日本不卡一区二区| 蜜桃精品视频在线观看| 麻豆精品在线视频| 麻豆久久久久久久| 韩日av一区二区| 国产精选一区二区三区| 国产91高潮流白浆在线麻豆 | 亚洲成人在线观看视频| 亚洲第一激情av| 午夜av一区二区三区| 欧美bbbbb| 久久99国产精品麻豆| 国产美女在线观看一区| 国产电影精品久久禁18| 成人91在线观看| 在线免费视频一区二区| 欧美日韩在线播放| 日韩欧美在线一区二区三区| 精品成人一区二区| 国产欧美日韩激情| 亚洲啪啪综合av一区二区三区| 亚洲精品第1页| 日本成人在线网站| 激情文学综合插| 国产99一区视频免费 | 精品一区二区三区视频在线观看| 国内一区二区视频| 成人h动漫精品一区二| 在线国产电影不卡| 欧美丰满少妇xxxxx高潮对白| 欧美xxxx老人做受| 国产精品美女久久久久aⅴ国产馆 国产精品美女久久久久av爽李琼 国产精品美女久久久久高潮 | 亚洲综合免费观看高清完整版| 亚洲成人资源在线| 国产资源在线一区| 91麻豆swag| 日韩一区二区三免费高清| 久久久精品中文字幕麻豆发布| 亚洲日本一区二区| 美洲天堂一区二卡三卡四卡视频 | 亚洲一区免费视频| 久久99九九99精品| av亚洲产国偷v产偷v自拍| 欧美军同video69gay|