ReactOS
0.4.15-dev-2144-g2282205
|
#include <stdio.h>
#include <limits.h>
#include <libxml/xmlversion.h>
#include <libxml/xmlstring.h>
#include <libxml/xmlregexp.h>
#include <libxml/xmlmemory.h>
Go to the source code of this file.
Classes | |
struct | _xmlBuffer |
struct | _xmlNotation |
struct | _xmlEnumeration |
struct | _xmlAttribute |
struct | _xmlElementContent |
struct | _xmlElement |
struct | _xmlNs |
struct | _xmlDtd |
struct | _xmlAttr |
struct | _xmlID |
struct | _xmlRef |
struct | _xmlNode |
struct | _xmlDoc |
struct | _xmlDOMWrapCtxt |
Macros | |
#define | BASE_BUFFER_SIZE 4096 |
#define | LIBXML2_NEW_BUFFER |
#define | XML_XML_NAMESPACE (const xmlChar *) "http://www.w3.org/XML/1998/namespace" |
#define | XML_XML_ID (const xmlChar *) "xml:id" |
#define | XML_LOCAL_NAMESPACE XML_NAMESPACE_DECL |
#define | XML_GET_CONTENT(n) ((n)->type == XML_ELEMENT_NODE ? NULL : (n)->content) |
#define | XML_GET_LINE(n) (xmlGetLineNo(n)) |
#define | xmlChildrenNode children |
#define | xmlRootNode children |
#define BASE_BUFFER_SIZE 4096 |
#define XML_GET_LINE | ( | n | ) | (xmlGetLineNo(n)) |
#define XML_LOCAL_NAMESPACE XML_NAMESPACE_DECL |
#define XML_XML_NAMESPACE (const xmlChar *) "http://www.w3.org/XML/1998/namespace" |
#define xmlChildrenNode children |
#define xmlRootNode children |
typedef struct _xmlAttribute xmlAttribute |
typedef xmlAttribute* xmlAttributePtr |
typedef xmlAttr* xmlAttrPtr |
typedef struct _xmlBuffer xmlBuffer |
typedef xmlBuffer* xmlBufferPtr |
typedef xmlNsPtr(* xmlDOMWrapAcquireNsFunction) (xmlDOMWrapCtxtPtr ctxt, xmlNodePtr node, const xmlChar *nsName, const xmlChar *nsPrefix) |
xmlDOMWrapAcquireNsFunction: @ctxt: a DOM wrapper context @node: the context node (element or attribute) @nsName: the requested namespace name @nsPrefix: the requested namespace prefix
A function called to acquire namespaces (xmlNs) from the wrapper.
Returns an xmlNsPtr or NULL in case of an error.
typedef struct _xmlDOMWrapCtxt xmlDOMWrapCtxt |
typedef xmlDOMWrapCtxt* xmlDOMWrapCtxtPtr |
typedef struct _xmlElement xmlElement |
typedef xmlElementContent* xmlElementContentPtr |
typedef xmlElement* xmlElementPtr |
typedef struct _xmlEntity xmlEntity |
typedef xmlEntity* xmlEntityPtr |
typedef struct _xmlEnumeration xmlEnumeration |
typedef xmlEnumeration* xmlEnumerationPtr |
typedef xmlNode* xmlNodePtr |
typedef struct _xmlNotation xmlNotation |
typedef xmlNotation* xmlNotationPtr |
typedef xmlElementType xmlNsType |
typedef struct _xmlOutputBuffer xmlOutputBuffer |
typedef xmlOutputBuffer* xmlOutputBufferPtr |
typedef struct _xmlParserCtxt xmlParserCtxt |
typedef xmlParserCtxt* xmlParserCtxtPtr |
typedef struct _xmlParserInput xmlParserInput |
typedef xmlParserInput* xmlParserInputPtr |
typedef struct _xmlSAXHandler xmlSAXHandler |
typedef xmlSAXHandler* xmlSAXHandlerPtr |
typedef struct _xmlSAXLocator xmlSAXLocator |
typedef xmlSAXLocator* xmlSAXLocatorPtr |
xmlAttributeDefault:
A DTD Attribute default definition.
Enumerator | |
---|---|
XML_ATTRIBUTE_NONE | |
XML_ATTRIBUTE_REQUIRED | |
XML_ATTRIBUTE_IMPLIED | |
XML_ATTRIBUTE_FIXED |
xmlAttributeType:
A DTD Attribute type definition.
Definition at line 206 of file tree.h.
LIBXML_NAMESPACE_DICT:
Defines experimental behaviour: 1) xmlNs gets an additional field @context (a xmlDoc) 2) when creating a tree, xmlNs->href is stored in the dict of xmlDoc.xmlBufferAllocationScheme:
A buffer allocation scheme can be defined to either match exactly the need or double it's allocated size each time it is found too small.
Enumerator | |
---|---|
XML_BUFFER_ALLOC_DOUBLEIT | |
XML_BUFFER_ALLOC_EXACT | |
XML_BUFFER_ALLOC_IMMUTABLE | |
XML_BUFFER_ALLOC_IO | |
XML_BUFFER_ALLOC_HYBRID | |
XML_BUFFER_ALLOC_BOUNDED |
xmlDocProperty
Set of properties of the document as found by the parser Some of them are linked to similarly named xmlParserOption
Enumerator | |
---|---|
XML_DOC_WELLFORMED | |
XML_DOC_NSVALID | |
XML_DOC_OLD10 | |
XML_DOC_DTDVALID | |
XML_DOC_XINCLUDE | |
XML_DOC_USERBUILT | |
XML_DOC_INTERNAL | |
XML_DOC_HTML |
Definition at line 532 of file tree.h.
xmlElementContentOccur:
Possible definitions of element content occurrences.
Enumerator | |
---|---|
XML_ELEMENT_CONTENT_ONCE | |
XML_ELEMENT_CONTENT_OPT | |
XML_ELEMENT_CONTENT_MULT | |
XML_ELEMENT_CONTENT_PLUS |
xmlElementContentType:
Possible definitions of element content types.
Enumerator | |
---|---|
XML_ELEMENT_CONTENT_PCDATA | |
XML_ELEMENT_CONTENT_ELEMENT | |
XML_ELEMENT_CONTENT_SEQ | |
XML_ELEMENT_CONTENT_OR |
Definition at line 159 of file tree.h.
xmlElementTypeVal:
The different possibilities for an element content type.
Enumerator | |
---|---|
XML_ELEMENT_TYPE_UNDEFINED | |
XML_ELEMENT_TYPE_EMPTY | |
XML_ELEMENT_TYPE_ANY | |
XML_ELEMENT_TYPE_MIXED | |
XML_ELEMENT_TYPE_ELEMENT |
Definition at line 322 of file tree.h.
XMLPUBFUN xmlNodePtr XMLCALL xmlAddChild | ( | xmlNodePtr | parent, |
xmlNodePtr | cur | ||
) |
Referenced by xmlParseBalancedChunkMemoryInternal(), xmlParseCtxtExternalEntity(), xmlParseExternalEntityPrivate(), xmlParseInNodeContext(), xmlParseReference(), xmlSAX2CDataBlock(), xmlSAX2Characters(), xmlSAX2Comment(), xmlSAX2ProcessingInstruction(), xmlSAX2Reference(), xmlSAX2StartElementNs(), xsltAddChild(), xsltExtElementTest(), and xsltLoadStylesheetPI().
XMLPUBFUN xmlNodePtr XMLCALL xmlAddChildList | ( | xmlNodePtr | parent, |
xmlNodePtr | cur | ||
) |
Referenced by xmlParseReference(), and xmlSAX2GetEntity().
XMLPUBFUN xmlNodePtr XMLCALL xmlAddNextSibling | ( | xmlNodePtr | cur, |
xmlNodePtr | elem | ||
) |
XMLPUBFUN xmlNodePtr XMLCALL xmlAddSibling | ( | xmlNodePtr | cur, |
xmlNodePtr | elem | ||
) |
Referenced by xmlSAX2Comment(), xmlSAX2ProcessingInstruction(), and xmlSAX2StartElementNs().
xmlBufContent: @buf: the buffer
Function to extract the content of a buffer
Returns the internal content
Definition at line 582 of file buf.c.
Referenced by xmlCharEncFirstLineInput(), xmlCharEncInput(), xmlParserInputGrow(), xmlParserInputShrink(), and xsltSaveResultToString().
xmlBufEnd: @buf: the buffer
Function to extract the end of the content of a buffer
Returns the end of the internal content or NULL in case of error
Definition at line 600 of file buf.c.
Referenced by xmlCharEncFirstLineInput(), xmlCharEncInput(), xmlParserInputGrow(), and xmlParserInputShrink().
Referenced by xmlLoadEntityContent(), and xsltFormatNumberConversion().
Referenced by xsltNumberFormatDecimal(), xsltNumberFormatGetValue(), and xsltNumberFormatInsertNumbers().
Referenced by xsltFormatNumberConversion(), xsltNumberFormat(), and xsltNumberFormatGetValue().
XMLPUBFUN xmlBufferPtr XMLCALL xmlBufferCreate | ( | void | ) |
Referenced by xmlLoadEntityContent(), xsltFormatNumberConversion(), xsltNumberFormat(), and xsltNumberFormatGetValue().
XMLPUBFUN xmlBufferPtr XMLCALL xmlBufferCreateSize | ( | size_t | size | ) |
XMLPUBFUN xmlBufferPtr XMLCALL xmlBufferCreateStatic | ( | void * | mem, |
size_t | size | ||
) |
XMLPUBFUN xmlChar* XMLCALL xmlBufferDetach | ( | xmlBufferPtr | buf | ) |
XMLPUBFUN int XMLCALL xmlBufferDump | ( | FILE * | file, |
xmlBufferPtr | buf | ||
) |
XMLPUBFUN void XMLCALL xmlBufferEmpty | ( | xmlBufferPtr | buf | ) |
XMLPUBFUN void XMLCALL xmlBufferFree | ( | xmlBufferPtr | buf | ) |
Referenced by xmlCharEncFirstLineInt(), xmlCharEncInFunc(), and xmlCharEncOutFunc().
XMLPUBFUN void XMLCALL xmlBufferSetAllocationScheme | ( | xmlBufferPtr | buf, |
xmlBufferAllocationScheme | scheme | ||
) |
Referenced by xmlCharEncFirstLineInt(), xmlCharEncInFunc(), and xmlCharEncOutFunc().
xmlBufShrink: @buf: the buffer to dump @len: the number of xmlChar to remove
Remove the beginning of an XML buffer. NOTE that this routine behaviour differs from xmlBufferShrink() as it will return 0 on error instead of -1 due to size_t being used as the return type.
Returns the number of byte removed or 0 in case of failure
Definition at line 388 of file buf.c.
Referenced by xmlCharEncFirstLineInput(), xmlCharEncInput(), xmlParserInputShrink(), and xmlSwitchInputEncodingInt().
xmlBufUse: @buf: the buffer
Function to get the length of a buffer
Returns the length of data in the internal content
Definition at line 687 of file buf.c.
Referenced by xmlCharEncFirstLineInput(), xmlCharEncInput(), xmlParserInputGrow(), xmlParserInputShrink(), xmlSwitchInputEncodingInt(), and xsltSaveResultToString().
XMLPUBFUN xmlChar* XMLCALL xmlBuildQName | ( | const xmlChar * | ncname, |
const xmlChar * | prefix, | ||
xmlChar * | memory, | ||
int | len | ||
) |
Referenced by xmlIsID(), xmlParseQName(), xmlSAX2AttributeNs(), and xmlSAX2StartElementNs().
XMLPUBFUN xmlNodePtr XMLCALL xmlCopyNode | ( | xmlNodePtr | node, |
int | recursive | ||
) |
XMLPUBFUN xmlNodePtr XMLCALL xmlCopyNodeList | ( | xmlNodePtr | node | ) |
XMLPUBFUN xmlAttrPtr XMLCALL xmlCopyProp | ( | xmlNodePtr | target, |
xmlAttrPtr | cur | ||
) |
XMLPUBFUN xmlAttrPtr XMLCALL xmlCopyPropList | ( | xmlNodePtr | target, |
xmlAttrPtr | cur | ||
) |
XMLPUBFUN xmlDtdPtr XMLCALL xmlCreateIntSubset | ( | xmlDocPtr | doc, |
const xmlChar * | name, | ||
const xmlChar * | ExternalID, | ||
const xmlChar * | SystemID | ||
) |
Referenced by xmlParseExternalSubset(), xmlSAX2InternalSubset(), xsltApplyStylesheetInternal(), and xsltDocumentElem().
XMLPUBFUN xmlNodePtr XMLCALL xmlDocCopyNode | ( | xmlNodePtr | node, |
xmlDocPtr | doc, | ||
int | recursive | ||
) |
Referenced by xmlParseReference(), xsltApplySequenceConstructor(), xsltCopyTree(), xsltLoadStylesheetPI(), and xsltShallowCopyElem().
XMLPUBFUN xmlNodePtr XMLCALL xmlDocCopyNodeList | ( | xmlDocPtr | doc, |
xmlNodePtr | node | ||
) |
XMLPUBFUN xmlNodePtr XMLCALL xmlDocGetRootElement | ( | const xmlDoc * | doc | ) |
XMLPUBFUN int XMLCALL xmlDOMWrapAdoptNode | ( | xmlDOMWrapCtxtPtr | ctxt, |
xmlDocPtr | sourceDoc, | ||
xmlNodePtr | node, | ||
xmlDocPtr | destDoc, | ||
xmlNodePtr | destParent, | ||
int | options | ||
) |
XMLPUBFUN int XMLCALL xmlDOMWrapCloneNode | ( | xmlDOMWrapCtxtPtr | ctxt, |
xmlDocPtr | sourceDoc, | ||
xmlNodePtr | node, | ||
xmlNodePtr * | clonedNode, | ||
xmlDocPtr | destDoc, | ||
xmlNodePtr | destParent, | ||
int | deep, | ||
int | options | ||
) |
XMLPUBFUN void XMLCALL xmlDOMWrapFreeCtxt | ( | xmlDOMWrapCtxtPtr | ctxt | ) |
XMLPUBFUN xmlDOMWrapCtxtPtr XMLCALL xmlDOMWrapNewCtxt | ( | void | ) |
XMLPUBFUN int XMLCALL xmlDOMWrapReconcileNamespaces | ( | xmlDOMWrapCtxtPtr | ctxt, |
xmlNodePtr | elem, | ||
int | options | ||
) |
XMLPUBFUN int XMLCALL xmlDOMWrapRemoveNode | ( | xmlDOMWrapCtxtPtr | ctxt, |
xmlDocPtr | doc, | ||
xmlNodePtr | node, | ||
int | options | ||
) |
Referenced by parseAndPrintFile(), testSAX(), xmlCtxtReset(), xmlDoRead(), xmlParseBalancedChunkMemoryInternal(), xmlParseCtxtExternalEntity(), xmlParseDocument(), xmlParseExternalEntityPrivate(), xsltApplyStylesheetInternal(), xsltDocDefaultLoaderFunc(), xsltDocumentElem(), xsltFreeDocuments(), xsltFreeRVTs(), xsltFreeStyleDocuments(), xsltFreeStylesheet(), xsltLoadStylesheetPI(), xsltParseStylesheetFile(), xsltParseStylesheetImport(), xsltReleaseRVT(), xsltRunStylesheetUser(), and xsltTransformCacheFree().
Referenced by parseAndPrintFile(), xmlSAX2InternalSubset(), and xsltApplyStylesheetInternal().
XMLPUBFUN void XMLCALL xmlFreeNode | ( | xmlNodePtr | cur | ) |
Referenced by xmlParseBalancedChunkMemoryInternal(), xmlParseInNodeContext(), xmlSAX2CDataBlock(), xmlSAX2Reference(), xmlSAX2StartElementNs(), xsltAddChild(), xsltApplyStripSpaces(), xsltApplyTemplates(), xsltDefaultProcessOneNode(), xsltEvalTemplateString(), xsltParseTemplateContent(), and xsltPreprocessStylesheet().
XMLPUBFUN void XMLCALL xmlFreeNodeList | ( | xmlNodePtr | cur | ) |
Referenced by xmlParseInNodeContext(), xmlParseReference(), xsltAttrTemplateProcess(), and xsltReleaseRVT().
XMLPUBFUN void XMLCALL xmlFreeProp | ( | xmlAttrPtr | cur | ) |
XMLPUBFUN void XMLCALL xmlFreePropList | ( | xmlAttrPtr | cur | ) |
XMLPUBFUN xmlBufferAllocationScheme XMLCALL xmlGetBufferAllocationScheme | ( | void | ) |
Referenced by parseAndPrintFile(), xmlSAX2InternalSubset(), and xsltApplyStylesheetInternal().
XMLPUBFUN xmlNodePtr XMLCALL xmlGetLastChild | ( | const xmlNode * | parent | ) |
Referenced by areBlanks(), and xmlSAX2CDataBlock().
Referenced by xmlAddID(), xmlAddRef(), and xsltPrintErrorContext().
XMLPUBFUN xmlChar* XMLCALL xmlGetNsProp | ( | const xmlNode * | node, |
const xmlChar * | name, | ||
const xmlChar * | nameSpace | ||
) |
Referenced by xsltMessage(), xsltNamespaceAlias(), xsltParseStylesheetAttributeSet(), xsltParseStylesheetDecimalFormat(), xsltParseStylesheetExcludePrefix(), xsltParseStylesheetExtPrefix(), xsltParseStylesheetImport(), xsltParseStylesheetInclude(), xsltParseStylesheetKey(), xsltParseStylesheetOutput(), xsltParseStylesheetPreserveSpace(), xsltParseStylesheetProcess(), xsltParseStylesheetStripSpace(), xsltParseStylesheetTemplate(), xsltParseStylesheetTop(), and xsltParseTemplateContent().
Referenced by xsltGetCNsProp(), and xsltGetNsProp().
XMLPUBFUN xmlAttrPtr XMLCALL xmlHasNsProp | ( | const xmlNode * | node, |
const xmlChar * | name, | ||
const xmlChar * | nameSpace | ||
) |
Referenced by xsltApplyStylesheetInternal(), and xsltDocumentElem().
xmlIsXHTML: @systemID: the system identifier @publicID: the public identifier
Try to find if the document correspond to an XHTML DTD
Returns 1 if true, 0 if not and -1 in case of error
Definition at line 55 of file xmlsave.c.
Referenced by xmlSAX2CDataBlock(), xsltCopyText(), and xsltCopyTextString().
Referenced by xmlSAX2Reference().
XMLPUBFUN xmlNodePtr XMLCALL xmlNewComment | ( | const xmlChar * | content | ) |
Referenced by xmlParseInNodeContext(), xsltComment(), xsltCopy(), and xsltExtElementTest().
Referenced by parseAndPrintFile(), xmlParseBalancedChunkMemoryInternal(), xmlParseCtxtExternalEntity(), xmlParseEntityDecl(), xmlParseExternalEntityPrivate(), xmlParseExternalSubset(), xmlSAX2StartDocument(), xsltApplyStylesheetInternal(), xsltCreateRVT(), xsltDocumentElem(), and xsltLoadStylesheetPI().
Referenced by xmlSAX2Comment().
XMLPUBFUN xmlNodePtr XMLCALL xmlNewDocNodeEatName | ( | xmlDocPtr | doc, |
xmlNsPtr | ns, | ||
xmlChar * | name, | ||
const xmlChar * | content | ||
) |
Referenced by xmlSAX2StartElementNs(), and xsltElement().
XMLPUBFUN xmlNodePtr XMLCALL xmlNewDocPI | ( | xmlDocPtr | doc, |
const xmlChar * | name, | ||
const xmlChar * | content | ||
) |
Referenced by xmlSAX2ProcessingInstruction(), xsltCopy(), and xsltProcessingInstruction().
XMLPUBFUN xmlAttrPtr XMLCALL xmlNewDocProp | ( | xmlDocPtr | doc, |
const xmlChar * | name, | ||
const xmlChar * | value | ||
) |
Referenced by xsltAttrListTemplateProcess().
Referenced by xsltShallowCopyAttr(), and xsltText().
XMLPUBFUN xmlDtdPtr XMLCALL xmlNewDtd | ( | xmlDocPtr | doc, |
const xmlChar * | name, | ||
const xmlChar * | ExternalID, | ||
const xmlChar * | SystemID | ||
) |
Referenced by xmlParseEntityDecl(), and xmlSAX2ExternalSubset().
XMLPUBFUN xmlNodePtr XMLCALL xmlNewNodeEatName | ( | xmlNsPtr | ns, |
xmlChar * | name | ||
) |
XMLPUBFUN xmlAttrPtr XMLCALL xmlNewNsProp | ( | xmlNodePtr | node, |
xmlNsPtr | ns, | ||
const xmlChar * | name, | ||
const xmlChar * | value | ||
) |
Referenced by xmlSAX2AttributeNs(), xsltAttrTemplateProcess(), and xsltCopyAttrListNoOverwrite().
XMLPUBFUN xmlAttrPtr XMLCALL xmlNewNsPropEatName | ( | xmlNodePtr | node, |
xmlNsPtr | ns, | ||
xmlChar * | name, | ||
const xmlChar * | value | ||
) |
Referenced by xmlSAX2AttributeNs().
Referenced by xmlSAX2Reference().
XMLPUBFUN xmlNodePtr XMLCALL xmlNewText | ( | const xmlChar * | content | ) |
Referenced by xsltAttribute(), xsltAttrListTemplateProcess(), and xsltAttrTemplateProcess().
Referenced by xsltCopyText(), and xsltCopyTextString().
Referenced by xsltAddTextString().
Referenced by xsltDocumentFunction(), xsltLoadStylesheetPI(), xsltParseStylesheetImport(), and xsltParseStylesheetInclude().
Referenced by xsltEvalTemplateString().
Referenced by xsltPreprocessStylesheet().
Referenced by xmlRemoveID(), xmlRemoveRef(), xsltCopyAttrListNoOverwrite(), xsltGetCNsProp(), xsltGetNsProp(), and xsltShallowCopyAttr().
Referenced by parseAndPrintFile(), xsltParseTemplateContent(), and xsltPreprocessStylesheet().
XMLPUBFUN int XMLCALL xmlRemoveProp | ( | xmlAttrPtr | cur | ) |
XMLPUBFUN xmlNsPtr XMLCALL xmlSearchNs | ( | xmlDocPtr | doc, |
xmlNodePtr | node, | ||
const xmlChar * | nameSpace | ||
) |
Referenced by xmlSAX2AttributeNs(), xmlSAX2StartElementNs(), xsltApplyAttributeSet(), xsltApplySequenceConstructor(), xsltAttribute(), xsltAttributeComp(), xsltCompileStepPattern(), xsltCopyNamespaceList(), xsltCopyNamespaceListInternal(), xsltCopyTree(), xsltElement(), xsltElementAvailableFunction(), xsltElementComp(), xsltFormatNumberFunction(), xsltGetCNsProp(), xsltGetNamespace(), xsltGetNsProp(), xsltGetQNameURI(), xsltGetQNameURI2(), xsltGetSpecialNamespace(), xsltNamespaceAlias(), xsltParseStylesheetAttributeSet(), xsltParseStylesheetExcludePrefix(), xsltParseStylesheetExtPrefix(), xsltParseStylesheetOutput(), xsltProcessUserParamInternal(), and xsltShallowCopyNsNode().
XMLPUBFUN xmlNsPtr XMLCALL xmlSearchNsByHref | ( | xmlDocPtr | doc, |
xmlNodePtr | node, | ||
const xmlChar * | href | ||
) |
Referenced by xsltCopyTree(), xsltGetSpecialNamespace(), and xsltParseTemplateContent().
XMLPUBFUN void XMLCALL xmlSetBufferAllocationScheme | ( | xmlBufferAllocationScheme | scheme | ) |
XMLPUBFUN void XMLCALL xmlSetListDoc | ( | xmlNodePtr | list, |
xmlDocPtr | doc | ||
) |
XMLPUBFUN void XMLCALL xmlSetNs | ( | xmlNodePtr | node, |
xmlNsPtr | ns | ||
) |
XMLPUBFUN void XMLCALL xmlSetTreeDoc | ( | xmlNodePtr | tree, |
xmlDocPtr | doc | ||
) |
Referenced by xmlParseReference().
Referenced by xmlAddDefAttrs(), and xmlNewDocElementContent().
XMLPUBFUN xmlNodePtr XMLCALL xmlStringLenGetNodeList | ( | const xmlDoc * | doc, |
const xmlChar * | value, | ||
int | len | ||
) |
Referenced by xmlSAX2AttributeNs().
Referenced by xmlSAX2CDataBlock(), and xmlSAX2Characters().
XMLPUBFUN xmlNodePtr XMLCALL xmlTextMerge | ( | xmlNodePtr | first, |
xmlNodePtr | second | ||
) |
XMLPUBFUN void XMLCALL xmlUnlinkNode | ( | xmlNodePtr | cur | ) |
Referenced by parseAndPrintFile(), xmlFreeAttribute(), xmlFreeElement(), xmlParseInNodeContext(), xmlSAX2InternalSubset(), xmlSAX2StartElementNs(), xsltApplyStripSpaces(), xsltApplyStylesheetInternal(), xsltApplyTemplates(), xsltDefaultProcessOneNode(), xsltParseTemplateContent(), and xsltPreprocessStylesheet().