diff --git a/ChangeLog b/ChangeLog index 3bd08f66..ee473594 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +Sun Jul 10 23:33:41 CEST 2005 Daniel Veillard + + * xstc/Makefile.am README README.tests Makefile.tests Makefile.am: + preparing to make testsuite releases along with code source releases + * gentest.py testapi.c: fixed a couple of problem introduced by + the new Schemas support for Readers + * xpath.c: fixed the XPath attribute:: bug #309580, #309864 in a crude + but simple way. + * xmlschemas.c include/libxml/tree.h: fixed a couple of problems + raised by the doc builder. + * doc/*: made rebuild + Sun Jul 10 21:51:16 CEST 2005 Daniel Veillard * xmlschemas.c: fixed a bug introduced on last commit diff --git a/Makefile.am b/Makefile.am index 99f6963f..b0455d43 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1063,13 +1063,15 @@ cleanup: dist-hook: cleanup libxml2.spec -cp libxml2.spec $(distdir) - (cd $(srcdir) ; tar -cf - --exclude CVS win32 macos vms bakefile test result SAXresult ) | (cd $(distdir); tar xf -) + (cd $(srcdir) ; tar -cf - --exclude CVS win32 macos vms bakefile test result) | (cd $(distdir); tar xf -) dist-source: distdir $(AMTAR) -chof - --exclude test --exclude result $(distdir) | GZIP=$(GZIP_ENV) gzip -c >`echo "$(distdir)" | sed "s+libxml2+libxml2-sources+"`.tar.gz dist-test: distdir - $(AMTAR) -chof - $(distdir)/test $(distdir)/result $(distdir)/xstc/Test | GZIP=$(GZIP_ENV) gzip -c >`echo "$(distdir)" | sed "s+libxml2+libxml2-sources+"`.tar.gz + (cd $(srcdir) ; tar -cf - --exclude CVS xstc/Tests) | (cd $(distdir); tar xf -) + tar -cf - $(distdir)/test $(distdir)/result $(distdir)/xstc/Tests $(distdir)/Makefile.tests $(distdir)/README $(distdir)/README.tests $(distdir)/AUTHORS $(distdir)/testapi.c $(distdir)/runtest.c $(distdir)/runsuite.c | GZIP=$(GZIP_ENV) gzip -c >`echo "$(distdir)" | sed "s+libxml2+libxml2-tests+"`.tar.gz + @(rm -rf $(distdir)/xstc/Test) cleantar: @(rm -f libxml*.tar.gz COPYING.LIB) @@ -1106,6 +1108,7 @@ EXTRA_DIST = xml2-config.in xml2Conf.sh.in libxml.spec.in libxml2.spec \ triop.h triodef.h libxml.h elfgcchack.h \ testThreadsWin32.c genUnicode.py TODO_SCHEMAS \ dbgen.pl dbgenattr.pl regressions.py regressions.xml \ + README.tests Makefile.tests \ $(CVS_EXTRA_DIST) diff --git a/Makefile.tests b/Makefile.tests new file mode 100644 index 00000000..bd223ca6 --- /dev/null +++ b/Makefile.tests @@ -0,0 +1,35 @@ +# +# You may have to ajust to call the right compiler, or other oprions +# for compiling and linking +# + +CFLAGS=`xml2-config --cflags` +LIBS=`xml2-config --libs` +THREADLIB= -lpthread +EXEEXT= + +all: runtest$(EXEEXT) runsuite$(EXEEXT) testapi$(EXEEXT) + +clean: + $(RM) runtest$(EXEEXT) runsuite$(EXEEXT) testapi$(EXEEXT) + +check: do_runtest do_runsuite do_testapi + +runtest$(EXEEXT): runtest.c + $(CC) -o runtest$(EXEEXT) $(CFLAGS) runtest.c $(LIBS) $(THREADLIB) + +do_runtest: runtest$(EXEEXT) + ./runtest + +runsuite$(EXEEXT): runsuite.c + $(CC) -o runsuite$(EXEEXT) $(CFLAGS) runsuite.c $(LIBS) + +do_runsuite: runsuite$(EXEEXT) + ./runsuite + +testapi$(EXEEXT): testapi.c + $(CC) -o testapi$(EXEEXT) $(CFLAGS) testapi.c $(LIBS) + +do_testapi: testapi$(EXEEXT) + ./testapi + diff --git a/README b/README index 77262254..f1817aa6 100644 --- a/README +++ b/README @@ -15,8 +15,8 @@ To assert build quality: on an Unixised setup: run make tests otherwise: - There is 2 standalone tools runtest.c and testapi.c, which should - compile as part of the build or as any application would. + There is 3 standalone tools runtest.c runsuite.c testapi.c, which + should compile as part of the build or as any application would. Launch them from this directory to get results, runtest checks the proper functionning of libxml2 main APIs while testapi does a full coverage check. Report failures to the list. diff --git a/README.tests b/README.tests new file mode 100644 index 00000000..eb7223d1 --- /dev/null +++ b/README.tests @@ -0,0 +1,29 @@ + README.tests + + Instructions for standalone test regressions of libxml2 + +libxml2-tests-$version.tar.gz contains 3 standalone C programs as well +as a large amount of tests and results coming from libxml2 itself and +from W3C, NIST, Sun Microsystems, Microsoft and James Clark. Each C +program has a different testing purpose: + + runtest.c : runs libxml2 basic internal regression tests + runsuite.c: runs libxml2 against external regression tests + testapi.c : exercises the library public entry points + +The command: + + make -f Makefile.tests + +should be sufficient on an Unix system to build and exercise the tests +for the version of the library installed on the system. Note however +that there isn't backward compatibility provided so if the installed +version is older to the testsuite one, failing to compile or run the tests +is likely. In any event this won't work with an installed libxml2 older +than 2.6.20. +Building on other platfroms should be a matter of compiling the C files +like any other program using libxml2, running the test should be done +simply by launching the resulting executables. + +Daniel Veillard +Sun Jul 10 2005 diff --git a/doc/APIchunk0.html b/doc/APIchunk0.html index b5b5b981..31a028e7 100644 --- a/doc/APIchunk0.html +++ b/doc/APIchunk0.html @@ -13,29 +13,30 @@ A:link, A:visited, A:active { text-decoration: underline } F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Letter A:

A-Z
xmlCheckLanguageID
A-Za-z
xmlParseEncName
A-Za-z0-9
xmlParseEncName
@@ -71,6 +72,8 @@ A:link, A:visited, A:active { text-decoration: underline } xmlSchemaValueGetNext
Activation
xmlTextReaderRelaxNGSetSchema
xmlTextReaderRelaxNGValidate
+xmlTextReaderSchemaValidate
+xmlTextReaderSetSchema
Add
xmlACatalogAdd
xmlAddChild
xmlAddChildList
@@ -253,27 +256,28 @@ A:link, A:visited, A:active { text-decoration: underline } F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk1.html b/doc/APIchunk1.html index 7fe364cc..51c034a9 100644 --- a/doc/APIchunk1.html +++ b/doc/APIchunk1.html @@ -13,29 +13,30 @@ A:link, A:visited, A:active { text-decoration: underline } F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Letter C:

C14N
xmlC14NDocSaveTo
xmlC14NExecute
CATALOG
xmlLoadACatalog
@@ -346,27 +347,28 @@ A:link, A:visited, A:active { text-decoration: underline } F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk10.html b/doc/APIchunk10.html index 68a21e6b..249723bc 100644 --- a/doc/APIchunk10.html +++ b/doc/APIchunk10.html @@ -7,290 +7,560 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index b-b for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index b-b for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index a-a for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index a-a for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter b:

back
xmlEntityReferenceFunc
-xmlKeepBlanksDefault
-xmlNanoFTPGet
-xmlNanoFTPList
-xmlRelaxNGDump
-xmlSetEntityReferenceFunc
-
badly
xmlParseExternalID
-
bahaviour
xmlTextReaderNormalization
-
balanced
xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlParseInNodeContext
-
bar
xmlXPathTranslateFunction
-
base64
xmlTextWriterWriteBase64
-
based
xmlGetCompressMode
-xmlGetDocCompressMode
-xmlGetNodePath
-xmlNewEntityInputStream
-xmlNewInputFromFile
-xmlNewStringInputStream
-xmlRelaxNGNewValidCtxt
-xmlSchemaNewStringValue
-xmlSchemaNewValidCtxt
-xmlSetCompressMode
-xmlSetDocCompressMode
-xmlStrcat
-xmlStrdup
-xmlStrsub
-xmlURIEscape
-
basically
getSystemId
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter a:

a-z
xmlCheckLanguageID
+xmlURIEscapeStr
+
a-zA-Z
IS_ASCII_LETTER
+
a-zA-Z0-9
IS_PUBIDCHAR
+
a-zA-Z0-9_
xmlParseVersionNum
+
a@b
xmlNanoFTPProxy
+
abc
xmlXPathTranslateFunction
+
abc-
xmlXPathTranslateFunction
+
able
xmlEntityReferenceFunc
+xmlFindCharEncodingHandler
+xmlGetCharEncodingHandler
+xmlParserInputBufferGrow
+xmlXPathOrderDocElems
+
about
_xmlParserCtxt
+xmlDebugDumpString
+xmlShellDir
+xmlTextWriterWriteRawLen
+
above
xmlParseMarkupDecl
+xmlXPathSubstringFunction
+
absent
XML_SCHEMAS_ELEM_BLOCK_ABSENT
+XML_SCHEMAS_ELEM_BLOCK_EXTENSION
+XML_SCHEMAS_ELEM_FINAL_ABSENT
+XML_SCHEMAS_TYPE_VARIETY_ABSENT
+
absoluteURI
xmlParseURI
+xmlParseURIReference
+
abstract
XML_SCHEMAS_ELEM_ABSTRACT
+XML_SCHEMAS_TYPE_ABSTRACT
+
accept
xmlGetNoNsProp
xmlIsMixedElement
-xmlSAX2GetSystemId
-xmlValidateAttributeDecl
-xmlValidateDocument
-xmlValidateDocumentFinal
-xmlValidateDtdFinal
-xmlValidateElementDecl
-xmlValidateNotationDecl
-xmlValidateOneAttribute
-xmlValidateOneElement
-xmlValidateOneNamespace
-xmlValidateRoot
-
basis
xmlSubstituteEntitiesDefault
-
bear
xmlParseAttributeType
-
becomes
xmlAddAttributeDecl
-
before
htmlInitAutoClose
-xmlBuildRelativeURI
-xmlCatalogAdd
-xmlCurrentChar
+
acceptable
xmlRegExecErrInfo
+xmlRegExecNextValues
+
accepted
IS_BYTE_CHAR
+xmlCatalogGetDefaults
+xmlCatalogSetDefaultPrefer
+xmlCatalogSetDefaults
+xmlRegExecErrInfo
+xmlRegExecNextValues
+xmlTextReaderNormalization
+
accepting
xmlTextReaderNormalization
+
access
xmlGcMemGet
xmlGcMemSetup
-xmlGetLineNo
-xmlInitParser
+xmlMemGet
xmlMemSetup
+xmlNewMutex
+xmlNewRMutex
+
accessed
xmlTextReaderCurrentDoc
+xmlTextReaderCurrentNode
+
accesses
xmlCreateURLParserCtxt
+xmlNoNetExternalEntityLoader
+
accommodate
xmlBufferResize
+
according
xmlBuildURI
+xmlDetectCharEncoding
+xmlSAXVersion
+xmlSchemaValidateFacetWhtsp
+xmlURIEscape
+xmlXPathCompareValues
+
accordingly
xmlParseCharEncoding
+xmlParserHandlePEReference
+xmlParserHandleReference
+xmlValidCtxtNormalizeAttributeValue
+
account
xmlSchemaValidateFacetWhtsp
+
act
xmlStreamPush
+xmlStreamPushAttr
+
activate
xmlTextReaderSetParserProp
+
activated
DEBUG_MEMORY
+xmlAutomataNewAllTrans
+xmlAutomataNewCountTrans
+xmlAutomataNewCountTrans2
+xmlAutomataNewOnceTrans
+xmlAutomataNewOnceTrans2
+xmlAutomataNewTransition
+xmlAutomataNewTransition2
xmlTextReaderRelaxNGSetSchema
xmlTextReaderRelaxNGValidate
-xmlTextReaderSetParserProp
-xmlValidGetValidElements
-xmlXPathNextPreceding
-xmlXPathStringFunction
-
beginning
xmlBufferAddHead
-xmlBufferShrink
-xmlByteConsumed
-xmlListInsert
-xmlListPushFront
+xmlTextReaderSchemaValidate
+xmlTextReaderSetSchema
+
activation
xmlGetLineNo
+
acts
xmlGetProp
+
actual
xmlGetUTF8Char
+xmlSchemaValidateLengthFacet
+xmlSchemaValidateLengthFacetWhtsp
+xmlXPathFreeNodeSet
+xmlXPtrFreeLocationSet
+
actually
_xmlDoc
+_xmlParserCtxt
+setDocumentLocator
+setDocumentLocatorSAXFunc
+xmlAddEncodingAlias
+xmlCurrentChar
+xmlDelEncodingAlias
+xmlGetEncodingAlias
+xmlNewCharEncodingHandler
+xmlParseCharEncoding
+xmlParseNotationDecl
+xmlSAX2SetDocumentLocator
xmlStringCurrentChar
xmlTextReaderByteConsumed
-xmlValidGetValidElements
-
begins
_xmlParserNodeInfo
-
behaves
IS_LETTER_CH
-
behavior
htmlSAXParseDoc
-xmlCurrentChar
-xmlKeepBlanksDefault
-xmlSubstituteEntitiesDefault
-
behaviour
htmlNodeDump
+xmlXPathOrderDocElems
+
actuate
xlinkExtendedLinkFunk
+
add
xmlACatalogAdd
+xmlBufferAdd
+xmlBufferAddHead
+xmlBufferCat
+xmlBufferWriteCHAR
+xmlBufferWriteChar
+xmlBufferWriteQuotedString
+xmlCatalogAdd
+xmlListPushBack
+xmlListPushFront
+xmlXPathAddValues
+xmlXPathNodeSetAdd
+xmlXPathNodeSetAddNs
+xmlXPathNodeSetAddUnique
+xmlXPtrLocationSetAdd
+
added
attribute
+attributeSAXFunc
+htmlDocContentDumpFormatOutput
+htmlDocContentDumpOutput
+htmlNodeDump
htmlNodeDumpFile
htmlNodeDumpFileFormat
htmlNodeDumpFormatOutput
htmlNodeDumpOutput
-resolveEntity
-resolveEntitySAXFunc
-xmlElemDump
-xmlFreeNode
-xmlFreeNodeList
-xmlNodeDump
-xmlNodeDumpOutput
-xmlNodeGetSpacePreserve
-xmlNodeSetSpacePreserve
-xmlSAX2ResolveEntity
-xmlTextReaderSetParserProp
-xmlUTF8Strsize
-
below
_xmlParserCtxt
-xmlParseExternalID
-
better
resolveEntity
-resolveEntitySAXFunc
-xmlNormalizeWindowsPath
-xmlSAX2ResolveEntity
-xmlSAXDefaultVersion
-xmlSAXUserParseMemory
-
between
xmlAutomataNewCountTrans
+htmlSaveFileEnc
+htmlSaveFileFormat
+xmlAddChild
+xmlAddNextSibling
+xmlAddPrevSibling
+xmlDocDumpFormatMemory
+xmlDocDumpFormatMemoryEnc
+xmlDocFormatDump
+xmlNewChild
+xmlNewTextChild
+xmlSaveFormatFile
+xmlSaveFormatFileEnc
+xmlSaveFormatFileTo
+xmlStrcat
+xmlStrncat
+xmlXPathNodeSetMerge
+xmlXPtrLocationSetMerge
+
adding
xmlLoadSGMLSuperCatalog
+xmlNanoHTTPMethod
+xmlNanoHTTPMethodRedir
+
addition
xmlHashAddEntry
+xmlHashAddEntry2
+xmlHashAddEntry3
+xmlHashUpdateEntry
+xmlHashUpdateEntry2
+xmlHashUpdateEntry3
+xmlXPathSubstringFunction
+
additional
xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
+
address
xmlModuleSymbol
+xmlNewTextWriterDoc
+
adds
xmlAutomataNewAllTrans
+xmlAutomataNewCountTrans
xmlAutomataNewCountTrans2
+xmlAutomataNewCountedTrans
+xmlAutomataNewCounterTrans
+xmlAutomataNewEpsilon
xmlAutomataNewOnceTrans
xmlAutomataNewOnceTrans2
-xmlCatalogSetDefaultPrefer
-xmlParseQuotedString
-xmlXPathDifference
-
beyond
xmlXPathStringFunction
-
binary
xmlCharInRange
-xmlEncodeEntities
-xmlParseNamespace
-xmlParseQuotedString
-xmlTextWriterWriteBase64
-xmlTextWriterWriteBinHex
-
bindings
_xmlSchema
-
bit
xmlStrEqual
-
blanks
xmlKeepBlanksDefault
-xmlSkipBlankChars
-
bloc
xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlParseExternalEntity
-
blockDefault
XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION
-XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION
-XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION
-
blocked
xmlGcMemSetup
-xmlMemSetup
-
blocking
xmlNanoFTPRead
-xmlNanoHTTPRead
-
blocks
IS_CHAR
-XML_SAX2_MAGIC
-initdocbDefaultSAXHandler
-inithtmlDefaultSAXHandler
-initxmlDefaultSAXHandler
-xmlMemBlocks
-xmlMemDisplay
-xmlMemoryDump
-
book1
xmlBuildRelativeURI
-
bool
xmlBoolToText
-
both
xmlBufferFree
-xmlNanoFTPClose
-xmlNodeGetBase
-xmlParseElementChildrenContentDecl
-xmlParseMarkupDecl
-xmlParseStartTag
-xmlStrEqual
-xmlXPathCompareValues
-xmlXPathIntersection
-
boundaries
_xmlParserCtxt
-xmlSearchNs
-
boundary
xmlParseElementChildrenContentDecl
-xmlParseElementMixedContentDecl
-
bracket
xmlParseCharData
-
branch
xmlDOMWrapRemoveNode
-xmlSchemaValidateOneElement
-
break
_xmlError
-xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-xmlLineNumbersDefault
-
breaking
xmlEncodeEntities
-
breaks
xmlCurrentChar
-
broke
XML_CAST_FPTR
-
broken
xmlParseBalancedChunkMemoryRecover
-xmlTextReaderNormalization
-
buf
xmlSaveFileTo
+xmlAutomataNewTransition
+xmlAutomataNewTransition2
+xmlBufferWriteCHAR
+
adequate
xmlStringDecodeEntities
+xmlStringLenDecodeEntities
+
adjacent
xmlAddChild
+xmlAddChildList
+xmlAddPrevSibling
+xmlAddSibling
+
affect
xmlKeepBlanksDefault
+
affiliation
_xmlSchemaElement
+
afraid
xmlEncodeEntities
+
after
UTF8ToHtml
+UTF8Toisolat1
+docbEncodeEntities
+htmlEncodeEntities
+isolat1ToUTF8
+xmlAutomataCompile
+xmlCharEncodingInputFunc
+xmlCharEncodingOutputFunc
+xmlNanoFTPCheckResponse
+xmlNanoFTPFreeCtxt
+xmlNanoFTPGetResponse
+xmlReconciliateNs
+xmlSaveFileTo
xmlSaveFormatFileTo
-
buffered
xmlAllocOutputBuffer
-xmlAllocParserInputBuffer
-xmlFreeParserInputBuffer
-xmlOutputBufferClose
-xmlOutputBufferCreateFd
-xmlOutputBufferCreateFile
-xmlOutputBufferCreateFilename
-xmlOutputBufferCreateIO
-xmlOutputBufferFlush
-xmlOutputBufferWrite
-xmlOutputBufferWriteEscape
-xmlOutputBufferWriteString
-xmlParserInputBufferCreateFd
-xmlParserInputBufferCreateFile
-xmlParserInputBufferCreateFilename
-xmlParserInputBufferCreateIO
-xmlParserInputBufferCreateMem
-xmlParserInputBufferCreateStatic
-xmlParserInputBufferGrow
-xmlParserInputBufferPush
-xmlParserInputBufferRead
-xmlTextReaderGetRemainder
-
builded
XML_SCHEMAS_ATTRGROUP_GLOBAL
-XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED
-
building
_xmlParserCtxt
-docbSAXParseDoc
-docbSAXParseFile
-htmlSAXParseFile
-ignorableWhitespace
-ignorableWhitespaceSAXFunc
-xmlBuildURI
-xmlSAX2IgnorableWhitespace
-xmlSAXParseDoc
-xmlSAXParseEntity
-xmlSAXParseFile
-xmlSAXParseFileWithData
-xmlSAXParseMemory
-xmlSAXParseMemoryWithData
-xmlShellPwd
-
builds
xmlRegexpCompile
-
built
_xmlParserCtxt
-xmlCleanupParser
-xmlParseAttributeType
-xmlParseEnumeratedType
-xmlParseEnumerationType
-xmlParseNotationType
-xmlParseURI
-xmlRecoverDoc
-xmlRecoverFile
-xmlRecoverMemory
-xmlRelaxNGParse
-xmlSchemaGetBuiltInType
-xmlSchemaGetCanonValue
-xmlSchemaGetCanonValueWhtsp
-xmlSchemaParse
-xmlTextReaderNextSibling
-
built-in
xmlSchemaGetBuiltInListSimpleTypeItemType
-xmlSchemaGetBuiltInType
-xmlSchemaIsBuiltInTypeFacet
+xmlValidGetValidElements
+xmlXPathNextFollowing
+xmlXPathStringFunction
+
again
xmlCreatePushParserCtxt
+
against
LIBXML_TEST_VERSION
+XML_SCHEMAS_ELEM_INTERNAL_CHECKED
+checkNamespace
+xmlCheckVersion
+xmlRegexpCompile
+xmlRegexpExec
+xmlSchemaValidateFacet
xmlSchemaValidateFacetWhtsp
xmlSchemaValidateLengthFacet
xmlSchemaValidateLengthFacetWhtsp
-
builtin
XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE
-initGenericErrorDefaultFunc
-
bunch
xmlParseNamespace
-
bypass
xmlParseCatalogFile
+xmlSchemaValidateListSimpleTypeFacet
+xmlShellValidate
+xmlValidateDtd
+
aggregate
xmlNodeBufGetContent
+xmlNodeGetContent
+
alias
xmlAddEncodingAlias
+xmlDelEncodingAlias
+xmlGetEncodingAlias
+
aliases
xmlCleanupCharEncodingHandlers
+xmlCleanupEncodingAliases
+
aliasing
XML_CAST_FPTR
+xmlSearchNsByHref
+
allocate
_xmlDoc
+xmlBufferGrow
+xmlBuildQName
+xmlMallocAtomicLoc
+xmlMallocLoc
+xmlMemMalloc
+xmlMemRealloc
+xmlNewMutex
+xmlNewRMutex
+xmlReallocLoc
+xmlXPathObjectCopy
+
allocation
xmlBufferSetAllocationScheme
+xmlGetBufferAllocationScheme
+xmlMallocAtomicLoc
+xmlMallocLoc
+xmlMemMalloc
+xmlMemRealloc
+xmlMemStrdupLoc
+xmlMemoryStrdup
+xmlNormalizeURIPath
+xmlReallocLoc
+xmlSetBufferAllocationScheme
+xmlTextReaderGetRemainder
+
allocations
xmlGcMemGet
+xmlGcMemSetup
+xmlMemSetup
+xmlParserInputDeallocate
+
allocator
DEBUG_MEMORY
+
allocators
xmlGcMemGet
+xmlGcMemSetup
+
allow
XML_SCHEMAS_ATTR_GLOBAL
+XML_SCHEMAS_ATTR_NSDEFAULT
+XML_SCHEMAS_ELEM_NSDEFAULT
+docbCreatePushParserCtxt
+htmlAttrAllowed
+htmlNodeStatus
+xmlAutomataNewAllTrans
+xmlCheckUTF8
+xmlCreatePushParserCtxt
+xmlKeepBlanksDefault
+xmlNewDocNode
+xmlNewDocNodeEatName
+xmlSearchNs
+xmlShell
+xmlValidateNCName
+xmlValidateNMToken
+xmlValidateName
+xmlValidateQName
+
allowable
xmlSkipBlankChars
+
allowed
_htmlElemDesc
+_xmlElement
+_xmlSchemaWildcard
+htmlElementAllowedHere
+htmlElementAllowedHereDesc
+htmlNodeStatus
+xmlAutomataNewAllTrans
+xmlAutomataNewCounterTrans
+xmlIsLetter
+xmlNodeDump
+xmlNodeDumpOutput
+xmlParseBalancedChunkMemory
+xmlParseBalancedChunkMemoryRecover
+xmlParseInNodeContext
+xmlValidGetPotentialChildren
+xmlXPathNormalizeFunction
+
allowing
xmlNoNetExternalEntityLoader
+xmlTextReaderCurrentDoc
+xmlTextReaderCurrentNode
+
allows
htmlAutoCloseTag
+htmlIsAutoClosed
+xmlCatalogAdd
+xmlNewChild
+xmlTextReaderConstString
+
already
XML_SCHEMAS_ATTRGROUP_GLOBAL
+XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED
+_xmlParserInput
+xmlAddNextSibling
+xmlAddPrevSibling
+xmlAddSibling
+xmlBuildRelativeURI
+xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
+xmlFreeFunc
+xmlGcMemSetup
+xmlMemSetup
+xmlParseCharEncoding
+xmlParseNotationType
+xmlParserInputGrow
+xmlParserInputRead
+xmlReallocFunc
+xmlReplaceNode
+xmlXPathNodeSetAddUnique
+xmlXPtrLocationSetAdd
+
also
xmlCharEncodingOutputFunc
+xmlCheckHTTPInput
+xmlHasProp
+xmlKeepBlanksDefault
+xmlNanoFTPProxy
+xmlStreamPush
+xmlStreamPushAttr
+xmlTextReaderPreserve
+xmlTextReaderPreservePattern
+xmlXPathStringEvalNumber
+
alternative
xmlTextWriterStartDTD
+xmlTextWriterWriteDTD
+xmlTextWriterWriteDTDEntity
+xmlTextWriterWriteDTDExternalEntity
+xmlTextWriterWriteDTDExternalEntityContents
+xmlTextWriterWriteDTDNotation
+xmlTextWriterWriteFormatDTD
+xmlTextWriterWriteVFormatDTD
+
always
INPUT_CHUNK
+xmlDecodeEntities
+xmlSubstituteEntitiesDefault
+
amd
xmlCatalogIsEmpty
+
amount
INPUT_CHUNK
+_xmlParserInputBuffer
+xmlMemUsed
+xmlParserInputBufferGrow
+xmlParserInputBufferRead
+
amp
xmlParseEntityRef
+xmlParseSDDecl
+xmlParserHandleReference
+
ampersand
xmlNewTextChild
+
analysis
_xmlParserCtxt
+_xmlValidCtxt
+
analyze
xmlParseURI
+xmlParseURIReference
+
analyzed
_xmlParserInput
+
ancestor
xmlNodeGetLang
+xmlNodeGetSpacePreserve
+xmlShellPwd
+xmlXPathLangFunction
+xmlXPathNextAncestor
+
ancestor-or-self
xmlXPathNextAncestorOrSelf
+
ancestors
xmlXPathNextAncestor
+xmlXPathNextAncestorOrSelf
+xmlXPathNextPreceding
+
anchored
xmlGetNsProp
+xmlHasNsProp
+
angle
xmlParseCharData
+
annotation
_xmlSchemaAnnot
+
another
xmlCharEncodingOutputFunc
+xmlInputMatchCallback
+xmlOutputMatchCallback
+xmlSetGenericErrorFunc
+
anySimpleType
xmlSchemaNewStringValue
+
anyURI
xmlSchemaGetCanonValue
+
anymore
XML_SCHEMAS_ANYATTR_LAX
+XML_SCHEMAS_ANYATTR_SKIP
+XML_SCHEMAS_ANYATTR_STRICT
+XML_SCHEMAS_ELEM_NSDEFAULT
+xmlNamespaceParseNCName
+xmlNamespaceParseNSDef
+xmlNamespaceParseQName
+
anyway
xmlRecoverDoc
+xmlRecoverFile
+xmlRecoverMemory
+xmlValidateNotationDecl
+
apart
xmlXPathStringFunction
+
apos
xmlParseEntityRef
+xmlParseSDDecl
+xmlParserHandleReference
+
appear
xmlNewTextChild
+xmlParseAttributeType
+xmlParseElementMixedContentDecl
+xmlParsePEReference
+xmlParseSDDecl
+xmlParseStartTag
+xmlParserHandlePEReference
+
appearing
xmlValidatePopElement
+xmlValidatePushElement
+
appears
xmlParseCharData
+xmlParseElementChildrenContentDecl
+xmlParseEntityRef
+xmlParseSDDecl
+
append
xmlCopyChar
+xmlCopyCharMultiByte
+xmlValidGetValidElements
+
appended
xmlParseAttValue
+xmlSchemaValueAppend
+
appending
xmlParseAttValue
+
appendix
xmlDetectCharEncoding
+
applicable
xmlCopyNode
+xmlDocCopyNode
+
application
_xmlAttr
+_xmlAttribute
+_xmlDoc
+_xmlDtd
+_xmlElement
+_xmlEntity
+_xmlNode
+_xmlNs
+resolveEntity
+resolveEntitySAXFunc
+xmlCheckVersion
+xmlCurrentChar
+xmlGetExternalEntityLoader
+xmlLineNumbersDefault
+xmlParseAttValue
+xmlSAX2ResolveEntity
+xmlSetExternalEntityLoader
+
applications
xmlSetGenericErrorFunc
+xmlSetStructuredErrorFunc
+
applied
xmlHashCopy
+xmlHashScan
+xmlHashScan3
+xmlHashScanFull
+xmlHashScanFull3
+
applies
xmlParseElementChildrenContentDecl
+xmlParseElementMixedContentDecl
+
apply
xmlListReverseWalk
+xmlListWalk
+xmlParseMarkupDecl
+xmlParseSDDecl
+xmlSchemaValPredefTypeNodeNoNorm
+xmlValidateRoot
+
applying
xmlGetNsList
+xmlXPathIdFunction
+
appropriate
xlinkIsLink
+xmlCheckHTTPInput
+xmlParseURIReference
+
arcs
xlinkExtendedLinkFunk
+
area
xmlBufferCreateStatic
+xmlMallocAtomicLoc
+xmlMallocLoc
+xmlMemMalloc
+xmlMemRealloc
+xmlParserInputBufferCreateMem
+xmlParserInputBufferCreateStatic
+xmlReallocLoc
+
areas
xmlGcMemGet
+xmlGcMemSetup
+xmlMemBlocks
+xmlMemShow
+
args
CHECK_ARITY
+x
+xmlParseBalancedChunkMemory
+xmlParseBalancedChunkMemoryRecover
+xmlParseCtxtExternalEntity
+xmlParseExternalEntity
+xmlXPtrRangeToFunction
+
around
xmlFileOpen
+
arrays
_xmlParserCtxt
+
arry
xmlParserInputBufferPush
+
asked
xmlParseReference
+
assume
xmlStrcat
+xmlStrdup
+
assumed
xmlCheckUTF8
+
assumes
xmlBuildRelativeURI
+
assuming
xmlSaveFileTo
+xmlSaveFormatFileTo
+
assure
xmlGetUTF8Char
+
atomic
xmlGcMemGet
+xmlGcMemSetup
+
attached
xmlTextReaderGetRemainder
+
attr
XML_SCHEMAS_ATTRGROUP_MARKED
+_xmlID
+_xmlRef
+
attribute-list
xmlParseDefaultDecl
+xmlParseEntityRef
+
augmented
docbParseDocument
+htmlParseDocument
+xmlParseDocument
+xmlParseExtParsedEnt
+xmlTextMerge
+
autark
xmlDOMWrapRemoveNode
+
authentication
xmlNanoHTTPAuthHeader
+
author
htmlNodeStatus
+
authority
_xmlURI
+
authorized
xmlValidGetValidElements
+
auto
htmlHandleOmittedElem
+
auto-repair
_htmlElemDesc
+
autoclose
htmlAutoCloseTag
+
autoclosed
htmlIsAutoClosed
+
autogeneration
xmlKeepBlanksDefault
+
automatically
xmlCharEncOutFunc
+xmlNewTextChild
+
autoreference
_xmlDoc
+
avoiding
xmlTextReaderNext
+xmlTextReaderNextSibling
+
aware
xmlGetProp

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk11.html b/doc/APIchunk11.html index bf222f00..754df2de 100644 --- a/doc/APIchunk11.html +++ b/doc/APIchunk11.html @@ -7,213 +7,70 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index c-c for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index c-c for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index b-b for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index b-b for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter c:

calculates
xmlUTF8Size
-
calling
_xmlXPathContext
-xmlBuildRelativeURI
-xmlC14NDocDumpMemory
-xmlCheckFilename
-xmlGetLineNo
-xmlTextReaderCurrentDoc
-xmlXPathAddValues
-xmlXPathDivValues
-xmlXPathModValues
-xmlXPathMultValues
-xmlXPathSubValues
-xmlXPathValueFlipSign
-
calls
xlinkNodeDetectFunc
-xmlXPathAxisFunc
-
came
xmlPopInput
-
cannot
xmlParseAttribute
-
canonic
xmlCanonicPath
-
canonical
xmlC14NDocDumpMemory
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlC14NExecute
-xmlGetCharEncodingName
-xmlSchemaGetCanonValue
-
canonicalization
xmlC14NDocDumpMemory
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlC14NExecute
-
canonicalized
xmlNormalizeWindowsPath
-
canonization
xmlC14NDocDumpMemory
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlC14NExecute
-
canonized
xmlC14NDocDumpMemory
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlC14NExecute
-
capable
xmlCheckUTF8
-
caracters
xmlOutputBufferWriteEscape
-
carried
xmlNewDocProp
-xmlNewNsProp
-xmlNewNsPropEatName
-xmlNewProp
-xmlNodeBufGetContent
-xmlNodeGetContent
-xmlNodeGetLang
-xmlNodeGetSpacePreserve
-xmlSetNsProp
-xmlSetProp
-xmlUnsetNsProp
-xmlUnsetProp
-
carries
xlinkIsLink
-
carrying
xlinkExtendedLinkFunk
-xlinkExtendedLinkSetFunk
-xlinkSimpleLinkFunk
-xmlIsID
-xmlIsRef
-xmlNewGlobalNs
-xmlNewNs
-
case-ignoring
xmlStrcasestr
-
cases
XML_SKIP_IDS
-xmlC14NExecute
-xmlParseElementContentDecl
-xmlScanName
-
cast
BAD_CAST
-CAST_TO_BOOLEAN
-CAST_TO_NUMBER
-CAST_TO_STRING
-xmlXPathConvertFunc
-
casting
XML_CAST_FPTR
-
cat
xmlShellCat
-
catalogs
xmlCatalogAddLocal
-xmlCatalogCleanup
-xmlCatalogFreeLocal
-xmlCatalogGetDefaults
-xmlCatalogLocalResolve
-xmlCatalogLocalResolveURI
-xmlCatalogSetDebug
-xmlCatalogSetDefaults
-xmlLoadCatalogs
-
category
xmlUCSIsCat
-
cause
xmlShellPrintXPathError
-
ceiling
xmlXPathCeilingFunction
-
certainly
xmlTextReaderGetRemainder
-
chained
xmlFreeNsList
-
change
htmlSetMetaEncoding
-xmlCtxtResetLastError
-xmlNanoFTPCwd
-xmlParseSDDecl
-xmlRelaxNGParse
-xmlResetLastError
-xmlSchemaCollapseString
-xmlSchemaParse
-xmlSchemaWhiteSpaceReplace
-xmlSubstituteEntitiesDefault
-xmlSwitchEncoding
-xmlSwitchInputEncoding
-xmlSwitchToEncoding
-
changed
xmlNodeSetBase
-xmlNodeSetLang
-xmlNodeSetName
-xmlNodeSetSpacePreserve
-xmlTextReaderSetParserProp
-xmlValidityErrorFunc
-xmlValidityWarningFunc
-
changes
xmlRegisterHTTPPostCallbacks
-xmlTextReaderClose
-
changing
xmlSubstituteEntitiesDefault
-xmlTextReaderSetParserProp
-
channel
xmlFileClose
-xmlFileRead
-xmlIOFTPClose
-xmlIOFTPOpen
-xmlIOFTPRead
-xmlIOHTTPClose
-xmlIOHTTPOpen
-xmlIOHTTPRead
-xmlOutputBufferClose
-xmlOutputBufferFlush
-xmlShellPrintXPathError
-
characters
ignorableWhitespace
-ignorableWhitespaceSAXFunc
-xmlCreatePushParserCtxt
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter b:

back
xmlEntityReferenceFunc
xmlKeepBlanksDefault
-xmlParseAttValue
-xmlStrPrintf
-xmlStrVPrintf
-xmlURIEscapeStr
-xmlUTF8Strlen
-xmlUTF8Strsize
-xmlValidCtxtNormalizeAttributeValue
-xmlValidNormalizeAttributeValue
-xmlXPathIdFunction
-xmlXPathNormalizeFunction
-xmlXPathStringLengthFunction
-xmlXPathSubstringFunction
-xmlXPathTranslateFunction
-
charencoding
xmlGetCharEncodingName
-
chars??
xmlTextWriterWriteRawLen
-
charset
xmlAllocParserInputBuffer
-xmlCreateIOParserCtxt
-xmlIOParseDTD
-xmlNewIOInputStream
-xmlOutputBufferCreateIO
-xmlParserInputBufferCreateFd
-xmlParserInputBufferCreateFile
-xmlParserInputBufferCreateFilename
-xmlParserInputBufferCreateIO
-xmlParserInputBufferCreateMem
-xmlParserInputBufferCreateStatic
-
checked
XML_SCHEMAS_ELEM_INTERNAL_CHECKED
-xmlNodeGetBase
-xmlNodeGetLang
-xmlNodeGetSpacePreserve
-xmlParseAttValue
-xmlParseAttributeType
-xmlSetNsProp
-
checking
xlinkIsLink
-xmlBufferWriteQuotedString
-xmlBuildURI
-xmlMemFree
-xmlUTF8Strlen
-
checkings
xmlValidateOneElement
-
checks
XML_SCHEMAS_ATTRGROUP_MARKED
-XML_SCHEMAS_TYPE_MARKED
-htmlAutoCloseTag
-htmlIsAutoClosed
-htmlNodeStatus
-xmlCheckFilename
-xmlCheckHTTPInput
-xmlCheckUTF8
-xmlNanoFTPInit
-xmlNanoHTTPInit
-xmlParseElementChildrenContentDecl
-xmlParseElementMixedContentDecl
-xmlReconciliateNs
+xmlNanoFTPGet
+xmlNanoFTPList
+xmlRelaxNGDump
+xmlSetEntityReferenceFunc
+
badly
xmlParseExternalID
+
bahaviour
xmlTextReaderNormalization
+
balanced
xmlParseBalancedChunkMemory
+xmlParseBalancedChunkMemoryRecover
+xmlParseInNodeContext
+
bar
xmlXPathTranslateFunction
+
base64
xmlTextWriterWriteBase64
+
based
xmlGetCompressMode
+xmlGetDocCompressMode
+xmlGetNodePath
+xmlNewEntityInputStream
+xmlNewInputFromFile
+xmlNewStringInputStream
+xmlRelaxNGNewValidCtxt
+xmlSchemaNewStringValue
+xmlSchemaNewValidCtxt
+xmlSchemaSAXPlug
+xmlSchemaSAXUnplug
+xmlSchemaValidateStream
+xmlSetCompressMode
+xmlSetDocCompressMode
+xmlStrcat
+xmlStrdup
+xmlStrsub
xmlURIEscape
-xmlURIUnescapeString
+
basically
getSystemId
+xmlIsMixedElement
+xmlSAX2GetSystemId
xmlValidateAttributeDecl
xmlValidateDocument
xmlValidateDocumentFinal
@@ -223,634 +80,224 @@ A:link, A:visited, A:active { text-decoration: underline } xmlValidateOneAttribute
xmlValidateOneElement
xmlValidateOneNamespace
-xmlXPathNodeSetContains
-
child-
_xmlAttr
-_xmlDoc
-_xmlDtd
-_xmlNode
-
childrens
_xmlEntity
-
childs
_xmlNode
-xmlIsMixedElement
-xmlValidGetValidElements
-
choice
xmlParseElementChildrenContentDecl
-
choices
xmlParseElementMixedContentDecl
-
choices:
xmlParseNotationDecl
-
chunk
docbParseChunk
-htmlParseChunk
-xmlEntityReferenceFunc
-xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlParseChunk
-xmlParseEntity
-xmlParseExternalEntity
-xmlParseInNodeContext
-xmlSAXParseEntity
-
circular
XML_SCHEMAS_ATTRGROUP_MARKED
-XML_SCHEMAS_ELEM_CIRCULAR
-XML_SCHEMAS_TYPE_MARKED
-
cleanly
xmlCheckHTTPInput
-
cleans
xmlNanoFTPScanProxy
-xmlNanoHTTPScanProxy
-
cleanup
xmlCleanupGlobals
-xmlCleanupThreads
-xmlNanoFTPCleanup
-
clear
xmlListMerge
-
clears
xmlCleanupInputCallbacks
-xmlCleanupOutputCallbacks
-
client
xmlKeepBlanksDefault
-
close
htmlAutoCloseTag
-htmlCtxtReadIO
-htmlIsAutoClosed
-htmlReadIO
-xmlCharEncCloseFunc
-xmlCreateIOParserCtxt
-xmlCtxtReadIO
-xmlInputCloseCallback
-xmlModuleClose
-xmlOutputBufferClose
-xmlOutputBufferCreateIO
-xmlOutputCloseCallback
-xmlParserInputBufferCreateIO
-xmlReadIO
-xmlReaderForIO
-xmlReaderNewIO
-xmlSaveToIO
-xmlTextReaderClose
-
closed
xmlCtxtReadFd
-xmlModuleClose
-xmlNewTextWriter
-xmlReadFd
-xmlReaderForFd
-xmlReaderNewFd
-xmlTextWriterEndDocument
-
closes
xmlNanoHTTPClose
-xmlNanoHTTPSave
-
closest
xmlXPathCeilingFunction
-xmlXPathFloorFunction
-xmlXPathRoundFunction
-
closing
htmlInitAutoClose
-xmlNanoFTPFreeCtxt
-xmlParseElementChildrenContentDecl
-xmlParseStartTag
-
cncerning
xmlDebugDumpDocumentHead
-
coding
xmlSAXDefaultVersion
-
collapse
XML_SCHEMAS_FACET_COLLAPSE
-XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE
-
collect
DEBUG_MEMORY
-xmlIOHTTPOpenW
-
collected
xmlGcMemGet
-xmlGcMemSetup
-
colon
xmlLoadCatalogs
-
column
_xmlError
-getColumnNumber
-xmlSAX2GetColumnNumber
-xmlTextReaderGetParserColumnNumber
-
com
getSystemId
+xmlValidateRoot
+
basis
xmlSubstituteEntitiesDefault
+
bear
xmlParseAttributeType
+
becomes
xmlAddAttributeDecl
+
before
htmlInitAutoClose
xmlBuildRelativeURI
-xmlSAX2GetSystemId
-
combining
IS_COMBINING_CH
-
come
xmlStreamPush
-xmlStreamPushAttr
-
coment
xmlTextWriterEndComment
-
comes
xmlValidityErrorFunc
-xmlValidityWarningFunc
-
coming
xmlXIncludeProcessNode
-
command
ftpDataCallback
-ftpListCallback
-xmlNanoFTPCheckResponse
-xmlNanoFTPGetResponse
-xmlNanoFTPQuit
-xmlShellDu
-
commandline
xmlShell
-
commands
xmlShellPwd
-
comment
HTML_COMMENT_NODE
-comment
-commentSAXFunc
-xmlNewComment
-xmlNewDocComment
-xmlParseComment
-xmlTextWriterStartComment
-xmlTextWriterWriteComment
-xmlTextWriterWriteFormatComment
-xmlTextWriterWriteVFormatComment
-xmlXPathIsNodeType
-
comments
xmlC14NDocDumpMemory
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlC14NExecute
-xmlDocGetRootElement
-xmlDocSetRootElement
-xmlParseComment
-
commodity
xmlKeepBlanksDefault
-
common
_xmlDoc
-_xmlDtd
-_xmlNode
-
comp
xmlFreePattern
-xmlFreePatternList
-xmlXPathFreeCompExpr
-
compare
xmlListDataCompare
-xmlUTF8Charcmp
-xmlXPathCompareValues
-
compared
xmlXPathCompareValues
-
compares
xmlUTF8Charcmp
-
comparing
xmlXPathCompareValues
-
comparison
xmlHashScan3
-xmlHashScanFull3
-xmlListCreate
-xmlParseCharEncoding
-xmlStrcasecmp
-xmlStrcmp
-xmlStrncasecmp
-xmlStrncmp
-xmlXPathCompareValues
-
comparisons
xmlTextReaderConstString
-xmlXPathSubstringFunction
-
compatibility
LIBXML_LEGACY_ENABLED
-xmlChildrenNode
-xmlCopyChar
-xmlEncodeEntities
+xmlCatalogAdd
+xmlCurrentChar
+xmlGcMemSetup
+xmlGetLineNo
+xmlInitParser
+xmlMemSetup
+xmlTextReaderRelaxNGSetSchema
+xmlTextReaderRelaxNGValidate
+xmlTextReaderSchemaValidate
+xmlTextReaderSetParserProp
+xmlTextReaderSetSchema
+xmlValidGetValidElements
+xmlXPathNextPreceding
+xmlXPathStringFunction
+
beginning
xmlBufferAddHead
+xmlBufferShrink
+xmlByteConsumed
+xmlListInsert
+xmlListPushFront
+xmlStringCurrentChar
+xmlTextReaderByteConsumed
+xmlValidGetValidElements
+
begins
_xmlParserNodeInfo
+
behaves
IS_LETTER_CH
+
behavior
htmlSAXParseDoc
+xmlCurrentChar
xmlKeepBlanksDefault
-xmlParseCharData
-xmlParseComment
+xmlSubstituteEntitiesDefault
+
behaviour
htmlNodeDump
+htmlNodeDumpFile
+htmlNodeDumpFileFormat
+htmlNodeDumpFormatOutput
+htmlNodeDumpOutput
+resolveEntity
+resolveEntitySAXFunc
+xmlElemDump
+xmlFreeNode
+xmlFreeNodeList
+xmlNodeDump
+xmlNodeDumpOutput
+xmlNodeGetSpacePreserve
+xmlNodeSetSpacePreserve
+xmlSAX2ResolveEntity
+xmlTextReaderSetParserProp
+xmlUTF8Strsize
+
below
_xmlParserCtxt
+xmlParseExternalID
+
better
resolveEntity
+resolveEntitySAXFunc
+xmlNormalizeWindowsPath
+xmlSAX2ResolveEntity
+xmlSAXDefaultVersion
+xmlSAXUserParseMemory
+
between
xmlAutomataNewCountTrans
+xmlAutomataNewCountTrans2
+xmlAutomataNewOnceTrans
+xmlAutomataNewOnceTrans2
+xmlCatalogSetDefaultPrefer
+xmlParseQuotedString
+xmlXPathDifference
+
beyond
xmlXPathStringFunction
+
binary
xmlCharInRange
+xmlEncodeEntities
xmlParseNamespace
xmlParseQuotedString
-xmlRootNode
-
compatible
LIBXML_TEST_VERSION
-xmlShellPwd
-
compilation
LIBXML_VERSION_EXTRA
-xmlPatterncompile
-xmlXPathCompile
-xmlXPathCtxtCompile
-
compile
xmlPatterncompile
-
compile-time
docbCreateFileParserCtxt
-docbParseFile
-docbSAXParseFile
-htmlCreateFileParserCtxt
-htmlParseFile
-htmlSAXParseFile
-xmlCreateEntityParserCtxt
-xmlCreateFileParserCtxt
-xmlCreateURLParserCtxt
-xmlOutputBufferCreateFilename
-xmlParseFile
-xmlParserInputBufferCreateFilename
-xmlRecoverFile
-xmlSAXParseFile
-xmlSAXParseFileWithData
-
compiled
LIBXML_AUTOMATA_ENABLED
-LIBXML_LEGACY_ENABLED
-LIBXML_MODULES_ENABLED
-LIBXML_REGEXP_ENABLED
-LIBXML_SCHEMAS_ENABLED
-LIBXML_TEST_VERSION
-LIBXML_UNICODE_ENABLED
-xmlAutomataCompile
-xmlCheckVersion
-xmlGetLastError
-xmlPatterncompile
-xmlRegexpCompile
-xmlRegexpExec
-xmlRegexpIsDeterminist
-xmlRegexpPrint
-xmlSaveFile
-xmlSaveFormatFile
-xmlXPathCompiledEval
-xmlXPathDebugDumpCompExpr
-
compiled-in
xmlCleanupInputCallbacks
-xmlCleanupOutputCallbacks
-xmlPopInputCallbacks
-xmlRegisterDefaultInputCallbacks
-xmlRegisterDefaultOutputCallbacks
-
compiling
xmlRelaxNGNewDocParserCtxt
-
complement
xmlXPathStringEvalNumber
-
complete
XML_COMPLETE_ATTRS
-XML_SCHEMAS_WILDCARD_COMPLETE
-_xmlParserCtxt
-xmlACatalogResolve
-xmlACatalogResolveURI
-xmlCatalogLocalResolve
-xmlCatalogLocalResolveURI
-xmlCatalogResolve
-xmlCatalogResolveURI
-
completed
xmlValidateDocumentFinal
-
completely
xmlGetUTF8Char
-xmlNodeGetBase
-
complex
XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION
-XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION
-
complexType
XML_SCHEMAS_TYPE_ABSTRACT
-XML_SCHEMAS_TYPE_BLOCK_DEFAULT
-XML_SCHEMAS_TYPE_BLOCK_EXTENSION
-XML_SCHEMAS_TYPE_BLOCK_RESTRICTION
-XML_SCHEMAS_TYPE_FINAL_EXTENSION
-XML_SCHEMAS_TYPE_FINAL_RESTRICTION
-XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD
-
complicated
xmlBuildRelativeURI
-
components
_xmlSchema
-
compound
xmlXPathFreeNodeSet
-xmlXPtrFreeLocationSet
-
compress
xmlNewTextWriterDoc
-xmlNewTextWriterFilename
-xmlNewTextWriterMemory
-xmlNewTextWriterPushParser
-xmlNewTextWriterTree
-
compressed
_xmlParserInputBuffer
-docbCreateFileParserCtxt
-docbParseFile
-docbSAXParseFile
-htmlCreateFileParserCtxt
-htmlParseFile
-htmlSAXParseFile
-xmlCreateEntityParserCtxt
-xmlCreateFileParserCtxt
-xmlCreateURLParserCtxt
-xmlOutputBufferCreateFilename
-xmlParseFile
-xmlParserInputBufferCreateFilename
-xmlRecoverFile
-xmlSAXParseFile
-xmlSAXParseFileWithData
-xmlSAXUserParseFile
-
compression
_xmlDoc
-xmlC14NDocSave
-xmlGetCompressMode
-xmlGetDocCompressMode
-xmlIOHTTPOpenW
-xmlNewTextWriterMemory
-xmlNewTextWriterPushParser
-xmlOutputBufferCreateFilename
-xmlSaveFile
-xmlSaveFormatFile
-xmlSetCompressMode
-xmlSetDocCompressMode
-
comprising
xmlXPathIntersection
-
computation
xmlXPathOrderDocElems
-
compute
xmlUTF8Strlen
-
computed
XML_SCHEMAS_TYPE_FACETSNEEDVALUE
-_xmlEntity
-xmlByteConsumed
-xmlSchemaValPredefTypeNode
-xmlSchemaValPredefTypeNodeNoNorm
-xmlSchemaValidateLengthFacet
-xmlSchemaValidateLengthFacetWhtsp
-xmlSchemaValidatePredefinedType
-xmlSchemaValueAppend
-xmlSchemaValueGetAsBoolean
-xmlSchemaValueGetAsString
-xmlSchemaValueGetNext
-xmlTextReaderByteConsumed
-
computes
xmlSchemaCheckFacet
-
concat
xmlXPathConcatFunction
-
concatenated
xmlStrcat
-
concatenation
xmlXPathConcatFunction
-
condition
xmlSchemaValidateFacet
-xmlSchemaValidateFacetWhtsp
-
conditionalSect
xmlParseExternalSubset
-
configured
DEBUG_MEMORY
-DEBUG_MEMORY_LOCATION
-LIBXML_C14N_ENABLED
-LIBXML_CATALOG_ENABLED
-LIBXML_DEBUG_ENABLED
-LIBXML_DEBUG_RUNTIME
-LIBXML_DOCB_ENABLED
-LIBXML_FTP_ENABLED
-LIBXML_HTML_ENABLED
-LIBXML_HTTP_ENABLED
-LIBXML_OUTPUT_ENABLED
-LIBXML_PATTERN_ENABLED
-LIBXML_PUSH_ENABLED
-LIBXML_READER_ENABLED
-LIBXML_SAX1_ENABLED
-LIBXML_THREAD_ENABLED
-LIBXML_TREE_ENABLED
-LIBXML_VALID_ENABLED
-LIBXML_WRITER_ENABLED
-LIBXML_XINCLUDE_ENABLED
-LIBXML_XPATH_ENABLED
-LIBXML_XPTR_ENABLED
-WITHOUT_TRIO
-WITH_TRIO
-
conforming
xmlRegexpCompile
-
conforms
xmlCheckLanguageID
-xmlSchemaValPredefTypeNode
-xmlSchemaValPredefTypeNodeNoNorm
-xmlSchemaValidatePredefinedType
-xmlValidateNCName
-xmlValidateNMToken
-xmlValidateName
-xmlValidateQName
-
conjunction
xmlSchemaIsBuiltInTypeFacet
-
connection
xmlNanoFTPClose
-xmlNanoFTPCloseConnection
-xmlNanoFTPConnect
-xmlNanoFTPConnectTo
-xmlNanoFTPFreeCtxt
-xmlNanoFTPGetConnection
-xmlNanoFTPGetSocket
-xmlNanoFTPRead
-xmlNanoFTPUpdateURL
-xmlNanoHTTPClose
-xmlNanoHTTPMethod
-xmlNanoHTTPMethodRedir
-xmlNanoHTTPOpen
-xmlNanoHTTPOpenRedir
+xmlTextWriterWriteBase64
+xmlTextWriterWriteBinHex
+
bindings
_xmlSchema
+
bit
xmlStrEqual
+
blanks
xmlKeepBlanksDefault
+xmlSkipBlankChars
+
bloc
xmlParseBalancedChunkMemory
+xmlParseBalancedChunkMemoryRecover
+xmlParseExternalEntity
+
blockDefault
XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION
+XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION
+XML_SCHEMAS_BLOCK_DEFAULT_SUBSTITUTION
+
blocked
xmlGcMemSetup
+xmlMemSetup
+
blocking
xmlNanoFTPRead
xmlNanoHTTPRead
-
connector
xmlParseElementChildrenContentDecl
-
cononical
xmlSchemaGetCanonValue
-xmlSchemaGetCanonValueWhtsp
-
consequent
_xmlError
-
consideration
xmlBuildRelativeURI
-
considered
xmlHashScan3
-xmlHashScanFull3
-xmlParserInputBufferRead
-xmlXPathSubstringFunction
-
consist
xmlXPathNextAncestor
-
constant
XML_SAX2_MAGIC
-xmlByteConsumed
-
constraint
_xmlSchemaWildcard
-_xmlSchemaWildcardNs
-xmlParseEntityRef
-xmlValidateNotationDecl
-
constraints
XML_SCHEMAS_ELEM_INTERNAL_CHECKED
-xmlParseAttributeType
-xmlParseDefaultDecl
-xmlValidGetValidElements
-
construct
xmlParseElementChildrenContentDecl
-
construction
xmlCanonicPath
-
constructs
xmlParseNamespace
-
consumed
UTF8ToHtml
-UTF8Toisolat1
-_xmlParserInput
-_xmlParserInputBuffer
-docbEncodeEntities
-htmlEncodeEntities
-isolat1ToUTF8
-xmlCharEncodingInputFunc
-xmlCharEncodingOutputFunc
-xmlGetUTF8Char
-xmlParserInputBufferRead
-xmlSchemaNewNOTATIONValue
-xmlSchemaNewQNameValue
-xmlSchemaNewStringValue
-
consuming
xmlScanName
-
contain
xmlNewTextChild
-xmlParseAttribute
-xmlParseEntityRef
-xmlParsePEReference
-xmlParseSDDecl
-xmlParserHandlePEReference
-xmlParserHandleReference
-xmlRegExecErrInfo
-xmlRegExecNextValues
-xmlRelaxNGNewMemParserCtxt
-xmlRelaxNGNewParserCtxt
-xmlSchemaNewMemParserCtxt
-xmlSchemaNewParserCtxt
-xmlXPathLeading
-xmlXPathLeadingSorted
-xmlXPathNodeLeading
-xmlXPathNodeLeadingSorted
-xmlXPathNodeTrailing
-xmlXPathNodeTrailingSorted
-xmlXPathSubstringAfterFunction
-xmlXPathSubstringBeforeFunction
-xmlXPathTrailing
-xmlXPathTrailingSorted
-
contained
xmlGetUTF8Char
-xmlNodeListGetRawString
-xmlNodeListGetString
+
blocks
IS_CHAR
+XML_SAX2_MAGIC
+initdocbDefaultSAXHandler
+inithtmlDefaultSAXHandler
+initxmlDefaultSAXHandler
+xmlMemBlocks
+xmlMemDisplay
+xmlMemoryDump
+
book1
xmlBuildRelativeURI
+
bool
xmlBoolToText
+
both
xmlBufferFree
+xmlNanoFTPClose
+xmlNodeGetBase
xmlParseElementChildrenContentDecl
xmlParseMarkupDecl
-xmlStrlen
-xmlXPathDistinct
-xmlXPathDistinctSorted
-
contains
xmlCurrentChar
-xmlParseEntityRef
-xmlParsePEReference
-xmlParserHandlePEReference
-xmlTextReaderMoveToElement
-xmlValidityErrorFunc
-xmlValidityWarningFunc
-xmlXPathContainsFunction
-xmlXPathNextAncestor
-xmlXPathNextAncestorOrSelf
-xmlXPathNextChild
-xmlXPathNextDescendant
-xmlXPathNextDescendantOrSelf
-xmlXPathNextFollowing
-xmlXPathNextFollowingSibling
-xmlXPathNextNamespace
-xmlXPathNextParent
-xmlXPathNextPreceding
-xmlXPathNextPrecedingSibling
-xmlXPathNextSelf
-xmlXPathNodeSetContains
-xmlXPathSubstringFunction
-xmlXPtrNewContext
-
content:
xmlParseContent
-xmlXPathEqualValues
-xmlXPathNotEqualValues
-
contentType
xmlNanoHTTPFetch
-xmlNanoHTTPMethod
-xmlNanoHTTPMethodRedir
-xmlNanoHTTPOpen
-xmlNanoHTTPOpenRedir
-
contents
xmlDictFree
-xmlHashFree
-xmlLineNumbersDefault
-xmlNodeListGetRawString
-xmlNodeListGetString
-xmlSetupParserForBuffer
-xmlTextReaderExpand
-xmlTextReaderReadInnerXml
-xmlTextReaderReadOuterXml
-xmlTextReaderReadString
-xmlTextWriterWriteDTDExternalEntityContents
-
contentspec
xmlParseElementContentDecl
-xmlParseElementDecl
-
contextual
xmlRelaxNGGetParserErrors
-xmlRelaxNGSetParserErrors
-xmlSchemaGetParserErrors
-xmlSchemaSetParserErrors
-
continuing
xmlXPathSubstringFunction
-
contrary
xmlNodeListGetRawString
-xmlXPathFreeNodeSetList
-
control
resolveEntity
-resolveEntitySAXFunc
-xmlNanoFTPClose
-xmlNanoFTPConnect
-xmlNanoFTPConnectTo
-xmlSAX2ResolveEntity
-
conveniently
xmlCurrentChar
-
conversion
_xmlXPathType
-xmlCharEncOutFunc
-xmlParseEncodingDecl
-xmlXPathConvertFunc
-xmlXPathPopBoolean
-xmlXPathPopExternal
-xmlXPathPopNodeSet
-xmlXPathPopNumber
-xmlXPathPopString
-
conversions
_xmlOutputBuffer
-_xmlParserInputBuffer
-
convert
UTF8ToHtml
-UTF8Toisolat1
-attribute
-attributeSAXFunc
-docbEncodeEntities
-htmlEncodeEntities
-isolat1ToUTF8
-xmlBuildRelativeURI
-xmlCharEncodingInputFunc
-xmlCharEncodingOutputFunc
-xmlEncodeEntities
-xmlEncodeEntitiesReentrant
-xmlEncodeSpecialChars
-xmlXPathAddValues
-xmlXPathDivValues
-xmlXPathModValues
-xmlXPathMultValues
-xmlXPathSubValues
-xmlXPathValueFlipSign
-
converted
xmlCatalogConvert
-xmlConvertSGMLCatalog
+xmlParseStartTag
+xmlStrEqual
xmlXPathCompareValues
-xmlXPathEvalPredicate
-xmlXPathEvaluatePredicateResult
-xmlXPathIdFunction
-xmlXPathNormalizeFunction
-xmlXPathStringFunction
-xmlXPathStringLengthFunction
-
converter
xmlAllocOutputBuffer
+xmlXPathIntersection
+
boundaries
_xmlParserCtxt
+xmlSearchNs
+
boundary
xmlParseElementChildrenContentDecl
+xmlParseElementMixedContentDecl
+
bracket
xmlParseCharData
+
branch
xmlDOMWrapRemoveNode
+xmlSchemaValidateOneElement
+
break
_xmlError
+xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
+xmlLineNumbersDefault
+
breaking
xmlEncodeEntities
+
breaks
xmlCurrentChar
+
broke
XML_CAST_FPTR
+
broken
xmlParseBalancedChunkMemoryRecover
+xmlTextReaderNormalization
+
buf
xmlSaveFileTo
+xmlSaveFormatFileTo
+
buffered
xmlAllocOutputBuffer
+xmlAllocParserInputBuffer
+xmlFreeParserInputBuffer
+xmlOutputBufferClose
xmlOutputBufferCreateFd
xmlOutputBufferCreateFile
xmlOutputBufferCreateFilename
-
converting
xmlSaveFileEnc
-xmlXPathEvalPredicate
-xmlXPathEvaluatePredicateResult
-
converts
xmlXPathBooleanFunction
-xmlXPathStringFunction
-
copied
xmlBufferCreateStatic
-xmlCopyDoc
-xmlGetFeaturesList
-xmlSchemaCopyValue
-xmlXPathNodeSetMerge
-
copier
xmlHashCopy
-
copying
xmlParserInputBufferGrow
-
correct
xmlCheckLanguageID
-
correctly
xmlURIEscape
-
correponding
xmlTextReaderCurrentDoc
-xmlTextReaderCurrentNode
-
correspond
xmlIsXHTML
-xmlParseEntity
+xmlOutputBufferCreateIO
+xmlOutputBufferFlush
+xmlOutputBufferWrite
+xmlOutputBufferWriteEscape
+xmlOutputBufferWriteString
+xmlParserInputBufferCreateFd
+xmlParserInputBufferCreateFile
+xmlParserInputBufferCreateFilename
+xmlParserInputBufferCreateIO
+xmlParserInputBufferCreateMem
+xmlParserInputBufferCreateStatic
+xmlParserInputBufferGrow
+xmlParserInputBufferPush
+xmlParserInputBufferRead
+xmlTextReaderGetRemainder
+
builded
XML_SCHEMAS_ATTRGROUP_GLOBAL
+XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED
+
building
_xmlParserCtxt
+docbSAXParseDoc
+docbSAXParseFile
+htmlSAXParseFile
+ignorableWhitespace
+ignorableWhitespaceSAXFunc
+xmlBuildURI
+xmlSAX2IgnorableWhitespace
+xmlSAXParseDoc
xmlSAXParseEntity
-
corresponding
xmlGetDocEntity
-xmlGetDtdEntity
-xmlGetParameterEntity
-xmlXPathTranslateFunction
-
cost
xmlByteConsumed
-
costly
XML_MAX_NAMELEN
-xmlByteConsumed
-
could
xmlByteConsumed
-xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-xmlModuleClose
+xmlSAXParseFile
+xmlSAXParseFileWithData
+xmlSAXParseMemory
+xmlSAXParseMemoryWithData
+xmlShellPwd
+
builds
xmlRegexpCompile
+
built
_xmlParserCtxt
+xmlCleanupParser
+xmlParseAttributeType
+xmlParseEnumeratedType
+xmlParseEnumerationType
+xmlParseNotationType
+xmlParseURI
+xmlRecoverDoc
+xmlRecoverFile
+xmlRecoverMemory
+xmlRelaxNGParse
+xmlSchemaGetBuiltInType
xmlSchemaGetCanonValue
xmlSchemaGetCanonValueWhtsp
-xmlTextReaderByteConsumed
-xmlTextReaderRelaxNGSetSchema
-xmlTextReaderRelaxNGValidate
-xmlValidateDtd
-
count
ftpListCallback
-xmlLsCountNode
-xmlSaveDoc
-xmlSaveTree
-xmlTextReaderAttributeCount
-xmlXPathCountFunction
-
counter
xmlAutomataNewCountedTrans
-xmlAutomataNewCounter
-xmlAutomataNewCounterTrans
-xmlDictReference
-
counterparts
xmlEncodeEntitiesReentrant
-
course
xmlTextReaderNormalization
-
cover
xmlSearchNs
-
create
xmlBufferCreate
-xmlBufferCreateSize
-xmlBufferCreateStatic
-xmlCatalogIsEmpty
-xmlCreateEntitiesTable
-xmlCreateEnumeration
-xmlNewCatalog
-xmlNewDtd
-xmlNewGlobalNs
-xmlNewNs
-
creates
xmlAutomataNewAllTrans
-xmlAutomataNewCountTrans
-xmlAutomataNewCountTrans2
-xmlAutomataNewCountedTrans
-xmlAutomataNewCounterTrans
-xmlAutomataNewEpsilon
-xmlAutomataNewOnceTrans
-xmlAutomataNewOnceTrans2
-xmlAutomataNewTransition
-xmlAutomataNewTransition2
-xmlCreateURI
-xmlStrncatNew
-
creating
xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-
creation
xmlIOHTTPOpenW
-xmlNewNs
-xmlRegisterNodeDefault
-
cross
xmlSearchNs
-
crossed
xmlAutomataNewOnceTrans
-xmlAutomataNewOnceTrans2
-
cshema
XML_SCHEMAS_FINAL_DEFAULT_LIST
-
ctrio
xmlXPathIsInf
-xmlXPathIsNaN
-
ctxt-
docbFreeParserCtxt
-htmlFreeParserCtxt
-xmlFreeParserCtxt
-xmlPopInput
-xmlValidCtxtNormalizeAttributeValue
-xmlValidityErrorFunc
-xmlValidityWarningFunc
-
cur
xmlXPathAxisFunc
-
currently
XML_SCHEMAS_INCLUDING_CONVERT_NS
-xmlGcMemGet
-xmlMemBlocks
-xmlMemGet
-xmlMemUsed
-xmlOutputBufferCreateFilename
-xmlSchemaValidateFile
-
custom
xmlDOMWrapAdoptNode
-xmlSaveSetAttrEscape
-xmlSaveSetEscape
+xmlSchemaParse
+xmlTextReaderNextSibling
+
built-in
xmlSchemaGetBuiltInListSimpleTypeItemType
+xmlSchemaGetBuiltInType
+xmlSchemaIsBuiltInTypeFacet
+xmlSchemaValidateFacetWhtsp
+xmlSchemaValidateLengthFacet
+xmlSchemaValidateLengthFacetWhtsp
+
builtin
XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE
+initGenericErrorDefaultFunc
+
bunch
xmlParseNamespace
+
bypass
xmlParseCatalogFile

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk12.html b/doc/APIchunk12.html index d085c22c..b548fe23 100644 --- a/doc/APIchunk12.html +++ b/doc/APIchunk12.html @@ -7,249 +7,216 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index d-d for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index d-d for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index c-c for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index c-c for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter d:

dangerous
xmlTextReaderCurrentNode
-
data-type
xmlSchemaCopyValue
-
datatype
xmlSchemaGetBuiltInListSimpleTypeItemType
-
day
ftpListCallback
-
day:minute
ftpListCallback
-
de-coupled
xmlValidateDtd
-
deactivated
xmlTextReaderRelaxNGSetSchema
-
deallocate
_xmlParserInput
-xmlCleanupParser
-xmlDecodeEntities
-xmlListDeallocator
-xmlParserInputDeallocate
-xmlStringDecodeEntities
-xmlStringLenDecodeEntities
-xmlXPathFreeNodeSetList
-
deallocated
xmlDictFree
-xmlEncodeEntitiesReentrant
-xmlEncodeSpecialChars
-xmlGetFeaturesList
-xmlHashFree
-xmlNewTextWriter
-xmlRegExecErrInfo
-xmlRegExecNextValues
-xmlSaveUri
-xmlTextReaderConstBaseUri
-xmlTextReaderConstEncoding
-xmlTextReaderConstLocalName
-xmlTextReaderConstName
-xmlTextReaderConstNamespaceUri
-xmlTextReaderConstPrefix
-xmlTextReaderConstString
-xmlTextReaderConstValue
-xmlTextReaderConstXmlVersion
-xmlTextReaderGetAttribute
-xmlTextReaderGetAttributeNo
-xmlTextReaderGetAttributeNs
-xmlTextReaderLookupNamespace
-xmlTextReaderReadInnerXml
-xmlTextReaderReadOuterXml
-xmlTextReaderReadString
-xmlTextReaderRelaxNGSetSchema
-xmlTextReaderValue
-
deallocation
xmlListRemoveAll
-xmlListRemoveFirst
-xmlListRemoveLast
-
deallocator
xmlHashFree
-xmlHashRemoveEntry
-xmlHashRemoveEntry2
-xmlHashRemoveEntry3
-xmlHashUpdateEntry
-xmlHashUpdateEntry2
-xmlHashUpdateEntry3
-xmlListCreate
-
debug
DEBUG_MEMORY
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter c:

calculates
xmlUTF8Size
+
calling
_xmlXPathContext
+xmlBuildRelativeURI
+xmlC14NDocDumpMemory
+xmlCheckFilename
+xmlGetLineNo
+xmlTextReaderCurrentDoc
+xmlXPathAddValues
+xmlXPathDivValues
+xmlXPathModValues
+xmlXPathMultValues
+xmlXPathSubValues
+xmlXPathValueFlipSign
+
calls
xlinkNodeDetectFunc
+xmlSchemaSAXPlug
+xmlXPathAxisFunc
+
came
xmlPopInput
+
cannot
xmlParseAttribute
+
canonic
xmlCanonicPath
+
canonical
xmlC14NDocDumpMemory
+xmlC14NDocSave
+xmlC14NDocSaveTo
+xmlC14NExecute
+xmlGetCharEncodingName
+xmlSchemaGetCanonValue
+
canonicalization
xmlC14NDocDumpMemory
+xmlC14NDocSave
+xmlC14NDocSaveTo
+xmlC14NExecute
+
canonicalized
xmlNormalizeWindowsPath
+
canonization
xmlC14NDocDumpMemory
+xmlC14NDocSave
+xmlC14NDocSaveTo
+xmlC14NExecute
+
canonized
xmlC14NDocDumpMemory
+xmlC14NDocSave
+xmlC14NDocSaveTo
+xmlC14NExecute
+
capable
xmlCheckUTF8
+
caracters
xmlOutputBufferWriteEscape
+
carried
xmlNewDocProp
+xmlNewNsProp
+xmlNewNsPropEatName
+xmlNewProp
+xmlNodeBufGetContent
+xmlNodeGetContent
+xmlNodeGetLang
+xmlNodeGetSpacePreserve
+xmlSetNsProp
+xmlSetProp
+xmlUnsetNsProp
+xmlUnsetProp
+
carries
xlinkIsLink
+
carrying
xlinkExtendedLinkFunk
+xlinkExtendedLinkSetFunk
+xlinkSimpleLinkFunk
+xmlIsID
+xmlIsRef
+xmlNewGlobalNs
+xmlNewNs
+
case-ignoring
xmlStrcasestr
+
cases
XML_SKIP_IDS
+xmlC14NExecute
+xmlParseElementContentDecl
+xmlScanName
+
cast
BAD_CAST
+CAST_TO_BOOLEAN
+CAST_TO_NUMBER
+CAST_TO_STRING
+xmlXPathConvertFunc
+
casting
XML_CAST_FPTR
+
cat
xmlShellCat
+
catalogs
xmlCatalogAddLocal
+xmlCatalogCleanup
+xmlCatalogFreeLocal
+xmlCatalogGetDefaults
+xmlCatalogLocalResolve
+xmlCatalogLocalResolveURI
xmlCatalogSetDebug
-xmlDebugDumpAttr
-xmlDebugDumpAttrList
-xmlDebugDumpDTD
-xmlDebugDumpDocument
-xmlDebugDumpDocumentHead
-xmlDebugDumpEntities
-xmlDebugDumpNode
-xmlDebugDumpNodeList
-xmlDebugDumpOneNode
-xmlRegexpPrint
-xmlSnprintfElementContent
-
debugging
DEBUG_MEMORY
-DEBUG_MEMORY_LOCATION
-LIBXML_DEBUG_RUNTIME
-xmlCatalogSetDebug
-xmlXPathDebugDumpObject
-
decimal
xmlXPathStringFunction
-
decl
XML_SCHEMAS_ELEM_INTERNAL_CHECKED
-_xmlSchemaAttribute
-xmlAddAttributeDecl
-xmlNewDocElementContent
-xmlNewElementContent
-
declarations
_xmlXPathContext
-htmlParseCharRef
-startElementNsSAX2Func
-xmlParseCharRef
-xmlParseEntityDecl
-xmlParseEntityRef
-xmlParseEntityValue
-xmlParseExternalSubset
-xmlParseMarkupDecl
-xmlParsePEReference
+xmlCatalogSetDefaults
+xmlLoadCatalogs
+
category
xmlUCSIsCat
+
cause
xmlShellPrintXPathError
+
ceiling
xmlXPathCeilingFunction
+
certainly
xmlTextReaderGetRemainder
+
chained
xmlFreeNsList
+
change
htmlSetMetaEncoding
+xmlCtxtResetLastError
+xmlNanoFTPCwd
xmlParseSDDecl
-xmlReconciliateNs
-xmlSAX2StartElementNs
-xmlTextWriterWriteFormatDTD
-xmlTextWriterWriteVFormatDTD
-xmlValidateNotationDecl
-xmlXPtrBuildNodeList
-
declare
xmlParseEntityRef
-xmlParserHandleReference
-xmlSearchNs
-
declared
_xmlElement
-_xmlParserCtxt
+xmlRelaxNGParse
+xmlResetLastError
+xmlSchemaCollapseString
+xmlSchemaParse
+xmlSchemaWhiteSpaceReplace
+xmlSubstituteEntitiesDefault
+xmlSwitchEncoding
+xmlSwitchInputEncoding
+xmlSwitchToEncoding
+
changed
xmlNodeSetBase
+xmlNodeSetLang
+xmlNodeSetName
+xmlNodeSetSpacePreserve
+xmlTextReaderSetParserProp
+xmlValidityErrorFunc
+xmlValidityWarningFunc
+
changes
xmlRegisterHTTPPostCallbacks
+xmlTextReaderClose
+
changing
xmlSubstituteEntitiesDefault
+xmlTextReaderSetParserProp
+
channel
xmlFileClose
+xmlFileRead
+xmlIOFTPClose
+xmlIOFTPOpen
+xmlIOFTPRead
+xmlIOHTTPClose
+xmlIOHTTPOpen
+xmlIOHTTPRead
+xmlOutputBufferClose
+xmlOutputBufferFlush
+xmlShellPrintXPathError
+
characters
ignorableWhitespace
+ignorableWhitespaceSAXFunc
+xmlCreatePushParserCtxt
+xmlKeepBlanksDefault
xmlParseAttValue
-xmlParseAttribute
-xmlParseAttributeType
-xmlParseDefaultDecl
-xmlParseElementDecl
-xmlParseEntityDecl
-xmlParseEntityRef
-xmlParseNamespace
-xmlParseNotationType
-xmlReconciliateNs
-xmlTextReaderStandalone
+xmlStrPrintf
+xmlStrVPrintf
+xmlURIEscapeStr
+xmlUTF8Strlen
+xmlUTF8Strsize
xmlValidCtxtNormalizeAttributeValue
xmlValidNormalizeAttributeValue
-
declaring
xmlGetID
-
decode
xmlDecodeEntities
-
def
xmlParseAttributeListDecl
-xmlParseAttributeType
-
defaulted
XML_COMPLETE_ATTRS
-_xmlParserCtxt
-startElementNsSAX2Func
-xmlSAX2StartElementNs
-xmlTextReaderIsDefault
-
defaultexternal
xmlSetExternalEntityLoader
-
defaults
xmlShell
-xmlXPathLocalNameFunction
-xmlXPathNamespaceURIFunction
+xmlXPathIdFunction
xmlXPathNormalizeFunction
-xmlXPathStringFunction
xmlXPathStringLengthFunction
-
define
DEBUG_MEMORY
-XML_CAST_FPTR
-xmlHandleEntity
-xmlSchemaGetCanonValue
-
defined
WITHOUT_TRIO
-WITH_TRIO
-_xmlXPathContext
-xmlGetNsList
-xmlHandleEntity
-xmlNewNs
+xmlXPathSubstringFunction
+xmlXPathTranslateFunction
+
charencoding
xmlGetCharEncodingName
+
chars??
xmlTextWriterWriteRawLen
+
charset
xmlAllocParserInputBuffer
+xmlCreateIOParserCtxt
+xmlIOParseDTD
+xmlNewIOInputStream
+xmlOutputBufferCreateIO
+xmlParserInputBufferCreateFd
+xmlParserInputBufferCreateFile
+xmlParserInputBufferCreateFilename
+xmlParserInputBufferCreateIO
+xmlParserInputBufferCreateMem
+xmlParserInputBufferCreateStatic
+
checked
XML_SCHEMAS_ELEM_INTERNAL_CHECKED
xmlNodeGetBase
-xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlParseElementContentDecl
-xmlParseInNodeContext
-xmlSchemaGetBuiltInListSimpleTypeItemType
-xmlSearchNs
-xmlSearchNsByHref
-xmlTextReaderIsDefault
-xmlValidGetValidElements
-xmlValidateDtdFinal
-xmlXPathNextAncestorOrSelf
-
defining
XINCLUDE_FALLBACK
-XINCLUDE_HREF
-XINCLUDE_NODE
-XINCLUDE_NS
-XINCLUDE_OLD_NS
-XINCLUDE_PARSE
-XINCLUDE_PARSE_ENCODING
-XINCLUDE_PARSE_TEXT
-XINCLUDE_PARSE_XML
-XINCLUDE_PARSE_XPOINTER
-xmlGetID
-xmlReconciliateNs
-xmlShellDu
-xmlTextReaderConstNamespaceUri
-xmlTextReaderNamespaceUri
-
definitions
_xmlNode
-startElementNsSAX2Func
-xmlLoadCatalog
-xmlLoadCatalogs
-xmlPatterncompile
-xmlSAX2StartElementNs
-xmlTextReaderPreservePattern
-xmlValidateDtd
-
delayed
xmlOutputBufferWrite
-xmlOutputBufferWriteEscape
-xmlOutputBufferWriteString
-
delegation
xmlCatalogSetDefaultPrefer
-
delete
xmlNanoFTPDele
-
deletion
xmlCatalogSetDefaultPrefer
-
depending
xmlIsID
-xmlIsRef
-xmlListDataCompare
-xmlParseReference
-xmlXPathEqualValues
-xmlXPathLangFunction
-xmlXPathNotEqualValues
-
deprecated
LIBXML_LEGACY_ENABLED
-_htmlElemDesc
-htmlAttrAllowed
-htmlElementAllowedHere
-htmlElementStatusHere
+xmlNodeGetLang
+xmlNodeGetSpacePreserve
+xmlParseAttValue
+xmlParseAttributeType
+xmlSetNsProp
+
checking
xlinkIsLink
+xmlBufferWriteQuotedString
+xmlBuildURI
+xmlMemFree
+xmlUTF8Strlen
+
checkings
xmlValidateOneElement
+
checks
XML_SCHEMAS_ATTRGROUP_MARKED
+XML_SCHEMAS_TYPE_MARKED
+htmlAutoCloseTag
+htmlIsAutoClosed
htmlNodeStatus
-xmlCheckLanguageID
-xmlCreateEntitiesTable
-xmlDecodeEntities
-xmlParserHandleReference
-xmlScanName
-
depth
_xmlParserCtxt
-_xmlValidCtxt
-xmlPatternMaxDepth
-xmlTextReaderDepth
-
deregistration
xmlDeregisterNodeDefault
-
derivation
XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION
-XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION
-
des
xmlTextReaderRelaxNGSetSchema
-xmlTextReaderRelaxNGValidate
-
desactivated
xmlTextReaderRelaxNGSetSchema
-xmlTextReaderRelaxNGValidate
-
descendant
xmlXPathNextDescendant
-
descendant-or-self
xmlXPathNextDescendantOrSelf
-
descendants
xmlXPathNextDescendant
-xmlXPathNextDescendantOrSelf
-xmlXPathNextFollowing
-
described
xmlValidateAttributeDecl
+xmlCheckFilename
+xmlCheckHTTPInput
+xmlCheckUTF8
+xmlNanoFTPInit
+xmlNanoHTTPInit
+xmlParseElementChildrenContentDecl
+xmlParseElementMixedContentDecl
+xmlReconciliateNs
+xmlURIEscape
+xmlURIUnescapeString
+xmlValidateAttributeDecl
xmlValidateDocument
xmlValidateDocumentFinal
xmlValidateDtdFinal
@@ -258,150 +225,416 @@ A:link, A:visited, A:active { text-decoration: underline } xmlValidateOneAttribute
xmlValidateOneElement
xmlValidateOneNamespace
-xmlValidateRoot
-
describing
docbParseDoc
-docbParseFile
-docbSAXParseDoc
-docbSAXParseFile
-htmlCreateFileParserCtxt
-htmlParseDoc
-htmlParseFile
-htmlSAXParseDoc
-htmlSAXParseFile
-xmlFindCharEncodingHandler
-xmlParseElementChildrenContentDecl
-xmlParseElementMixedContentDecl
-
description
_htmlElemDesc
-_htmlEntityDesc
-htmlElementAllowedHereDesc
-xmlCopyDocElementContent
-xmlCopyElementContent
-xmlGetDtdAttrDesc
-xmlGetDtdElementDesc
-xmlGetDtdNotationDesc
-xmlGetDtdQAttrDesc
-xmlGetDtdQElementDesc
+xmlXPathNodeSetContains
+
child-
_xmlAttr
+_xmlDoc
+_xmlDtd
+_xmlNode
+
childrens
_xmlEntity
+
childs
_xmlNode
xmlIsMixedElement
-xmlNodeSetLang
-
descriptor
htmlCtxtReadFd
-htmlReadFd
-xmlCtxtReadFd
-xmlMemDisplay
-xmlMemShow
-xmlOutputBufferCreateFd
-xmlParserInputBufferCreateFd
+xmlValidGetValidElements
+
choice
xmlParseElementChildrenContentDecl
+
choices
xmlParseElementMixedContentDecl
+
choices:
xmlParseNotationDecl
+
chunk
docbParseChunk
+htmlParseChunk
+xmlEntityReferenceFunc
+xmlParseBalancedChunkMemory
+xmlParseBalancedChunkMemoryRecover
+xmlParseChunk
+xmlParseEntity
+xmlParseExternalEntity
+xmlParseInNodeContext
+xmlSAXParseEntity
+
circular
XML_SCHEMAS_ATTRGROUP_MARKED
+XML_SCHEMAS_ELEM_CIRCULAR
+XML_SCHEMAS_TYPE_MARKED
+
cleanly
xmlCheckHTTPInput
+
cleans
xmlNanoFTPScanProxy
+xmlNanoHTTPScanProxy
+
cleanup
xmlCleanupGlobals
+xmlCleanupThreads
+xmlNanoFTPCleanup
+
clear
xmlListMerge
+
clears
xmlCleanupInputCallbacks
+xmlCleanupOutputCallbacks
+
client
xmlKeepBlanksDefault
+
close
htmlAutoCloseTag
+htmlCtxtReadIO
+htmlIsAutoClosed
+htmlReadIO
+xmlCharEncCloseFunc
+xmlCreateIOParserCtxt
+xmlCtxtReadIO
+xmlInputCloseCallback
+xmlModuleClose
+xmlOutputBufferClose
+xmlOutputBufferCreateIO
+xmlOutputCloseCallback
+xmlParserInputBufferCreateIO
+xmlReadIO
+xmlReaderForIO
+xmlReaderNewIO
+xmlSaveToIO
+xmlTextReaderClose
+
closed
xmlCtxtReadFd
+xmlModuleClose
+xmlNewTextWriter
xmlReadFd
xmlReaderForFd
xmlReaderNewFd
-xmlSaveToFd
-xmlSaveToIO
-
designed
xmlCharEncodingOutputFunc
-xmlLoadExternalEntity
-
desired
xmlBufferResize
+xmlTextWriterEndDocument
+
closes
xmlNanoHTTPClose
+xmlNanoHTTPSave
+
closest
xmlXPathCeilingFunction
+xmlXPathFloorFunction
+xmlXPathRoundFunction
+
closing
htmlInitAutoClose
+xmlNanoFTPFreeCtxt
+xmlParseElementChildrenContentDecl
+xmlParseStartTag
+
cncerning
xmlDebugDumpDocumentHead
+
coding
xmlSAXDefaultVersion
+
collapse
XML_SCHEMAS_FACET_COLLAPSE
+XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE
+
collect
DEBUG_MEMORY
xmlIOHTTPOpenW
-xmlUTF8Strloc
-xmlUTF8Strpos
-
destination
xmlDOMWrapAdoptNode
-xmlIOHTTPOpenW
-xmlURIUnescapeString
-
destroy
xmlTextReaderCurrentDoc
-
destroyed
xmlAddChild
-xmlAddNextSibling
-xmlAddPrevSibling
-xmlTextReaderCurrentNode
-
destruction
xmlDeregisterNodeDefault
-
details
xmlC14NDocDumpMemory
+
collected
xmlGcMemGet
+xmlGcMemSetup
+
colon
xmlLoadCatalogs
+
column
_xmlError
+getColumnNumber
+xmlSAX2GetColumnNumber
+xmlTextReaderGetParserColumnNumber
+
com
getSystemId
+xmlBuildRelativeURI
+xmlSAX2GetSystemId
+
combining
IS_COMBINING_CH
+
come
xmlStreamPush
+xmlStreamPushAttr
+
coment
xmlTextWriterEndComment
+
comes
xmlValidityErrorFunc
+xmlValidityWarningFunc
+
coming
xmlXIncludeProcessNode
+
command
ftpDataCallback
+ftpListCallback
+xmlNanoFTPCheckResponse
+xmlNanoFTPGetResponse
+xmlNanoFTPQuit
+xmlShellDu
+
commandline
xmlShell
+
commands
xmlShellPwd
+
comment
HTML_COMMENT_NODE
+comment
+commentSAXFunc
+xmlNewComment
+xmlNewDocComment
+xmlParseComment
+xmlTextWriterStartComment
+xmlTextWriterWriteComment
+xmlTextWriterWriteFormatComment
+xmlTextWriterWriteVFormatComment
+xmlXPathIsNodeType
+
comments
xmlC14NDocDumpMemory
xmlC14NDocSave
xmlC14NDocSaveTo
xmlC14NExecute
-
detect
xlinkIsLink
-xmlCreatePushParserCtxt
-xmlInputMatchCallback
+xmlDocGetRootElement
+xmlDocSetRootElement
+xmlParseComment
+
commodity
xmlKeepBlanksDefault
+
common
_xmlDoc
+_xmlDtd
+_xmlNode
+
comp
xmlFreePattern
+xmlFreePatternList
+xmlXPathFreeCompExpr
+
compare
xmlListDataCompare
+xmlUTF8Charcmp
+xmlXPathCompareValues
+
compared
xmlXPathCompareValues
+
compares
xmlUTF8Charcmp
+
comparing
xmlXPathCompareValues
+
comparison
xmlHashScan3
+xmlHashScanFull3
+xmlListCreate
+xmlParseCharEncoding
+xmlStrcasecmp
+xmlStrcmp
+xmlStrncasecmp
+xmlStrncmp
+xmlXPathCompareValues
+
comparisons
xmlTextReaderConstString
+xmlXPathSubstringFunction
+
compatibility
LIBXML_LEGACY_ENABLED
+xmlChildrenNode
+xmlCopyChar
+xmlEncodeEntities
xmlKeepBlanksDefault
-xmlOutputMatchCallback
-xmlXPathIsInf
-xmlXPathIsNaN
-
detected
CHECK_ERROR
-CHECK_ERROR0
-endDocument
-endDocumentSAXFunc
-endElement
-endElementNsSAX2Func
-endElementSAXFunc
-reference
-referenceSAXFunc
-startElementNsSAX2Func
-xlinkExtendedLinkFunk
-xlinkExtendedLinkSetFunk
-xlinkIsLink
+xmlParseCharData
+xmlParseComment
+xmlParseNamespace
+xmlParseQuotedString
+xmlRootNode
+
compatible
LIBXML_TEST_VERSION
+xmlShellPwd
+
compilation
LIBXML_VERSION_EXTRA
+xmlPatterncompile
+xmlXPathCompile
+xmlXPathCtxtCompile
+
compile
xmlPatterncompile
+
compile-time
docbCreateFileParserCtxt
+docbParseFile
+docbSAXParseFile
+htmlCreateFileParserCtxt
+htmlParseFile
+htmlSAXParseFile
+xmlCreateEntityParserCtxt
+xmlCreateFileParserCtxt
+xmlCreateURLParserCtxt
+xmlOutputBufferCreateFilename
+xmlParseFile
+xmlParserInputBufferCreateFilename
+xmlRecoverFile
+xmlSAXParseFile
+xmlSAXParseFileWithData
+
compiled
LIBXML_AUTOMATA_ENABLED
+LIBXML_LEGACY_ENABLED
+LIBXML_MODULES_ENABLED
+LIBXML_REGEXP_ENABLED
+LIBXML_SCHEMAS_ENABLED
+LIBXML_TEST_VERSION
+LIBXML_UNICODE_ENABLED
+xmlAutomataCompile
+xmlCheckVersion
+xmlGetLastError
+xmlPatterncompile
+xmlRegexpCompile
+xmlRegexpExec
+xmlRegexpIsDeterminist
+xmlRegexpPrint
+xmlSaveFile
+xmlSaveFormatFile
+xmlXPathCompiledEval
+xmlXPathDebugDumpCompExpr
+
compiled-in
xmlCleanupInputCallbacks
+xmlCleanupOutputCallbacks
+xmlPopInputCallbacks
+xmlRegisterDefaultInputCallbacks
+xmlRegisterDefaultOutputCallbacks
+
compiling
xmlRelaxNGNewDocParserCtxt
+
complement
xmlXPathStringEvalNumber
+
complete
XML_COMPLETE_ATTRS
+XML_SCHEMAS_WILDCARD_COMPLETE
+_xmlParserCtxt
+xmlACatalogResolve
+xmlACatalogResolveURI
+xmlCatalogLocalResolve
+xmlCatalogLocalResolveURI
+xmlCatalogResolve
+xmlCatalogResolveURI
+
completed
xmlValidateDocumentFinal
+
completely
xmlGetUTF8Char
+xmlNodeGetBase
+
complex
XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION
+XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION
+
complexType
XML_SCHEMAS_TYPE_ABSTRACT
+XML_SCHEMAS_TYPE_BLOCK_DEFAULT
+XML_SCHEMAS_TYPE_BLOCK_EXTENSION
+XML_SCHEMAS_TYPE_BLOCK_RESTRICTION
+XML_SCHEMAS_TYPE_FINAL_EXTENSION
+XML_SCHEMAS_TYPE_FINAL_RESTRICTION
+XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD
+
complicated
xmlBuildRelativeURI
+
components
_xmlSchema
+
compound
xmlXPathFreeNodeSet
+xmlXPtrFreeLocationSet
+
compress
xmlNewTextWriterDoc
+xmlNewTextWriterFilename
+xmlNewTextWriterMemory
+xmlNewTextWriterPushParser
+xmlNewTextWriterTree
+
compressed
_xmlParserInputBuffer
+docbCreateFileParserCtxt
+docbParseFile
+docbSAXParseFile
+htmlCreateFileParserCtxt
+htmlParseFile
+htmlSAXParseFile
+xmlCreateEntityParserCtxt
+xmlCreateFileParserCtxt
+xmlCreateURLParserCtxt
+xmlOutputBufferCreateFilename
+xmlParseFile
+xmlParserInputBufferCreateFilename
+xmlRecoverFile
+xmlSAXParseFile
+xmlSAXParseFileWithData
+xmlSAXUserParseFile
+
compression
_xmlDoc
+xmlC14NDocSave
+xmlGetCompressMode
+xmlGetDocCompressMode
+xmlIOHTTPOpenW
+xmlNewTextWriterMemory
+xmlNewTextWriterPushParser
+xmlOutputBufferCreateFilename
+xmlSaveFile
+xmlSaveFormatFile
+xmlSetCompressMode
+xmlSetDocCompressMode
+
comprising
xmlXPathIntersection
+
computation
xmlXPathOrderDocElems
+
compute
xmlUTF8Strlen
+
computed
XML_SCHEMAS_TYPE_FACETSNEEDVALUE
+_xmlEntity
+xmlByteConsumed
+xmlSchemaValPredefTypeNode
+xmlSchemaValPredefTypeNodeNoNorm
+xmlSchemaValidateLengthFacet
+xmlSchemaValidateLengthFacetWhtsp
+xmlSchemaValidatePredefinedType
+xmlSchemaValueAppend
+xmlSchemaValueGetAsBoolean
+xmlSchemaValueGetAsString
+xmlSchemaValueGetNext
+xmlTextReaderByteConsumed
+
computes
xmlSchemaCheckFacet
+
concat
xmlXPathConcatFunction
+
concatenated
xmlStrcat
+
concatenation
xmlXPathConcatFunction
+
condition
xmlSchemaValidateFacet
+xmlSchemaValidateFacetWhtsp
+
conditionalSect
xmlParseExternalSubset
+
configured
DEBUG_MEMORY
+DEBUG_MEMORY_LOCATION
+LIBXML_C14N_ENABLED
+LIBXML_CATALOG_ENABLED
+LIBXML_DEBUG_ENABLED
+LIBXML_DEBUG_RUNTIME
+LIBXML_DOCB_ENABLED
+LIBXML_FTP_ENABLED
+LIBXML_HTML_ENABLED
+LIBXML_HTTP_ENABLED
+LIBXML_OUTPUT_ENABLED
+LIBXML_PATTERN_ENABLED
+LIBXML_PUSH_ENABLED
+LIBXML_READER_ENABLED
+LIBXML_SAX1_ENABLED
+LIBXML_THREAD_ENABLED
+LIBXML_TREE_ENABLED
+LIBXML_VALID_ENABLED
+LIBXML_WRITER_ENABLED
+LIBXML_XINCLUDE_ENABLED
+LIBXML_XPATH_ENABLED
+LIBXML_XPTR_ENABLED
+WITHOUT_TRIO
+WITH_TRIO
+
conforming
xmlRegexpCompile
+
conforms
xmlCheckLanguageID
+xmlSchemaValPredefTypeNode
+xmlSchemaValPredefTypeNodeNoNorm
+xmlSchemaValidatePredefinedType
+xmlValidateNCName
+xmlValidateNMToken
+xmlValidateName
+xmlValidateQName
+
conjunction
xmlSchemaIsBuiltInTypeFacet
+
connection
xmlNanoFTPClose
+xmlNanoFTPCloseConnection
+xmlNanoFTPConnect
+xmlNanoFTPConnectTo
+xmlNanoFTPFreeCtxt
+xmlNanoFTPGetConnection
+xmlNanoFTPGetSocket
+xmlNanoFTPRead
+xmlNanoFTPUpdateURL
+xmlNanoHTTPClose
+xmlNanoHTTPMethod
+xmlNanoHTTPMethodRedir
+xmlNanoHTTPOpen
+xmlNanoHTTPOpenRedir
+xmlNanoHTTPRead
+
connector
xmlParseElementChildrenContentDecl
+
cononical
xmlSchemaGetCanonValue
+xmlSchemaGetCanonValueWhtsp
+
consequent
_xmlError
+
consideration
xmlBuildRelativeURI
+
considered
xmlHashScan3
+xmlHashScanFull3
+xmlParserInputBufferRead
+xmlXPathSubstringFunction
+
consist
xmlXPathNextAncestor
+
constant
XML_SAX2_MAGIC
+xmlByteConsumed
+
constraint
_xmlSchemaWildcard
+_xmlSchemaWildcardNs
+xmlParseEntityRef
+xmlValidateNotationDecl
+
constraints
XML_SCHEMAS_ELEM_INTERNAL_CHECKED
+xmlParseAttributeType
+xmlParseDefaultDecl
+xmlValidGetValidElements
+
construct
xmlParseElementChildrenContentDecl
+
construction
xmlCanonicPath
+
constructs
xmlParseNamespace
+
consumed
UTF8ToHtml
+UTF8Toisolat1
+_xmlParserInput
+_xmlParserInputBuffer
+docbEncodeEntities
+htmlEncodeEntities
+isolat1ToUTF8
+xmlCharEncodingInputFunc
+xmlCharEncodingOutputFunc
+xmlGetUTF8Char
+xmlParserInputBufferRead
+xmlSchemaNewNOTATIONValue
+xmlSchemaNewQNameValue
+xmlSchemaNewStringValue
+
consuming
xmlScanName
+
contain
xmlNewTextChild
+xmlParseAttribute
+xmlParseEntityRef
+xmlParsePEReference
+xmlParseSDDecl
xmlParserHandlePEReference
xmlParserHandleReference
-xmlSAX2EndDocument
-xmlSAX2EndElement
-xmlSAX2EndElementNs
-xmlSAX2Reference
-xmlSAX2StartElementNs
-
detection
docbCreatePushParserCtxt
-xlinkExtendedLinkFunk
-xlinkExtendedLinkSetFunk
-xlinkGetDefaultDetect
-xlinkNodeDetectFunc
-xlinkSetDefaultDetect
-xlinkSimpleLinkFunk
-xmlCreatePushParserCtxt
-xmlIsID
-xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlParseExternalEntity
-
determine
xmlC14NExecute
-xmlCharInRange
-
determined
xmlXPathLangFunction
-
determinist
xmlAutomataIsDeterminist
-xmlRegexpIsDeterminist
-
dict
_xmlDoc
-
dictionary
_xmlParserCtxt
-xmlDictCleanup
-xmlDictCreate
-xmlDictCreateSub
-xmlDictReference
-xmlHashCreateDict
-xmlPatterncompile
-xmlStreamPush
-xmlStreamPushAttr
-
dictionnary
_xmlParserCtxt
-_xmlXPathContext
-xmlDictCreate
-xmlDictCreateSub
-xmlDictExists
-xmlDictFree
-xmlDictLookup
-xmlDictOwns
-xmlDictQLookup
-xmlDictReference
-xmlDictSize
-
did
XML_SCHEMAS_TYPE_BLOCK_DEFAULT
-xmlTextReaderGetRemainder
-xmlTextReaderStandalone
-
difference
xmlXPathDifference
-
different
xmlACatalogAdd
-xmlBuildQName
-xmlCatalogAdd
-xmlNodeGetBase
-xmlStrEqual
-xmlStrQEqual
-
differentiate
xmlXPathOrderDocElems
-
differently
xmlTextReaderGetRemainder
-
digit
xmlXPathStringFunction
-
digits
xmlXPathStringFunction
-
dir
xmlShellDir
-
direct
htmlElementAllowedHere
-htmlElementAllowedHereDesc
-htmlElementStatusHere
-xmlParseAttribute
-xmlURIUnescapeString
-
direction
xmlXPathNextAncestor
+xmlRegExecErrInfo
+xmlRegExecNextValues
+xmlRelaxNGNewMemParserCtxt
+xmlRelaxNGNewParserCtxt
+xmlSchemaNewMemParserCtxt
+xmlSchemaNewParserCtxt
+xmlXPathLeading
+xmlXPathLeadingSorted
+xmlXPathNodeLeading
+xmlXPathNodeLeadingSorted
+xmlXPathNodeTrailing
+xmlXPathNodeTrailingSorted
+xmlXPathSubstringAfterFunction
+xmlXPathSubstringBeforeFunction
+xmlXPathTrailing
+xmlXPathTrailingSorted
+
contained
xmlGetUTF8Char
+xmlNodeListGetRawString
+xmlNodeListGetString
+xmlParseElementChildrenContentDecl
+xmlParseMarkupDecl
+xmlStrlen
+xmlXPathDistinct
+xmlXPathDistinctSorted
+
contains
xmlCurrentChar
+xmlParseEntityRef
+xmlParsePEReference
+xmlParserHandlePEReference
+xmlTextReaderMoveToElement
+xmlValidityErrorFunc
+xmlValidityWarningFunc
+xmlXPathContainsFunction
+xmlXPathNextAncestor
xmlXPathNextAncestorOrSelf
-xmlXPathNextAttribute
xmlXPathNextChild
xmlXPathNextDescendant
xmlXPathNextDescendantOrSelf
@@ -412,226 +645,217 @@ A:link, A:visited, A:active { text-decoration: underline } xmlXPathNextPreceding
xmlXPathNextPrecedingSibling
xmlXPathNextSelf
-
directly
xmlNodeBufGetContent
-xmlNodeGetContent
-xmlNormalizeURIPath
-xmlParseAttribute
-xmlParseElementContentDecl
-xmlParsePEReference
-xmlParseSDDecl
-xmlParserHandlePEReference
-xmlParserHandleReference
-xmlParserInputBufferGrow
-xmlXPathConvertBoolean
-xmlXPathConvertNumber
-xmlXPathConvertString
-xmlXPtrNewContext
-
directories
xmlLoadCatalogs
-
directory
_xmlParserCtxt
-_xmlParserInput
-xmlCheckFilename
-xmlNanoFTPCwd
-xmlNanoFTPDele
-xmlParserGetDirectory
-xmlShellList
-
disable
xmlCatalogSetDebug
-
disabled
XML_CAST_FPTR
-_xmlParserCtxt
-
disabling
xmlNoNetExternalEntityLoader
-
disallowed
XML_SCHEMAS_ELEM_BLOCK_EXTENSION
-XML_SCHEMAS_ELEM_BLOCK_RESTRICTION
-XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION
-
discard
xmlParserInputRead
-
discarding
xmlParseAttValue
-xmlValidCtxtNormalizeAttributeValue
-xmlValidNormalizeAttributeValue
-
disconnected
xmlAutomataNewState
-
discovering
xmlSwitchEncoding
-xmlSwitchInputEncoding
-xmlSwitchToEncoding
-
disctionary
xmlDictOwns
-
display
errorSAXFunc
-fatalErrorSAXFunc
-warningSAXFunc
-xmlMemShow
-xmlParserError
-xmlParserValidityError
-xmlParserValidityWarning
-xmlParserWarning
-
distinct
xmlXPathDistinct
-xmlXPathDistinctSorted
-
distinguish
xmlXPathStringFunction
-
div
xmlXPathDivValues
+xmlXPathNodeSetContains
xmlXPathSubstringFunction
-
doc
htmlNodeDumpFileFormat
+xmlXPtrNewContext
+
content:
xmlParseContent
+xmlXPathEqualValues
+xmlXPathNotEqualValues
+
contentType
xmlNanoHTTPFetch
+xmlNanoHTTPMethod
+xmlNanoHTTPMethodRedir
+xmlNanoHTTPOpen
+xmlNanoHTTPOpenRedir
+
contents
xmlDictFree
+xmlHashFree
+xmlLineNumbersDefault
+xmlNodeListGetRawString
+xmlNodeListGetString
+xmlSetupParserForBuffer
+xmlTextReaderExpand
+xmlTextReaderReadInnerXml
+xmlTextReaderReadOuterXml
+xmlTextReaderReadString
+xmlTextWriterWriteDTDExternalEntityContents
+
contentspec
xmlParseElementContentDecl
+xmlParseElementDecl
+
contextual
xmlRelaxNGGetParserErrors
+xmlRelaxNGSetParserErrors
+xmlSchemaGetParserErrors
+xmlSchemaSetParserErrors
+
continuing
xmlXPathSubstringFunction
+
contrary
xmlNodeListGetRawString
+xmlXPathFreeNodeSetList
+
control
resolveEntity
+resolveEntitySAXFunc
+xmlNanoFTPClose
+xmlNanoFTPConnect
+xmlNanoFTPConnectTo
+xmlSAX2ResolveEntity
+
conveniently
xmlCurrentChar
+
conversion
_xmlXPathType
+xmlCharEncOutFunc
+xmlParseEncodingDecl
+xmlXPathConvertFunc
+xmlXPathPopBoolean
+xmlXPathPopExternal
+xmlXPathPopNodeSet
+xmlXPathPopNumber
+xmlXPathPopString
+
conversions
_xmlOutputBuffer
+_xmlParserInputBuffer
+
convert
UTF8ToHtml
+UTF8Toisolat1
+attribute
+attributeSAXFunc
+docbEncodeEntities
+htmlEncodeEntities
+isolat1ToUTF8
+xmlBuildRelativeURI
+xmlCharEncodingInputFunc
+xmlCharEncodingOutputFunc
+xmlEncodeEntities
+xmlEncodeEntitiesReentrant
+xmlEncodeSpecialChars
+xmlXPathAddValues
+xmlXPathDivValues
+xmlXPathModValues
+xmlXPathMultValues
+xmlXPathSubValues
+xmlXPathValueFlipSign
+
converted
xmlCatalogConvert
+xmlConvertSGMLCatalog
+xmlXPathCompareValues
+xmlXPathEvalPredicate
+xmlXPathEvaluatePredicateResult
+xmlXPathIdFunction
+xmlXPathNormalizeFunction
+xmlXPathStringFunction
+xmlXPathStringLengthFunction
+
converter
xmlAllocOutputBuffer
+xmlOutputBufferCreateFd
+xmlOutputBufferCreateFile
+xmlOutputBufferCreateFilename
+
converting
xmlSaveFileEnc
+xmlXPathEvalPredicate
+xmlXPathEvaluatePredicateResult
+
converts
xmlXPathBooleanFunction
+xmlXPathStringFunction
+
copied
xmlBufferCreateStatic
+xmlCopyDoc
+xmlGetFeaturesList
+xmlSchemaCopyValue
+xmlXPathNodeSetMerge
+
copier
xmlHashCopy
+
copying
xmlParserInputBufferGrow
+
correct
xmlCheckLanguageID
+
correctly
xmlURIEscape
+
correponding
xmlTextReaderCurrentDoc
+xmlTextReaderCurrentNode
+
correspond
xmlIsXHTML
+xmlParseEntity
+xmlSAXParseEntity
+
corresponding
xmlGetDocEntity
+xmlGetDtdEntity
+xmlGetParameterEntity
+xmlXPathTranslateFunction
+
cost
xmlByteConsumed
+
costly
XML_MAX_NAMELEN
+xmlByteConsumed
+
could
xmlByteConsumed
xmlDOMWrapAdoptNode
-xmlDOMWrapRemoveNode
-xmlNewTextWriterDoc
-
doc-
xmlDOMWrapRemoveNode
-xmlDocGetRootElement
-xmlDocSetRootElement
-xmlNewTextWriterTree
-
docs
xmlBuildRelativeURI
-
doctypedecl
xmlParseDocTypeDecl
-xmlParseDocument
-
documents
xmlIsID
-xmlParseEntityRef
-xmlParserHandleReference
-xmlSAXParseDoc
-xmlSAXParseFile
-xmlSAXParseFileWithData
-xmlSAXParseMemory
-xmlSAXParseMemoryWithData
-xmlXPathOrderDocElems
-
does
_xmlEntity
-xmlCheckUTF8
-xmlCtxtResetLastError
-xmlGetNoNsProp
-xmlGetNsProp
-xmlGetProp
-xmlHasNsProp
-xmlModuleFree
-xmlNodeGetBase
-xmlParseMarkupDecl
-xmlResetLastError
+xmlDOMWrapReconcileNamespaces
+xmlModuleClose
+xmlSchemaGetCanonValue
+xmlSchemaGetCanonValueWhtsp
+xmlTextReaderByteConsumed
+xmlTextReaderRelaxNGSetSchema
+xmlTextReaderRelaxNGValidate
+xmlTextReaderSchemaValidate
+xmlTextReaderSetSchema
+xmlValidateDtd
+
count
ftpListCallback
+xmlLsCountNode
xmlSaveDoc
xmlSaveTree
-xmlSchemaGetCanonValue
-xmlSchemaValPredefTypeNodeNoNorm
-xmlURIEscape
-xmlURIUnescapeString
-xmlValidateAttributeDecl
-xmlValidateDocument
-xmlValidateDocumentFinal
-xmlValidateDtd
-xmlValidateDtdFinal
-xmlValidateElementDecl
-xmlValidateNotationDecl
-xmlValidateOneAttribute
-xmlValidateOneElement
-xmlValidateOneNamespace
-xmlValidateRoot
-xmlXPathSubstringAfterFunction
-xmlXPathSubstringBeforeFunction
-
doesn
_htmlElemDesc
-htmlElementAllowedHere
-xmlCleanupParser
+xmlTextReaderAttributeCount
+xmlXPathCountFunction
+
counter
xmlAutomataNewCountedTrans
+xmlAutomataNewCounter
+xmlAutomataNewCounterTrans
+xmlDictReference
+
counterparts
xmlEncodeEntitiesReentrant
+
course
xmlTextReaderNormalization
+
cover
xmlSearchNs
+
create
xmlBufferCreate
+xmlBufferCreateSize
+xmlBufferCreateStatic
+xmlCatalogIsEmpty
xmlCreateEntitiesTable
-xmlFreeNode
-xmlInitCharEncodingHandlers
-xmlKeepBlanksDefault
-xmlNodeListGetRawString
-xmlParserInputRead
-xmlPatternMatch
-xmlRemoveProp
-xmlUTF8Strlen
-xmlValidateRoot
-xmlXPathLeading
-xmlXPathLeadingSorted
-xmlXPathNodeLeading
-xmlXPathNodeLeadingSorted
-xmlXPathNodeTrailing
-xmlXPathNodeTrailingSorted
-xmlXPathTrailing
-xmlXPathTrailingSorted
-
don
XML_SCHEMAS_ANY_LAX
-xlinkIsLink
-xmlCreatePushParserCtxt
-xmlNewDocNode
-xmlNewDocNodeEatName
-xmlParseStartTag
-xmlRegExecErrInfo
-xmlRegExecNextValues
-xmlSearchNs
-xmlXPathFreeNodeSetList
-xmlXPathNodeSetFreeNs
-
dotgnu
xmlTextReaderNodeType
-
double
val
-xmlBufferWriteQuotedString
-xmlGetBufferAllocationScheme
-xmlSetBufferAllocationScheme
-xmlXPathIsInf
+xmlCreateEnumeration
+xmlNewCatalog
+xmlNewDtd
+xmlNewGlobalNs
+xmlNewNs
+
creates
xmlAutomataNewAllTrans
+xmlAutomataNewCountTrans
+xmlAutomataNewCountTrans2
+xmlAutomataNewCountedTrans
+xmlAutomataNewCounterTrans
+xmlAutomataNewEpsilon
+xmlAutomataNewOnceTrans
+xmlAutomataNewOnceTrans2
+xmlAutomataNewTransition
+xmlAutomataNewTransition2
+xmlCreateURI
+xmlStrncatNew
+
creating
xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
+
creation
xmlIOHTTPOpenW
+xmlNewNs
+xmlRegisterNodeDefault
+
cross
xmlSearchNs
+
crossed
xmlAutomataNewOnceTrans
+xmlAutomataNewOnceTrans2
+
cshema
XML_SCHEMAS_FINAL_DEFAULT_LIST
+
ctrio
xmlXPathIsInf
xmlXPathIsNaN
-xmlXPathNewFloat
-xmlXPathNodeSetCreate
-xmlXPathReturnNumber
-xmlXPathStringEvalNumber
-xmlXPtrLocationSetCreate
-
double-hyphen
xmlParseComment
-
double-quotes
xmlBufferWriteQuotedString
-
doublequotes
xmlParseQuotedString
-
down
xmlGetBufferAllocationScheme
-xmlSetBufferAllocationScheme
-
draft
XINCLUDE_OLD_NS
-
drop
xmlFileRead
-xmlIOFTPRead
-xmlIOHTTPRead
-xmlParseNamespace
-xmlParseQuotedString
-xmlXPtrBuildNodeList
-
dtd
getSystemId
-htmlNewDoc
-htmlNewDocNoDtD
-xmlCopyDtd
-xmlSAX2GetSystemId
-xmlValidateDtd
-
dtds
getSystemId
-xmlSAX2GetSystemId
-xmlValidateDtdFinal
-
dump
xmlBufferAdd
-xmlBufferCCat
-xmlBufferDump
-xmlBufferShrink
-xmlDumpAttributeDecl
-xmlDumpAttributeTable
-xmlDumpElementDecl
-xmlDumpElementTable
-xmlDumpEntitiesTable
-xmlDumpEntityDecl
-xmlDumpNotationDecl
-xmlDumpNotationTable
-xmlLsOneNode
-xmlMemShow
-xmlSnprintfElementContent
-xmlXPathDebugDumpObject
-
dumps
xmlShellBase
-xmlShellCat
-xmlShellDir
-
duplicate
xmlCanonicPath
-
duplicated
xmlRelaxNGNewDocParserCtxt
-xmlXPathNodeSetFreeNs
-
duplicates
xmlSchemaCopyValue
-
duration
xmlSchemaGetCanonValue
-
during
xmlSAXDefaultVersion
-xmlSchemaNewDocParserCtxt
-xmlSchemaSetValidOptions
+
ctxt-
docbFreeParserCtxt
+htmlFreeParserCtxt
+xmlFreeParserCtxt
+xmlPopInput
+xmlValidCtxtNormalizeAttributeValue
+xmlValidityErrorFunc
+xmlValidityWarningFunc
+
cur
xmlXPathAxisFunc
+
currently
XML_SCHEMAS_INCLUDING_CONVERT_NS
+xmlGcMemGet
+xmlMemBlocks
+xmlMemGet
+xmlMemUsed
+xmlOutputBufferCreateFilename
+xmlSchemaValidateFile
+
custom
xmlDOMWrapAdoptNode
+xmlSaveSetAttrEscape
+xmlSaveSetEscape

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk13.html b/doc/APIchunk13.html index e632bf0c..cfab9a4b 100644 --- a/doc/APIchunk13.html +++ b/doc/APIchunk13.html @@ -7,445 +7,641 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index e-e for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index e-e for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index d-d for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index d-d for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter e:

each
_xmlParserCtxt
-xmlHashCopy
-xmlHashScan
-xmlHashScan3
-xmlHashScanFull
-xmlHashScanFull3
-xmlParseAttributeType
-xmlSetGenericErrorFunc
-xmlSetStructuredErrorFunc
-xmlValidateOneElement
-xmlXPathIdFunction
-xmlXPathSubstringFunction
-
edition
xmlCheckLanguageID
-
effective
xmlLoadCatalog
-xmlLoadCatalogs
-
efficiency
xmlBuildRelativeURI
-
either
xmlBoolToText
-xmlCurrentChar
-xmlDOMWrapAdoptNode
-xmlLoadACatalog
-xmlNodeBufGetContent
-xmlNodeGetContent
-xmlParseElementChildrenContentDecl
-xmlParseElementContentDecl
-xmlParseMarkupDecl
-xmlParsePEReference
-xmlParseStartTag
-xmlParserHandlePEReference
-xmlTextReaderNormalization
-
either:
resolveEntity
-resolveEntitySAXFunc
-xmlSAX2ResolveEntity
-
elem
XML_SCHEMAS_ELEM_INTERNAL_CHECKED
-
element-
xmlXPathOrderDocElems
-
element-node
xmlDOMWrapReconcileNamespaces
-
element-nodes
xmlDOMWrapReconcileNamespaces
-
elementdecl
xmlParseElementDecl
-xmlParseMarkupDecl
-
elements
XML_CATALOGS_NAMESPACE
-XML_COMPLETE_ATTRS
-XML_SCHEMAS_ATTR_GLOBAL
-XML_SCHEMAS_ATTR_NSDEFAULT
-XML_SCHEMAS_ELEM_NSDEFAULT
-XML_SCHEMAS_QUALIF_ELEM
-_xmlDtd
-htmlElementAllowedHere
-htmlNodeStatus
-xlinkIsLink
-xmlDictSize
-xmlFreePatternList
-xmlHashSize
-xmlLineNumbersDefault
-xmlListMerge
-xmlListReverse
-xmlListSize
-xmlListSort
-xmlParseAttributeType
-xmlParseDefaultDecl
-xmlParseSDDecl
-xmlShellPwd
-xmlTextWriterEndDocument
-xmlXPathIdFunction
-xmlXPathOrderDocElems
-
elements-
xmlDOMWrapAdoptNode
-
else
UTF8ToHtml
-UTF8Toisolat1
-docbEncodeEntities
-htmlEncodeEntities
-isolat1ToUTF8
-xmlCharEncodingInputFunc
-xmlCharEncodingOutputFunc
-
embedded
XML_CTXT_FINISH_DTD_0
-XML_CTXT_FINISH_DTD_1
-
emitted
xmlSetGenericErrorFunc
-
empty-element
xmlParseStartTag
-
enable
xmlCatalogSetDebug
-
enabled
xmlSaveFile
-xmlSaveFormatFile
-
enabling
xmlLineNumbersDefault
-xmlPedanticParserDefault
-
enc
xmlParserInputBufferCreateFilename
-
encapsulate
xmlBufferFree
-
encapsulating
_htmlElemDesc
-xmlNewIOInputStream
-
enclose
xmlTextReaderQuoteChar
-
encode
xmlTextWriterWriteBase64
-xmlTextWriterWriteBinHex
-
encoded
_xmlOutputBuffer
-_xmlParserInput
-_xmlParserInputBuffer
-xmlCheckUTF8
-xmlGetUTF8Char
-xmlSplitQName
-xmlStrcat
-xmlStrdup
-xmlTextWriterWriteBase64
-xmlTextWriterWriteBinHex
-xmlUTF8Strlen
-xmlUTF8Strsize
-xmlUTF8Strsub
-
encoder
_xmlOutputBuffer
-_xmlParserInputBuffer
-xmlCharEncOutFunc
-xmlCharEncodingOutputFunc
-
encoder==NULL
xmlC14NDocSaveTo
-xmlC14NExecute
-
enconding
xmlCharEncCloseFunc
-xmlCharEncFirstLine
-xmlCharEncOutFunc
-
encountered
xmlEncodeEntities
-
encountering
XML_CAST_FPTR
-
end-tag
xmlParseElement
-
end-up
xmlParseReference
-
ended
xmlC14NDocDumpMemory
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlC14NExecute
-xmlCleanupThreads
-
ending
xmlXPtrNewCollapsedRange
-xmlXPtrNewRange
-xmlXPtrNewRangeNodeObject
-xmlXPtrNewRangeNodePoint
-xmlXPtrNewRangeNodes
-xmlXPtrNewRangePointNode
-xmlXPtrNewRangePoints
-
ends
_xmlParserNodeInfo
-xmlNanoHTTPClose
-
engine
xmlXPathAxisFunc
-xmlXPathFuncLookupFunc
-xmlXPathVariableLookupFunc
-
englobing
xmlSnprintfElementContent
-xmlSprintfElementContent
-
enhancements
htmlNodeStatus
-
enough
xmlBuildQName
-
ensure
xmlCopyNodeList
-xmlNewTextChild
-
ensures
xmlDOMWrapAdoptNode
-
ensuring
xmlDOMWrapRemoveNode
-
entire
xmlCleanupInputCallbacks
-xmlCleanupOutputCallbacks
-
entities:
xmlParseEntityRef
-xmlParserHandleReference
-
entproc
xmlParserHandlePEReference
-xmlParserHandleReference
-
entries
xmlACatalogAdd
-xmlACatalogRemove
-xmlCatalogAdd
-xmlCatalogConvert
-xmlCatalogRemove
-xmlConvertSGMLCatalog
-xmlDOMWrapAdoptNode
-xmlHashAddEntry3
-xmlLoadACatalog
-xmlLoadCatalog
-xmlLoadSGMLSuperCatalog
-xmlMemShow
-
entry
xmlACatalogAdd
-xmlACatalogRemove
-xmlCatalogAdd
-xmlCatalogAddLocal
-xmlCatalogRemove
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter d:

dangerous
xmlTextReaderCurrentNode
+
data-type
xmlSchemaCopyValue
+
datatype
xmlSchemaGetBuiltInListSimpleTypeItemType
+
day
ftpListCallback
+
day:minute
ftpListCallback
+
de-coupled
xmlValidateDtd
+
deactivated
xmlTextReaderRelaxNGSetSchema
+xmlTextReaderSetSchema
+
deallocate
_xmlParserInput
+xmlCleanupParser
+xmlDecodeEntities
+xmlListDeallocator
+xmlParserInputDeallocate
+xmlStringDecodeEntities
+xmlStringLenDecodeEntities
+xmlXPathFreeNodeSetList
+
deallocated
xmlDictFree
+xmlEncodeEntitiesReentrant
+xmlEncodeSpecialChars
+xmlGetFeaturesList
+xmlHashFree
+xmlNewTextWriter
+xmlRegExecErrInfo
+xmlRegExecNextValues
+xmlSaveUri
+xmlTextReaderConstBaseUri
+xmlTextReaderConstEncoding
+xmlTextReaderConstLocalName
+xmlTextReaderConstName
+xmlTextReaderConstNamespaceUri
+xmlTextReaderConstPrefix
+xmlTextReaderConstString
+xmlTextReaderConstValue
+xmlTextReaderConstXmlVersion
+xmlTextReaderGetAttribute
+xmlTextReaderGetAttributeNo
+xmlTextReaderGetAttributeNs
+xmlTextReaderLookupNamespace
+xmlTextReaderReadInnerXml
+xmlTextReaderReadOuterXml
+xmlTextReaderReadString
+xmlTextReaderRelaxNGSetSchema
+xmlTextReaderSetSchema
+xmlTextReaderValue
+
deallocation
xmlListRemoveAll
+xmlListRemoveFirst
+xmlListRemoveLast
+
deallocator
xmlHashFree
+xmlHashRemoveEntry
+xmlHashRemoveEntry2
+xmlHashRemoveEntry3
xmlHashUpdateEntry
xmlHashUpdateEntry2
xmlHashUpdateEntry3
-xmlXPathNodeSetRemove
-xmlXPtrLocationSetRemove
-
enumerated
attributeDecl
-attributeDeclSAXFunc
-xmlSAX2AttributeDecl
-
enumeration
_xmlAttribute
+xmlListCreate
+
debug
DEBUG_MEMORY
+xmlCatalogSetDebug
+xmlDebugDumpAttr
+xmlDebugDumpAttrList
+xmlDebugDumpDTD
+xmlDebugDumpDocument
+xmlDebugDumpDocumentHead
+xmlDebugDumpEntities
+xmlDebugDumpNode
+xmlDebugDumpNodeList
+xmlDebugDumpOneNode
+xmlRegexpPrint
+xmlSnprintfElementContent
+
debugging
DEBUG_MEMORY
+DEBUG_MEMORY_LOCATION
+LIBXML_DEBUG_RUNTIME
+xmlCatalogSetDebug
+xmlXPathDebugDumpObject
+
decimal
xmlXPathStringFunction
+
decl
XML_SCHEMAS_ELEM_INTERNAL_CHECKED
+_xmlSchemaAttribute
xmlAddAttributeDecl
-xmlCopyEnumeration
-xmlCreateEnumeration
-xmlFreeEnumeration
-xmlParseAttributeType
-xmlParseEnumeratedType
-xmlParseEnumerationType
-
environment
xmlNanoFTPProxy
+xmlNewDocElementContent
+xmlNewElementContent
+
declarations
_xmlXPathContext
+htmlParseCharRef
+startElementNsSAX2Func
+xmlParseCharRef
+xmlParseEntityDecl
+xmlParseEntityRef
+xmlParseEntityValue
+xmlParseExternalSubset
+xmlParseMarkupDecl
+xmlParsePEReference
+xmlParseSDDecl
xmlReconciliateNs
-xmlShell
-xmlXPathInit
-
epsilon
xmlAutomataNewAllTrans
-xmlAutomataNewCountedTrans
-xmlAutomataNewCounterTrans
-xmlAutomataNewEpsilon
-
equal
xmlAddChild
+xmlSAX2StartElementNs
+xmlTextWriterWriteFormatDTD
+xmlTextWriterWriteVFormatDTD
+xmlValidateNotationDecl
+xmlXPtrBuildNodeList
+
declare
xmlParseEntityRef
+xmlParserHandleReference
+xmlSearchNs
+
declared
_xmlElement
+_xmlParserCtxt
+xmlParseAttValue
+xmlParseAttribute
+xmlParseAttributeType
+xmlParseDefaultDecl
+xmlParseElementDecl
+xmlParseEntityDecl
+xmlParseEntityRef
+xmlParseNamespace
+xmlParseNotationType
+xmlReconciliateNs
+xmlTextReaderStandalone
+xmlValidCtxtNormalizeAttributeValue
+xmlValidNormalizeAttributeValue
+
declaring
xmlGetID
+
decode
xmlDecodeEntities
+
def
xmlParseAttributeListDecl
+xmlParseAttributeType
+
defaulted
XML_COMPLETE_ATTRS
+_xmlParserCtxt
+startElementNsSAX2Func
+xmlSAX2StartElementNs
+xmlTextReaderIsDefault
+
defaultexternal
xmlSetExternalEntityLoader
+
defaults
xmlShell
+xmlXPathLocalNameFunction
+xmlXPathNamespaceURIFunction
+xmlXPathNormalizeFunction
+xmlXPathStringFunction
+xmlXPathStringLengthFunction
+
define
DEBUG_MEMORY
+XML_CAST_FPTR
+xmlHandleEntity
+xmlSchemaGetCanonValue
+
defined
WITHOUT_TRIO
+WITH_TRIO
+_xmlXPathContext
+xmlGetNsList
+xmlHandleEntity
+xmlNewNs
+xmlNodeGetBase
+xmlParseBalancedChunkMemory
+xmlParseBalancedChunkMemoryRecover
+xmlParseElementContentDecl
+xmlParseInNodeContext
+xmlSchemaGetBuiltInListSimpleTypeItemType
+xmlSearchNs
+xmlSearchNsByHref
+xmlTextReaderIsDefault
+xmlValidGetValidElements
+xmlValidateDtdFinal
+xmlXPathNextAncestorOrSelf
+
defining
XINCLUDE_FALLBACK
+XINCLUDE_HREF
+XINCLUDE_NODE
+XINCLUDE_NS
+XINCLUDE_OLD_NS
+XINCLUDE_PARSE
+XINCLUDE_PARSE_ENCODING
+XINCLUDE_PARSE_TEXT
+XINCLUDE_PARSE_XML
+XINCLUDE_PARSE_XPOINTER
+xmlGetID
+xmlReconciliateNs
+xmlShellDu
+xmlTextReaderConstNamespaceUri
+xmlTextReaderNamespaceUri
+
definitions
_xmlNode
+startElementNsSAX2Func
+xmlLoadCatalog
+xmlLoadCatalogs
+xmlPatterncompile
+xmlSAX2StartElementNs
+xmlTextReaderPreservePattern
+xmlValidateDtd
+
delayed
xmlOutputBufferWrite
+xmlOutputBufferWriteEscape
+xmlOutputBufferWriteString
+
delegation
xmlCatalogSetDefaultPrefer
+
delete
xmlNanoFTPDele
+
deletion
xmlCatalogSetDefaultPrefer
+
depending
xmlIsID
+xmlIsRef
+xmlListDataCompare
+xmlParseReference
+xmlXPathEqualValues
+xmlXPathLangFunction
+xmlXPathNotEqualValues
+
deprecated
LIBXML_LEGACY_ENABLED
+_htmlElemDesc
+htmlAttrAllowed
+htmlElementAllowedHere
+htmlElementStatusHere
+htmlNodeStatus
+xmlCheckLanguageID
+xmlCreateEntitiesTable
+xmlDecodeEntities
+xmlParserHandleReference
+xmlScanName
+
depth
_xmlParserCtxt
+_xmlValidCtxt
+xmlPatternMaxDepth
+xmlTextReaderDepth
+
deregistration
xmlDeregisterNodeDefault
+
derivation
XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION
+XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION
+
des
xmlTextReaderRelaxNGSetSchema
+xmlTextReaderRelaxNGValidate
+xmlTextReaderSchemaValidate
+xmlTextReaderSetSchema
+
desactivated
xmlTextReaderRelaxNGSetSchema
+xmlTextReaderRelaxNGValidate
+xmlTextReaderSchemaValidate
+xmlTextReaderSetSchema
+
descendant
xmlXPathNextDescendant
+
descendant-or-self
xmlXPathNextDescendantOrSelf
+
descendants
xmlXPathNextDescendant
+xmlXPathNextDescendantOrSelf
+xmlXPathNextFollowing
+
described
xmlValidateAttributeDecl
+xmlValidateDocument
+xmlValidateDocumentFinal
+xmlValidateDtdFinal
+xmlValidateElementDecl
+xmlValidateNotationDecl
+xmlValidateOneAttribute
+xmlValidateOneElement
+xmlValidateOneNamespace
+xmlValidateRoot
+
describing
docbParseDoc
+docbParseFile
+docbSAXParseDoc
+docbSAXParseFile
+htmlCreateFileParserCtxt
+htmlParseDoc
+htmlParseFile
+htmlSAXParseDoc
+htmlSAXParseFile
+xmlFindCharEncodingHandler
+xmlParseElementChildrenContentDecl
+xmlParseElementMixedContentDecl
+
description
_htmlElemDesc
+_htmlEntityDesc
+htmlElementAllowedHereDesc
+xmlCopyDocElementContent
+xmlCopyElementContent
+xmlGetDtdAttrDesc
+xmlGetDtdElementDesc
+xmlGetDtdNotationDesc
+xmlGetDtdQAttrDesc
+xmlGetDtdQElementDesc
+xmlIsMixedElement
+xmlNodeSetLang
+
descriptor
htmlCtxtReadFd
+htmlReadFd
+xmlCtxtReadFd
+xmlMemDisplay
+xmlMemShow
+xmlOutputBufferCreateFd
+xmlParserInputBufferCreateFd
+xmlReadFd
+xmlReaderForFd
+xmlReaderNewFd
+xmlSaveToFd
+xmlSaveToIO
+
designed
xmlCharEncodingOutputFunc
+xmlLoadExternalEntity
+
desired
xmlBufferResize
+xmlIOHTTPOpenW
+xmlUTF8Strloc
+xmlUTF8Strpos
+
destination
xmlDOMWrapAdoptNode
+xmlIOHTTPOpenW
+xmlURIUnescapeString
+
destroy
xmlTextReaderCurrentDoc
+
destroyed
xmlAddChild
xmlAddNextSibling
xmlAddPrevSibling
-xmlStrEqual
-xmlStrQEqual
-xmlTextReaderConstName
-xmlTextReaderName
-xmlXPathCompareValues
-xmlXPathEqualValues
-xmlXPathEvalPredicate
-xmlXPathEvaluatePredicateResult
-xmlXPathIdFunction
-xmlXPathNotEqualValues
-xmlXPathPositionFunction
-xmlXPathSubstringFunction
-
equality
_xmlParserInput
-xmlListDataCompare
-
equivalent
xmlMallocAtomicLoc
-xmlMallocLoc
-xmlMemFree
-xmlMemMalloc
-xmlMemRealloc
-xmlMemStrdupLoc
-xmlMemoryStrdup
-xmlNodeListGetRawString
-xmlNodeListGetString
-xmlReallocLoc
-xmlUTF8Strpos
-xmlXPathCastToString
-xmlXPathConvertBoolean
-xmlXPathConvertNumber
-xmlXPathConvertString
-
errors
INPUT_CHUNK
-_xmlSAXHandler
-_xmlSAXHandlerV1
-_xmlValidCtxt
-_xmlXPathContext
-fatalErrorSAXFunc
-initGenericErrorDefaultFunc
-xmlCharEncOutFunc
-xmlCheckHTTPInput
-xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-xmlDOMWrapRemoveNode
-xmlDebugCheckDocument
-xmlHashAddEntry
-xmlHashAddEntry2
-xmlHashAddEntry3
-xmlRelaxNGGetParserErrors
-xmlRelaxNGSetParserErrors
-xmlSchemaGetCanonValue
-xmlSchemaGetCanonValueWhtsp
-xmlSchemaGetParserErrors
-xmlSchemaSetParserErrors
-xmlSchemaValueAppend
-xmlSchemaValueGetAsString
-xmlSchemaValueGetNext
-xmlShellCmd
-
errror
xmlDOMWrapNewCtxt
-
escape
docbEncodeEntities
-htmlEncodeEntities
-xmlURIEscape
-xmlURIEscapeStr
-
escaped
xmlNewChild
-xmlNewDocNode
-xmlNewDocNodeEatName
-xmlNewTextChild
-xmlParseCDSect
-xmlParseCharData
-xmlSaveUri
-xmlURIEscape
-xmlURIEscapeStr
-
escapes
xmlOutputBufferWriteEscape
-xmlURIEscapeStr
-
escaping
xmlOutputBufferWriteEscape
-xmlSaveSetAttrEscape
-xmlSaveSetEscape
-
established
xmlNanoFTPUpdateURL
-
etc
xmlDocGetRootElement
-xmlDocSetRootElement
-xmlParseInNodeContext
-
evaluate
xmlXPathEvalExpr
-
evaluated
xmlXPathEvalPredicate
-xmlXPathEvaluatePredicateResult
-xmlXPtrNewContext
-
evaluating
xmlXPathEvalPredicate
-xmlXPathEvaluatePredicateResult
-
evaluation
_xmlXPathFunct
-_xmlXPathParserContext
-valuePop
-valuePush
-xmlRegNewExecCtxt
-xmlShellPrintXPathResult
-xmlXPathCompiledEval
-xmlXPathEval
-xmlXPathEvalExpression
-xmlXPathEvalFunc
-xmlXPathEvalPredicate
-xmlXPathEvaluatePredicateResult
-xmlXPtrBuildNodeList
-xmlXPtrEval
-
evaulation
xmlRegFreeExecCtxt
-
even
_xmlParserInput
-xmlNodeGetBase
-xmlParseBalancedChunkMemoryRecover
-xmlTextWriterFullEndElement
-xmlXPathRoundFunction
-
events
htmlSAXParseDoc
-xmlSchemaValidateStream
-
everywhere
xmlSAXParseFileWithData
-xmlSAXParseMemoryWithData
-
exact
xmlGetBufferAllocationScheme
-xmlSetBufferAllocationScheme
-
example
xmlParserInputBufferCreateStatic
-xmlReconciliateNs
-xmlTextReaderConstString
-xmlXPathSubstringAfterFunction
-xmlXPathSubstringBeforeFunction
-xmlXPathSubstringFunction
-xmlXPathTranslateFunction
-
examples
xmlBuildRelativeURI
-
except
xmlGetNoNsProp
-xmlParseAttValue
-xmlParseCatalogFile
-xmlParseEntityRef
-xmlParserHandleReference
-
exception
xmlURIEscapeStr
-
excluding
IS_CHAR
-xmlXPathNextFollowing
-xmlXPathNextPreceding
-
exclusions
XML_SCHEMAS_ELEM_FINAL_ABSENT
-
exclusions:
XML_SCHEMAS_ELEM_FINAL_EXTENSION
-XML_SCHEMAS_ELEM_FINAL_RESTRICTION
-
exclusive
xmlC14NDocDumpMemory
+xmlTextReaderCurrentNode
+
destruction
xmlDeregisterNodeDefault
+
details
xmlC14NDocDumpMemory
xmlC14NDocSave
xmlC14NDocSaveTo
xmlC14NExecute
-
executed
xmlAutomataCompile
-
execution
xmlRegExecErrInfo
-xmlRegExecNextValues
-xmlRegExecPushString
-xmlRegExecPushString2
-
exist
xmlXPtrLocationSetAdd
-
existent
xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-
exists
xmlDictExists
-xmlShellPwd
-xmlTextReaderConstXmlLang
-xmlTextReaderXmlLang
-xmlValidateNotationDecl
-
expand
xmlLoadSGMLSuperCatalog
-
expanded
xmlRelaxNGValidateFullElement
-xmlSchemaNewStringValue
-xmlXPathNamespaceURIFunction
-
expected
x
-xmlBufferCreateStatic
-xmlParserInputBufferCreateStatic
-xmlRelaxNGNewMemParserCtxt
-xmlRelaxNGNewParserCtxt
-xmlSchemaNewMemParserCtxt
-xmlSchemaNewParserCtxt
-xmlSchemaValidateListSimpleTypeFacet
+
detect
xlinkIsLink
+xmlCreatePushParserCtxt
+xmlInputMatchCallback
+xmlKeepBlanksDefault
+xmlOutputMatchCallback
+xmlXPathIsInf
+xmlXPathIsNaN
+
detected
CHECK_ERROR
+CHECK_ERROR0
+endDocument
+endDocumentSAXFunc
+endElement
+endElementNsSAX2Func
+endElementSAXFunc
+reference
+referenceSAXFunc
+startElementNsSAX2Func
+xlinkExtendedLinkFunk
+xlinkExtendedLinkSetFunk
+xlinkIsLink
+xmlParserHandlePEReference
+xmlParserHandleReference
+xmlSAX2EndDocument
+xmlSAX2EndElement
+xmlSAX2EndElementNs
+xmlSAX2Reference
+xmlSAX2StartElementNs
+xmlSchemaIsValid
+
detection
docbCreatePushParserCtxt
+xlinkExtendedLinkFunk
+xlinkExtendedLinkSetFunk
+xlinkGetDefaultDetect
+xlinkNodeDetectFunc
+xlinkSetDefaultDetect
+xlinkSimpleLinkFunk
+xmlCreatePushParserCtxt
+xmlIsID
+xmlParseBalancedChunkMemory
+xmlParseBalancedChunkMemoryRecover
+xmlParseExternalEntity
+
determine
xmlC14NExecute
+xmlCharInRange
+
determined
xmlXPathLangFunction
+
determinist
xmlAutomataIsDeterminist
+xmlRegexpIsDeterminist
+
dict
_xmlDoc
+
dictionary
_xmlParserCtxt
+xmlDictCleanup
+xmlDictCreate
+xmlDictCreateSub
+xmlDictReference
+xmlHashCreateDict
+xmlPatterncompile
xmlStreamPush
xmlStreamPushAttr
-
experimental
xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
+
dictionnary
_xmlParserCtxt
+_xmlXPathContext
+xmlDictCreate
+xmlDictCreateSub
+xmlDictExists
+xmlDictFree
+xmlDictLookup
+xmlDictOwns
+xmlDictQLookup
+xmlDictReference
+xmlDictSize
+
did
XML_SCHEMAS_TYPE_BLOCK_DEFAULT
+xmlTextReaderGetRemainder
+xmlTextReaderStandalone
+
difference
xmlXPathDifference
+
different
xmlACatalogAdd
+xmlBuildQName
+xmlCatalogAdd
+xmlNodeGetBase
+xmlStrEqual
+xmlStrQEqual
+
differentiate
xmlXPathOrderDocElems
+
differently
xmlTextReaderGetRemainder
+
digit
xmlXPathStringFunction
+
digits
xmlXPathStringFunction
+
dir
xmlShellDir
+
direct
htmlElementAllowedHere
+htmlElementAllowedHereDesc
+htmlElementStatusHere
+xmlParseAttribute
+xmlURIUnescapeString
+
direction
xmlXPathNextAncestor
+xmlXPathNextAncestorOrSelf
+xmlXPathNextAttribute
+xmlXPathNextChild
+xmlXPathNextDescendant
+xmlXPathNextDescendantOrSelf
+xmlXPathNextFollowing
+xmlXPathNextFollowingSibling
+xmlXPathNextNamespace
+xmlXPathNextParent
+xmlXPathNextPreceding
+xmlXPathNextPrecedingSibling
+xmlXPathNextSelf
+
directly
xmlNodeBufGetContent
+xmlNodeGetContent
+xmlNormalizeURIPath
+xmlParseAttribute
+xmlParseElementContentDecl
+xmlParsePEReference
+xmlParseSDDecl
+xmlParserHandlePEReference
+xmlParserHandleReference
+xmlParserInputBufferGrow
+xmlXPathConvertBoolean
+xmlXPathConvertNumber
+xmlXPathConvertString
+xmlXPtrNewContext
+
directories
xmlLoadCatalogs
+
directory
_xmlParserCtxt
+_xmlParserInput
+xmlCheckFilename
+xmlNanoFTPCwd
+xmlNanoFTPDele
+xmlParserGetDirectory
+xmlShellList
+
disable
xmlCatalogSetDebug
+
disabled
XML_CAST_FPTR
+_xmlParserCtxt
+
disabling
xmlNoNetExternalEntityLoader
+
disallowed
XML_SCHEMAS_ELEM_BLOCK_EXTENSION
+XML_SCHEMAS_ELEM_BLOCK_RESTRICTION
+XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION
+
discard
xmlParserInputRead
+
discarding
xmlParseAttValue
+xmlValidCtxtNormalizeAttributeValue
+xmlValidNormalizeAttributeValue
+
disconnected
xmlAutomataNewState
+
discovering
xmlSwitchEncoding
+xmlSwitchInputEncoding
+xmlSwitchToEncoding
+
disctionary
xmlDictOwns
+
display
errorSAXFunc
+fatalErrorSAXFunc
+warningSAXFunc
+xmlMemShow
+xmlParserError
+xmlParserValidityError
+xmlParserValidityWarning
+xmlParserWarning
+
distinct
xmlXPathDistinct
+xmlXPathDistinctSorted
+
distinguish
xmlXPathStringFunction
+
div
xmlXPathDivValues
+xmlXPathSubstringFunction
+
doc
htmlNodeDumpFileFormat
+xmlDOMWrapAdoptNode
xmlDOMWrapRemoveNode
-
explicitly
xmlSAXDefaultVersion
-
explored
xmlXPathAxisFunc
-
exposing
xmlTextReaderRead
-
expressions
LIBXML_REGEXP_ENABLED
-
exslSetsDistinctSorted
xmlXPathDistinct
-
exslSetsLeadingSorted
xmlXPathLeading
-
exslSetsNodeLeadingSorted
xmlXPathNodeLeading
-
ext
_xmlParserCtxt
-
extParsedEnt
xmlParseCtxtExternalEntity
-xmlParseEntity
-xmlParseExtParsedEnt
-xmlParseExternalEntity
-xmlSAXParseEntity
-
extSubset
xmlParseExternalSubset
-
extSubsetDecl
xmlParseExternalSubset
-
extend
xmlStrncat
-xmlValidGetPotentialChildren
-
extended
xlinkExtendedLinkFunk
-xlinkExtendedLinkSetFunk
-xmlXPathNodeSetMerge
-xmlXPtrLocationSetMerge
-
extension
XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION
-XML_SCHEMAS_ELEM_FINAL_EXTENSION
-XML_SCHEMAS_FINAL_DEFAULT_EXTENSION
-XML_SCHEMAS_TYPE_BLOCK_EXTENSION
-XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION
-XML_SCHEMAS_TYPE_FINAL_EXTENSION
-
extensions
_xmlSAXHandler
-
extract
XML_GET_CONTENT
-XML_GET_LINE
-xmlBufferContent
+xmlNewTextWriterDoc
+
doc-
xmlDOMWrapRemoveNode
+xmlDocGetRootElement
+xmlDocSetRootElement
+xmlNewTextWriterTree
+
docs
xmlBuildRelativeURI
+
doctypedecl
xmlParseDocTypeDecl
+xmlParseDocument
+
documents
xmlIsID
+xmlParseEntityRef
+xmlParserHandleReference
+xmlSAXParseDoc
+xmlSAXParseFile
+xmlSAXParseFileWithData
+xmlSAXParseMemory
+xmlSAXParseMemoryWithData
+xmlXPathOrderDocElems
+
does
_xmlEntity
+xmlCheckUTF8
+xmlCtxtResetLastError
+xmlGetNoNsProp
+xmlGetNsProp
+xmlGetProp
+xmlHasNsProp
+xmlModuleFree
+xmlNodeGetBase
+xmlParseMarkupDecl
+xmlResetLastError
+xmlSaveDoc
+xmlSaveTree
+xmlSchemaGetCanonValue
+xmlSchemaValPredefTypeNodeNoNorm
+xmlURIEscape
+xmlURIUnescapeString
+xmlValidateAttributeDecl
+xmlValidateDocument
+xmlValidateDocumentFinal
+xmlValidateDtd
+xmlValidateDtdFinal
+xmlValidateElementDecl
+xmlValidateNotationDecl
+xmlValidateOneAttribute
+xmlValidateOneElement
+xmlValidateOneNamespace
+xmlValidateRoot
+xmlXPathSubstringAfterFunction
+xmlXPathSubstringBeforeFunction
+
doesn
_htmlElemDesc
+htmlElementAllowedHere
+xmlCleanupParser
+xmlCreateEntitiesTable
+xmlFreeNode
+xmlInitCharEncodingHandlers
+xmlKeepBlanksDefault
+xmlNodeListGetRawString
+xmlParserInputRead
+xmlPatternMatch
+xmlRemoveProp
+xmlUTF8Strlen
+xmlValidateRoot
+xmlXPathLeading
+xmlXPathLeadingSorted
+xmlXPathNodeLeading
+xmlXPathNodeLeadingSorted
+xmlXPathNodeTrailing
+xmlXPathNodeTrailingSorted
+xmlXPathTrailing
+xmlXPathTrailingSorted
+
don
XML_SCHEMAS_ANY_LAX
+xlinkIsLink
+xmlCreatePushParserCtxt
+xmlNewDocNode
+xmlNewDocNodeEatName
+xmlParseStartTag
+xmlRegExecErrInfo
+xmlRegExecNextValues
+xmlSearchNs
+xmlXPathFreeNodeSetList
+xmlXPathNodeSetFreeNs
+
dotgnu
xmlTextReaderNodeType
+
double
val
+xmlBufferWriteQuotedString
+xmlGetBufferAllocationScheme
+xmlSetBufferAllocationScheme
+xmlXPathIsInf
+xmlXPathIsNaN
+xmlXPathNewFloat
+xmlXPathNodeSetCreate
+xmlXPathReturnNumber
+xmlXPathStringEvalNumber
+xmlXPtrLocationSetCreate
+
double-hyphen
xmlParseComment
+
double-quotes
xmlBufferWriteQuotedString
+
doublequotes
xmlParseQuotedString
+
down
xmlGetBufferAllocationScheme
+xmlSetBufferAllocationScheme
+
draft
XINCLUDE_OLD_NS
+
drop
xmlFileRead
+xmlIOFTPRead
+xmlIOHTTPRead
+xmlParseNamespace
+xmlParseQuotedString
+xmlXPtrBuildNodeList
+
dtd
getSystemId
+htmlNewDoc
+htmlNewDocNoDtD
+xmlCopyDtd
+xmlSAX2GetSystemId
+xmlValidateDtd
+
dtds
getSystemId
+xmlSAX2GetSystemId
+xmlValidateDtdFinal
+
dump
xmlBufferAdd
+xmlBufferCCat
+xmlBufferDump
+xmlBufferShrink
+xmlDumpAttributeDecl
+xmlDumpAttributeTable
+xmlDumpElementDecl
+xmlDumpElementTable
+xmlDumpEntitiesTable
+xmlDumpEntityDecl
+xmlDumpNotationDecl
+xmlDumpNotationTable
+xmlLsOneNode
+xmlMemShow
+xmlSnprintfElementContent
+xmlXPathDebugDumpObject
+
dumps
xmlShellBase
+xmlShellCat
+xmlShellDir
+
duplicate
xmlCanonicPath
+
duplicated
xmlRelaxNGNewDocParserCtxt
+xmlXPathNodeSetFreeNs
+
duplicates
xmlSchemaCopyValue
+
duration
xmlSchemaGetCanonValue
+
during
xmlSAXDefaultVersion
+xmlSchemaIsValid
+xmlSchemaNewDocParserCtxt
+xmlSchemaSetValidOptions

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk14.html b/doc/APIchunk14.html index b145d47a..9855554b 100644 --- a/doc/APIchunk14.html +++ b/doc/APIchunk14.html @@ -7,433 +7,452 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index f-f for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index f-f for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index e-e for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index e-e for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter f:

fTP
xmlNanoFTPConnectTo
-
facet
XML_SCHEMAS_FACET_COLLAPSE
-XML_SCHEMAS_FACET_PRESERVE
-XML_SCHEMAS_FACET_REPLACE
-XML_SCHEMAS_FACET_UNKNOWN
-_xmlSchemaFacetLink
-xmlSchemaCheckFacet
-xmlSchemaFreeFacet
-xmlSchemaGetFacetValueAsULong
-xmlSchemaIsBuiltInTypeFacet
-xmlSchemaValidateFacet
-xmlSchemaValidateFacetWhtsp
-xmlSchemaValidateLengthFacet
-xmlSchemaValidateLengthFacetWhtsp
-xmlSchemaValidateListSimpleTypeFacet
-
facets
XML_SCHEMAS_TYPE_FACETSNEEDVALUE
-XML_SCHEMAS_TYPE_HAS_FACETS
-XML_SCHEMAS_TYPE_NORMVALUENEEDED
-xmlSchemaCheckFacet
-
fail
xmlC14NDocDumpMemory
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlC14NExecute
-xmlShellPrintXPathError
-
failed
xmlCharEncodingInputFunc
-xmlCharEncodingOutputFunc
-xmlNanoFTPConnectTo
-xmlNanoFTPCwd
-xmlNanoFTPDele
-xmlRemoveID
-xmlRemoveRef
-xmlShellLoad
-xmlXIncludeProcess
-xmlXIncludeProcessFlags
-xmlXIncludeProcessNode
-xmlXIncludeProcessTree
-xmlXIncludeProcessTreeFlags
-xmlXPathCompareValues
-
fails
UTF8ToHtml
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter e:

each
_xmlParserCtxt
+xmlHashCopy
+xmlHashScan
+xmlHashScan3
+xmlHashScanFull
+xmlHashScanFull3
+xmlParseAttributeType
+xmlSetGenericErrorFunc
+xmlSetStructuredErrorFunc
+xmlValidateOneElement
+xmlXPathIdFunction
+xmlXPathSubstringFunction
+
edition
xmlCheckLanguageID
+
effective
xmlLoadCatalog
+xmlLoadCatalogs
+
efficiency
xmlBuildRelativeURI
+
either
xmlBoolToText
+xmlCurrentChar
+xmlDOMWrapAdoptNode
+xmlLoadACatalog
+xmlNodeBufGetContent
+xmlNodeGetContent
+xmlParseElementChildrenContentDecl
+xmlParseElementContentDecl
+xmlParseMarkupDecl
+xmlParsePEReference
+xmlParseStartTag
+xmlParserHandlePEReference
+xmlTextReaderNormalization
+
either:
resolveEntity
+resolveEntitySAXFunc
+xmlSAX2ResolveEntity
+
elem
XML_SCHEMAS_ELEM_INTERNAL_CHECKED
+
element-
xmlXPathOrderDocElems
+
element-node
xmlDOMWrapReconcileNamespaces
+
element-nodes
xmlDOMWrapReconcileNamespaces
+
elementdecl
xmlParseElementDecl
+xmlParseMarkupDecl
+
elements
XML_CATALOGS_NAMESPACE
+XML_COMPLETE_ATTRS
+XML_SCHEMAS_ATTR_GLOBAL
+XML_SCHEMAS_ATTR_NSDEFAULT
+XML_SCHEMAS_ELEM_NSDEFAULT
+XML_SCHEMAS_QUALIF_ELEM
+_xmlDtd
+htmlElementAllowedHere
+htmlNodeStatus
+xlinkIsLink
+xmlDictSize
+xmlFreePatternList
+xmlHashSize
+xmlLineNumbersDefault
+xmlListMerge
+xmlListReverse
+xmlListSize
+xmlListSort
+xmlParseAttributeType
+xmlParseDefaultDecl
+xmlParseSDDecl
+xmlShellPwd
+xmlTextWriterEndDocument
+xmlXPathIdFunction
+xmlXPathOrderDocElems
+
elements-
xmlDOMWrapAdoptNode
+
else
UTF8ToHtml
UTF8Toisolat1
-_htmlElemDesc
docbEncodeEntities
htmlEncodeEntities
-xmlCanonicPath
-xmlCharEncFirstLine
-xmlCharEncInFunc
-xmlCharEncOutFunc
-xmlCheckFilename
-xmlFileOpen
-
failure
CHECK_TYPE0
-htmlDocDump
-htmlNodeDumpFileFormat
-htmlSaveFile
-htmlSaveFileEnc
-htmlSaveFileFormat
-xmlBufferShrink
-xmlDocDump
-xmlDocFormatDump
-xmlFileOpen
-xmlFileRead
-xmlListAppend
-xmlListInsert
-xmlNanoHTTPFetch
-xmlNanoHTTPMethod
-xmlNanoHTTPMethodRedir
-xmlNanoHTTPOpen
-xmlNanoHTTPOpenRedir
-xmlNanoHTTPSave
-xmlNewAutomata
-xmlPatternGetStreamCtxt
-xmlPatternMatch
-xmlRelaxNGGetParserErrors
-xmlSaveFile
-xmlSaveFileEnc
-xmlSaveFileTo
+isolat1ToUTF8
+xmlCharEncodingInputFunc
+xmlCharEncodingOutputFunc
+
embedded
XML_CTXT_FINISH_DTD_0
+XML_CTXT_FINISH_DTD_1
+
emitted
xmlSetGenericErrorFunc
+
empty-element
xmlParseStartTag
+
enable
xmlCatalogSetDebug
+
enabled
xmlSaveFile
xmlSaveFormatFile
-xmlSaveFormatFileTo
-xmlSchemaGetParserErrors
-
fallback
XINCLUDE_FALLBACK
-docbSAXParseDoc
-docbSAXParseFile
-htmlSAXParseDoc
-htmlSAXParseFile
-xmlFileOpen
-xmlSAXParseDoc
-xmlSAXParseEntity
-xmlSAXParseFile
-xmlSAXParseFileWithData
-xmlSAXParseMemory
-xmlSAXParseMemoryWithData
-
far
_xmlParserCtxt
-fatalErrorSAXFunc
-
fashion
xmlNewRMutex
-
fast
htmlInitAutoClose
-
faster
htmlNodeStatus
-xmlStrEqual
-
fatal
fatalErrorSAXFunc
-
fatalError
fatalErrorSAXFunc
-
favor
xmlNewElementContent
-
feature
xmlGetFeature
-xmlGetFeaturesList
-xmlSetFeature
-
features
xmlGetFeaturesList
-
fed
xmlCreatePushParserCtxt
-xmlNewTextReader
-xmlNewTextReaderFilename
-
fetch
xmlNanoFTPGetSocket
-xmlNanoFTPOpen
-xmlNanoHTTPFetch
-
fetching
docbCreatePushParserCtxt
-htmlCreatePushParserCtxt
-xmlCreatePushParserCtxt
-xmlUTF8Strpos
-
field
XML_COMPLETE_ATTRS
-XML_CTXT_FINISH_DTD_0
-XML_CTXT_FINISH_DTD_1
-XML_DETECT_IDS
-XML_SKIP_IDS
-_xmlError
-xmlParseMisc
-xmlXPathOrderDocElems
-
fields
XML_SAX2_MAGIC
-_htmlElemDesc
-_xmlParserCtxt
-_xmlSAXHandler
-xmlParseURIReference
-
files
xmlNanoFTPList
-
filesystem
htmlCtxtReadFile
-htmlReadFile
-xmlCanonicPath
-xmlCtxtReadFile
-xmlReadFile
-xmlReaderForFile
-xmlReaderNewFile
-
filled
xmlGetFeaturesList
-
fills
xmlParseURIReference
-
filters
xmlParseEncodingDecl
-
final
XML_SCHEMAS_TYPE_FINAL_DEFAULT
-XML_SCHEMAS_TYPE_FINAL_EXTENSION
-XML_SCHEMAS_TYPE_FINAL_LIST
-XML_SCHEMAS_TYPE_FINAL_RESTRICTION
-XML_SCHEMAS_TYPE_FINAL_UNION
-xmlAutomataSetFinalState
-xmlBuildURI
-xmlRegExecPushString
-xmlRegExecPushString2
-xmlValidateDocumentFinal
-xmlValidateDtdFinal
-
finalDefault
XML_SCHEMAS_FINAL_DEFAULT_EXTENSION
-XML_SCHEMAS_FINAL_DEFAULT_LIST
-XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION
-XML_SCHEMAS_FINAL_DEFAULT_UNION
-
find
xmlGetThreadId
-xmlIsXHTML
-
finding
xmlNanoFTPScanProxy
-xmlNanoFTPUpdateURL
-xmlNanoHTTPScanProxy
-
finds
xmlSearchNs
-xmlSearchNsByHref
-
finishDtd
XML_CTXT_FINISH_DTD_0
-XML_CTXT_FINISH_DTD_1
-
finished
_xmlValidCtxt
-xmlCleanupParser
-xmlSkipBlankChars
-xmlTextReaderCurrentDoc
-xmlTextReaderPreserve
-xmlTextReaderPreservePattern
-
finishing
xmlByteConsumed
-
firs
xmlCharEncOutFunc
-
fist
xmlEntityReferenceFunc
-
fit
xmlCharEncFirstLine
-xmlCharEncInFunc
+
enabling
xmlLineNumbersDefault
+xmlPedanticParserDefault
+
enc
xmlParserInputBufferCreateFilename
+
encapsulate
xmlBufferFree
+
encapsulating
_htmlElemDesc
+xmlNewIOInputStream
+
enclose
xmlTextReaderQuoteChar
+
encode
xmlTextWriterWriteBase64
+xmlTextWriterWriteBinHex
+
encoded
_xmlOutputBuffer
+_xmlParserInput
+_xmlParserInputBuffer
+xmlCheckUTF8
+xmlGetUTF8Char
+xmlSplitQName
+xmlStrcat
+xmlStrdup
+xmlTextWriterWriteBase64
+xmlTextWriterWriteBinHex
+xmlUTF8Strlen
+xmlUTF8Strsize
+xmlUTF8Strsub
+
encoder
_xmlOutputBuffer
+_xmlParserInputBuffer
xmlCharEncOutFunc
-
fixed
XML_SCHEMAS_ATTR_FIXED
-XML_SCHEMAS_ELEM_FIXED
-xmlParseDefaultDecl
-xmlSchemaGetCanonValue
-
flag
XML_SCHEMAS_ELEM_CIRCULAR
-htmlSetMetaEncoding
-initxmlDefaultSAXHandler
-xmlC14NDocDumpMemory
+xmlCharEncodingOutputFunc
+
encoder==NULL
xmlC14NDocSaveTo
+xmlC14NExecute
+
enconding
xmlCharEncCloseFunc
+xmlCharEncFirstLine
+xmlCharEncOutFunc
+
encountered
xmlEncodeEntities
+
encountering
XML_CAST_FPTR
+
end-tag
xmlParseElement
+
end-up
xmlParseReference
+
ended
xmlC14NDocDumpMemory
xmlC14NDocSave
xmlC14NDocSaveTo
xmlC14NExecute
-xmlSAX2InitDefaultSAXHandler
-xmlTextReaderIsValid
-
flagged
_htmlElemDesc
-htmlGetMetaEncoding
-
flags
xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-xmlPatterncompile
-xmlReaderForDoc
-xmlReaderForFd
-xmlReaderForFile
-xmlReaderForIO
-xmlReaderForMemory
-xmlReaderNewDoc
-xmlReaderNewFd
-xmlReaderNewFile
-xmlReaderNewIO
-xmlReaderNewMemory
-xmlRelaxParserSetFlag
-xmlXIncludeSetFlags
-
flat
xmlStringGetNodeList
-xmlStringLenGetNodeList
-
floor
xmlXPathFloorFunction
-
flow
xmlScanName
-
flushes
xmlOutputBufferClose
-xmlOutputBufferFlush
-
follow
xmlXPathNodeTrailing
-xmlXPathNodeTrailingSorted
+xmlCleanupThreads
+
ending
xmlXPtrNewCollapsedRange
+xmlXPtrNewRange
+xmlXPtrNewRangeNodeObject
+xmlXPtrNewRangeNodePoint
+xmlXPtrNewRangeNodes
+xmlXPtrNewRangePointNode
+xmlXPtrNewRangePoints
+
ends
_xmlParserNodeInfo
+xmlNanoHTTPClose
+
engine
xmlXPathAxisFunc
+xmlXPathFuncLookupFunc
+xmlXPathVariableLookupFunc
+
englobing
xmlSnprintfElementContent
+xmlSprintfElementContent
+
enhancements
htmlNodeStatus
+
enough
xmlBuildQName
+
ensure
xmlCopyNodeList
+xmlNewTextChild
+
ensures
xmlDOMWrapAdoptNode
+
ensuring
xmlDOMWrapRemoveNode
+
entire
xmlCleanupInputCallbacks
+xmlCleanupOutputCallbacks
+
entities:
xmlParseEntityRef
+xmlParserHandleReference
+
entproc
xmlParserHandlePEReference
+xmlParserHandleReference
+
entries
xmlACatalogAdd
+xmlACatalogRemove
+xmlCatalogAdd
+xmlCatalogConvert
+xmlCatalogRemove
+xmlConvertSGMLCatalog
+xmlDOMWrapAdoptNode
+xmlHashAddEntry3
+xmlLoadACatalog
+xmlLoadCatalog
+xmlLoadSGMLSuperCatalog
+xmlMemShow
+
entry
xmlACatalogAdd
+xmlACatalogRemove
+xmlCatalogAdd
+xmlCatalogAddLocal
+xmlCatalogRemove
+xmlHashUpdateEntry
+xmlHashUpdateEntry2
+xmlHashUpdateEntry3
+xmlXPathNodeSetRemove
+xmlXPtrLocationSetRemove
+
enumerated
attributeDecl
+attributeDeclSAXFunc
+xmlSAX2AttributeDecl
+
enumeration
_xmlAttribute
+xmlAddAttributeDecl
+xmlCopyEnumeration
+xmlCreateEnumeration
+xmlFreeEnumeration
+xmlParseAttributeType
+xmlParseEnumeratedType
+xmlParseEnumerationType
+
environment
xmlNanoFTPProxy
+xmlReconciliateNs
+xmlShell
+xmlXPathInit
+
epsilon
xmlAutomataNewAllTrans
+xmlAutomataNewCountedTrans
+xmlAutomataNewCounterTrans
+xmlAutomataNewEpsilon
+
equal
xmlAddChild
+xmlAddNextSibling
+xmlAddPrevSibling
+xmlStrEqual
+xmlStrQEqual
+xmlTextReaderConstName
+xmlTextReaderName
+xmlXPathCompareValues
+xmlXPathEqualValues
+xmlXPathEvalPredicate
+xmlXPathEvaluatePredicateResult
+xmlXPathIdFunction
+xmlXPathNotEqualValues
+xmlXPathPositionFunction
xmlXPathSubstringFunction
-xmlXPathTrailing
-xmlXPathTrailingSorted
-
following-sibling
xmlXPathNextFollowingSibling
-
follows
xmlXPathStringFunction
-xmlXPathSubstringAfterFunction
-
follows:
xmlParseAttValue
-xmlXPathBooleanFunction
-xmlXPathStringFunction
-
fonctionnalities
xmlInputMatchCallback
-xmlOutputMatchCallback
-
for:
xmlSchemaGetCanonValue
-
force
xmlKeepBlanksDefault
-xmlSetGenericErrorFunc
-
forced
xmlValidGetValidElements
-
form
docbParseDoc
-docbParseFile
-docbSAXParseDoc
-docbSAXParseFile
-htmlCreateFileParserCtxt
-htmlParseDoc
-htmlParseFile
-htmlSAXParseDoc
-htmlSAXParseFile
+
equality
_xmlParserInput
+xmlListDataCompare
+
equivalent
xmlMallocAtomicLoc
+xmlMallocLoc
+xmlMemFree
+xmlMemMalloc
+xmlMemRealloc
+xmlMemStrdupLoc
+xmlMemoryStrdup
xmlNodeListGetRawString
xmlNodeListGetString
-xmlPatterncompile
-xmlXPathStringFunction
-
formatted
xmlTextWriterWriteFormatAttribute
-xmlTextWriterWriteFormatAttributeNS
-xmlTextWriterWriteFormatCDATA
-xmlTextWriterWriteFormatDTD
-xmlTextWriterWriteFormatDTDAttlist
-xmlTextWriterWriteFormatDTDElement
-xmlTextWriterWriteFormatDTDInternalEntity
-xmlTextWriterWriteFormatElement
-xmlTextWriterWriteFormatElementNS
-xmlTextWriterWriteFormatPI
-xmlTextWriterWriteFormatRaw
-xmlTextWriterWriteFormatString
-xmlTextWriterWriteVFormatAttribute
-xmlTextWriterWriteVFormatAttributeNS
-xmlTextWriterWriteVFormatCDATA
-xmlTextWriterWriteVFormatDTD
-xmlTextWriterWriteVFormatDTDAttlist
-xmlTextWriterWriteVFormatDTDElement
-xmlTextWriterWriteVFormatDTDInternalEntity
-xmlTextWriterWriteVFormatElement
-xmlTextWriterWriteVFormatElementNS
-xmlTextWriterWriteVFormatPI
-xmlTextWriterWriteVFormatRaw
-xmlTextWriterWriteVFormatString
-
formatting
htmlDocContentDumpFormatOutput
-htmlNodeDump
-htmlNodeDumpFile
-htmlNodeDumpFileFormat
-htmlNodeDumpFormatOutput
-htmlNodeDumpOutput
-htmlSaveFileEnc
-htmlSaveFileFormat
-xmlDocDumpFormatMemory
-xmlDocDumpFormatMemoryEnc
-xmlDocFormatDump
-xmlNodeDump
-xmlNodeDumpOutput
-xmlSaveFormatFile
-xmlSaveFormatFileEnc
-xmlSaveFormatFileTo
-xmlStrPrintf
-xmlStrVPrintf
-
formed
_xmlParserCtxt
-htmlSAXParseDoc
-htmlSAXParseFile
-xmlParseCtxtExternalEntity
-xmlParseExternalEntity
-
fptr
XML_CAST_FPTR
-
fragment
_xmlURI
-xmlNewDocFragment
-xmlParseURI
-xmlParseURIReference
-xmlPushInput
-
freeing
xmlCanonicPath
-xmlParserInputDeallocate
-
frees
xmlBufferFree
-
front
xmlValidateNCName
-xmlValidateNMToken
-xmlValidateName
-xmlValidateQName
-
front-end
xmlCharEncCloseFunc
-xmlCharEncInFunc
+xmlReallocLoc
+xmlUTF8Strpos
+xmlXPathCastToString
+xmlXPathConvertBoolean
+xmlXPathConvertNumber
+xmlXPathConvertString
+
errors
INPUT_CHUNK
+_xmlSAXHandler
+_xmlSAXHandlerV1
+_xmlValidCtxt
+_xmlXPathContext
+fatalErrorSAXFunc
+initGenericErrorDefaultFunc
xmlCharEncOutFunc
-
ftp:
xmlNanoFTPOpen
-xmlNanoFTPScanProxy
-
ftp_proxy
xmlNanoFTPProxy
-
ftp_proxy_password
xmlNanoFTPProxy
-
ftp_proxy_user
xmlNanoFTPProxy
-
full
_xmlEntity
-_xmlXPathParserContext
-htmlAttrAllowed
-xlinkIsLink
-xmlHashScannerFull
-xmlRelaxNGValidateFullElement
-xmlRelaxNGValidatePushElement
-xmlSaveDoc
-xmlShellPwd
-xmlSplitQName2
-xmlSplitQName3
-xmlTextReaderExpand
-xmlURIUnescapeString
-xmlUTF8Strlen
-
fully
_htmlElemDesc
-xmlSaveDoc
-xmlSaveTree
-
func
_xmlXPathContext
-
funcs
_xmlXPathContext
-
function:
xmlXPathDifference
-xmlXPathDistinct
-xmlXPathDistinctSorted
-xmlXPathHasSameNodes
-xmlXPathIntersection
-xmlXPathLeading
-xmlXPathLeadingSorted
-xmlXPathNodeLeading
-xmlXPathNodeLeadingSorted
-xmlXPathNodeTrailing
-xmlXPathNodeTrailingSorted
-xmlXPathTrailing
-xmlXPathTrailingSorted
-
functionality
xmlNewGlobalNs
-xmlXPathNodeSetGetLength
-xmlXPathNodeSetItem
-
functions
htmlCtxtReadIO
-htmlReadIO
-xmlC14NDocDumpMemory
-xmlCtxtReadIO
-xmlGcMemGet
-xmlGcMemSetup
-xmlMemGet
-xmlMemSetup
-xmlReadIO
-xmlReaderForIO
-xmlReaderNewIO
-xmlRelaxNGGetValidErrors
+xmlCheckHTTPInput
+xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
+xmlDOMWrapRemoveNode
+xmlDebugCheckDocument
+xmlHashAddEntry
+xmlHashAddEntry2
+xmlHashAddEntry3
+xmlRelaxNGGetParserErrors
xmlRelaxNGSetParserErrors
-xmlRelaxNGSetValidErrors
-xmlSchemaGetValidErrors
+xmlSchemaGetCanonValue
+xmlSchemaGetCanonValueWhtsp
+xmlSchemaGetParserErrors
+xmlSchemaIsValid
+xmlSchemaSAXPlug
xmlSchemaSetParserErrors
-xmlSchemaSetValidErrors
+xmlSchemaValueAppend
+xmlSchemaValueGetAsString
+xmlSchemaValueGetNext
xmlShellCmd
-xmlSwitchEncoding
-xmlSwitchInputEncoding
-xmlSwitchToEncoding
-xmlXPathRegisterAllFunctions
-xmlXPathRegisteredFuncsCleanup
-
further
xmlParseAttValue
-xmlStopParser
-xmlValidCtxtNormalizeAttributeValue
-xmlValidNormalizeAttributeValue
-xmlXIncludeSetFlags
-
future
xmlSchemaValidateFile
+
errror
xmlDOMWrapNewCtxt
+
escape
docbEncodeEntities
+htmlEncodeEntities
+xmlURIEscape
+xmlURIEscapeStr
+
escaped
xmlNewChild
+xmlNewDocNode
+xmlNewDocNodeEatName
+xmlNewTextChild
+xmlParseCDSect
+xmlParseCharData
+xmlSaveUri
+xmlURIEscape
+xmlURIEscapeStr
+
escapes
xmlOutputBufferWriteEscape
+xmlURIEscapeStr
+
escaping
xmlOutputBufferWriteEscape
+xmlSaveSetAttrEscape
+xmlSaveSetEscape
+
established
xmlNanoFTPUpdateURL
+
etc
xmlDocGetRootElement
+xmlDocSetRootElement
+xmlParseInNodeContext
+
evaluate
xmlXPathEvalExpr
+
evaluated
xmlXPathEvalPredicate
+xmlXPathEvaluatePredicateResult
+xmlXPtrNewContext
+
evaluating
xmlXPathEvalPredicate
+xmlXPathEvaluatePredicateResult
+
evaluation
_xmlXPathFunct
+_xmlXPathParserContext
+valuePop
+valuePush
+xmlRegNewExecCtxt
+xmlShellPrintXPathResult
+xmlXPathCompiledEval
+xmlXPathEval
+xmlXPathEvalExpression
+xmlXPathEvalFunc
+xmlXPathEvalPredicate
+xmlXPathEvaluatePredicateResult
+xmlXPtrBuildNodeList
+xmlXPtrEval
+
evaulation
xmlRegFreeExecCtxt
+
even
_xmlParserInput
+xmlNodeGetBase
+xmlParseBalancedChunkMemoryRecover
+xmlTextWriterFullEndElement
+xmlXPathRoundFunction
+
event
xmlSchemaSAXPlug
+xmlSchemaSAXUnplug
+xmlSchemaValidateStream
+
events
htmlSAXParseDoc
+xmlSchemaValidateStream
+
everywhere
xmlSAXParseFileWithData
+xmlSAXParseMemoryWithData
+
exact
xmlGetBufferAllocationScheme
+xmlSetBufferAllocationScheme
+
example
xmlParserInputBufferCreateStatic
+xmlReconciliateNs
+xmlTextReaderConstString
+xmlXPathSubstringAfterFunction
+xmlXPathSubstringBeforeFunction
+xmlXPathSubstringFunction
+xmlXPathTranslateFunction
+
examples
xmlBuildRelativeURI
+
except
xmlGetNoNsProp
+xmlParseAttValue
+xmlParseCatalogFile
+xmlParseEntityRef
+xmlParserHandleReference
+
exception
xmlURIEscapeStr
+
excluding
IS_CHAR
+xmlXPathNextFollowing
+xmlXPathNextPreceding
+
exclusions
XML_SCHEMAS_ELEM_FINAL_ABSENT
+
exclusions:
XML_SCHEMAS_ELEM_FINAL_EXTENSION
+XML_SCHEMAS_ELEM_FINAL_RESTRICTION
+
exclusive
xmlC14NDocDumpMemory
+xmlC14NDocSave
+xmlC14NDocSaveTo
+xmlC14NExecute
+
executed
xmlAutomataCompile
+
execution
xmlRegExecErrInfo
+xmlRegExecNextValues
+xmlRegExecPushString
+xmlRegExecPushString2
+
exist
xmlXPtrLocationSetAdd
+
existent
xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
+
exists
xmlDictExists
+xmlShellPwd
+xmlTextReaderConstXmlLang
+xmlTextReaderXmlLang
+xmlValidateNotationDecl
+
expand
xmlLoadSGMLSuperCatalog
+
expanded
xmlRelaxNGValidateFullElement
+xmlSchemaNewStringValue
+xmlXPathNamespaceURIFunction
+
expected
x
+xmlBufferCreateStatic
+xmlParserInputBufferCreateStatic
+xmlRelaxNGNewMemParserCtxt
+xmlRelaxNGNewParserCtxt
+xmlSchemaNewMemParserCtxt
+xmlSchemaNewParserCtxt
+xmlSchemaValidateListSimpleTypeFacet
+xmlStreamPush
+xmlStreamPushAttr
+
experimental
xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
+xmlDOMWrapRemoveNode
+
explicitly
xmlSAXDefaultVersion
+
explored
xmlXPathAxisFunc
+
exposing
xmlTextReaderRead
+
expressions
LIBXML_REGEXP_ENABLED
+
exslSetsDistinctSorted
xmlXPathDistinct
+
exslSetsLeadingSorted
xmlXPathLeading
+
exslSetsNodeLeadingSorted
xmlXPathNodeLeading
+
ext
_xmlParserCtxt
+
extParsedEnt
xmlParseCtxtExternalEntity
+xmlParseEntity
+xmlParseExtParsedEnt
+xmlParseExternalEntity
+xmlSAXParseEntity
+
extSubset
xmlParseExternalSubset
+
extSubsetDecl
xmlParseExternalSubset
+
extend
xmlStrncat
+xmlValidGetPotentialChildren
+
extended
xlinkExtendedLinkFunk
+xlinkExtendedLinkSetFunk
+xmlXPathNodeSetMerge
+xmlXPtrLocationSetMerge
+
extension
XML_SCHEMAS_BLOCK_DEFAULT_EXTENSION
+XML_SCHEMAS_ELEM_FINAL_EXTENSION
+XML_SCHEMAS_FINAL_DEFAULT_EXTENSION
+XML_SCHEMAS_TYPE_BLOCK_EXTENSION
+XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION
+XML_SCHEMAS_TYPE_FINAL_EXTENSION
+
extensions
_xmlSAXHandler
+
extract
XML_GET_CONTENT
+XML_GET_LINE
+xmlBufferContent

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk15.html b/doc/APIchunk15.html index 3ee1cf3f..02fc03ad 100644 --- a/doc/APIchunk15.html +++ b/doc/APIchunk15.html @@ -7,373 +7,441 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index g-h for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index g-h for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index f-f for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index f-f for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter g:

gDay
xmlSchemaGetCanonValue
-
gMonth
xmlSchemaGetCanonValue
-
gMonthDay
xmlSchemaGetCanonValue
-
gYear
xmlSchemaGetCanonValue
-
gYearMonth
xmlSchemaGetCanonValue
-
garanteed
xmlUTF8Strsize
-
garbage
xmlGcMemGet
-xmlGcMemSetup
-
gcc
XML_CAST_FPTR
-
gcc4
XML_CAST_FPTR
-
genChRanges
xmlIsBaseCharQ
-xmlIsBaseChar_ch
-xmlIsBlankQ
-xmlIsBlank_ch
-xmlIsCharQ
-xmlIsChar_ch
-xmlIsCombiningQ
-xmlIsDigitQ
-xmlIsDigit_ch
-xmlIsExtenderQ
-xmlIsExtender_ch
-xmlIsIdeographicQ
-xmlIsPubidCharQ
-xmlIsPubidChar_ch
-
general
XML_SUBSTITUTE_BOTH
-XML_SUBSTITUTE_REF
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter f:

fTP
xmlNanoFTPConnectTo
+
facet
XML_SCHEMAS_FACET_COLLAPSE
+XML_SCHEMAS_FACET_PRESERVE
+XML_SCHEMAS_FACET_REPLACE
+XML_SCHEMAS_FACET_UNKNOWN
+_xmlSchemaFacetLink
+xmlSchemaCheckFacet
+xmlSchemaFreeFacet
+xmlSchemaGetFacetValueAsULong
+xmlSchemaIsBuiltInTypeFacet
+xmlSchemaValidateFacet
+xmlSchemaValidateFacetWhtsp
+xmlSchemaValidateLengthFacet
+xmlSchemaValidateLengthFacetWhtsp
+xmlSchemaValidateListSimpleTypeFacet
+
facets
XML_SCHEMAS_TYPE_FACETSNEEDVALUE
+XML_SCHEMAS_TYPE_HAS_FACETS
+XML_SCHEMAS_TYPE_NORMVALUENEEDED
+xmlSchemaCheckFacet
+
fail
xmlC14NDocDumpMemory
+xmlC14NDocSave
+xmlC14NDocSaveTo
+xmlC14NExecute
+xmlShellPrintXPathError
+
failed
xmlCharEncodingInputFunc
+xmlCharEncodingOutputFunc
+xmlNanoFTPConnectTo
+xmlNanoFTPCwd
+xmlNanoFTPDele
+xmlRemoveID
+xmlRemoveRef
+xmlShellLoad
+xmlXIncludeProcess
+xmlXIncludeProcessFlags
+xmlXIncludeProcessNode
+xmlXIncludeProcessTree
+xmlXIncludeProcessTreeFlags
+xmlXPathCompareValues
+
fails
UTF8ToHtml
+UTF8Toisolat1
+_htmlElemDesc
+docbEncodeEntities
+htmlEncodeEntities
+xmlCanonicPath
xmlCharEncFirstLine
xmlCharEncInFunc
xmlCharEncOutFunc
-xmlParseCtxtExternalEntity
-xmlParseEntityRef
-xmlParseExtParsedEnt
-xmlParseExternalEntity
-
generally
xmlSAXDefaultVersion
-
generate
xmlDocDumpFormatMemoryEnc
-xmlDocDumpMemoryEnc
-xmlHashAddEntry
-xmlHashAddEntry2
-xmlHashAddEntry3
-xmlLoadExternalEntity
-xmlParseExternalID
-
generated
xmlDocDumpFormatMemoryEnc
-xmlDocDumpMemoryEnc
-xmlIsBaseCharQ
-xmlIsBaseChar_ch
-xmlIsBlankQ
-xmlIsBlank_ch
-xmlIsCharQ
-xmlIsChar_ch
-xmlIsCombiningQ
-xmlIsDigitQ
-xmlIsDigit_ch
-xmlIsExtenderQ
-xmlIsExtender_ch
-xmlIsIdeographicQ
-xmlIsPubidCharQ
-xmlIsPubidChar_ch
-xmlKeepBlanksDefault
-xmlSearchNs
-xmlShellPrintXPathResult
-xmlTextReaderIsDefault
-
generates
xmlRegexpExec
-
generating
xmlDocDumpFormatMemoryEnc
-xmlDocDumpMemoryEnc
-xmlKeepBlanksDefault
-xmlRegExecErrInfo
-
generic
initGenericErrorDefaultFunc
-xmlLoadExternalEntity
-xmlShellCmd
-xmlShellReadlineFunc
-
get
_xmlSAXHandler
-_xmlSAXHandlerV1
-fatalErrorSAXFunc
-xmlBufferLength
-xmlCatalogGetDefaults
-xmlGetCompressMode
-xmlGetDocCompressMode
-xmlGetNoNsProp
-xmlGetNsProp
-xmlGetProp
-xmlNamespaceParseQName
-xmlNanoFTPInit
-xmlNewPI
-xmlSplitQName
-xmlSplitQName2
-xmlTextReaderCurrentDoc
-xmlTextReaderCurrentNode
-xmlTextReaderGetParserProp
-xmlTextReaderGetRemainder
-xmlValidateNotationDecl
-
gif
xmlBuildRelativeURI
-
give
_xmlParserInput
-_xmlSchema
-xmlValidateDtd
-
gives
xmlParserError
-xmlParserValidityError
-xmlParserValidityWarning
-xmlParserWarning
-
giving
xmlNewDoc
-xmlParseVersionNum
-
global
XML_SCHEMAS_ELEM_GLOBAL
-XML_SCHEMAS_TYPE_GLOBAL
-_xmlNs
-globalNamespace
-xmlCatalogDump
-xmlCleanupParser
-xmlCtxtResetLastError
-xmlEncodeEntitiesReentrant
-xmlEncodeSpecialChars
-xmlGetGlobalState
-xmlGetLastError
-xmlInitializeGlobalState
-xmlResetLastError
-
globally
xmlSAXDefaultVersion
-
good
xmlTextReaderGetRemainder
-
grafted
xmlCopyProp
-xmlCopyPropList
-
grammar:
xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlParseInNodeContext
-
greater
xmlXPathCompareValues
-xmlXPathFloorFunction
-xmlXPathSubstringFunction
-
greater-than
xmlNewTextChild
-
group
XML_SCHEMAS_ATTRGROUP_MARKED
-XML_SCHEMAS_ELEM_FINAL_ABSENT
-XML_SCHEMAS_ELEM_FINAL_EXTENSION
-XML_SCHEMAS_ELEM_FINAL_RESTRICTION
-XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD
-_xmlSchemaAttribute
-_xmlSchemaAttributeGroup
-_xmlSchemaElement
-ftpListCallback
-
groups
xmlParseElementChildrenContentDecl
-
grow
xmlValidGetValidElements
-
grows
xmlBufferWriteCHAR
-xmlBufferWriteChar
-xmlBufferWriteQuotedString
-

Letter h:

had
xmlNewGlobalNs
-
hand
xmlLoadACatalog
-
handled
xmlLoadACatalog
-xmlParseAttValue
-xmlParseAttribute
-xmlParseDefaultDecl
-xmlParseElementContentDecl
-xmlParsePEReference
-xmlParserHandlePEReference
-
handlers
xlinkSetDefaultHandler
-xmlCleanupCharEncodingHandlers
-xmlRegisterDefaultInputCallbacks
-xmlRegisterDefaultOutputCallbacks
-xmlTextReaderSetErrorHandler
-xmlTextReaderSetStructuredErrorHandler
-
handles
xmlSaveFileTo
-xmlSaveFormatFileTo
-xmlStructuredErrorFunc
-xmlXPathStringEvalNumber
-
handling
XML_SCHEMAS_FACET_UNKNOWN
-attribute
-attributeSAXFunc
-htmlHandleOmittedElem
-xmlHandleEntity
-xmlNamespaceParseNCName
-xmlNamespaceParseNSDef
-xmlNamespaceParseQName
-xmlNodeListGetRawString
-xmlOutputBufferCreateFilenameDefault
-xmlParserHandlePEReference
-xmlParserHandleReference
-xmlParserInputBufferCreateFilenameDefault
-xmlRegNewExecCtxt
-xmlRegisterInputCallbacks
-xmlRegisterOutputCallbacks
-xmlSetGenericErrorFunc
-xmlSetStructuredErrorFunc
-xmlXPathPopBoolean
-xmlXPathPopExternal
-xmlXPathPopNodeSet
-xmlXPathPopNumber
-xmlXPathPopString
-
has-same-nodes
xmlXPathHasSameNodes
-
have
INPUT_CHUNK
-XML_SCHEMAS_ATTR_INTERNAL_RESOLVED
-XML_SCHEMAS_ELEM_INTERNAL_RESOLVED
-_htmlElemDesc
-htmlParseEntityRef
-xmlAutomataNewAllTrans
-xmlC14NDocSaveTo
-xmlC14NExecute
-xmlIsID
-xmlIsRef
-xmlParseAttribute
-xmlParseAttributeType
-xmlParseElementChildrenContentDecl
-xmlParseElementMixedContentDecl
-xmlParseExternalID
-xmlParseSDDecl
-xmlParserHandlePEReference
-xmlParserHandleReference
-xmlSaveClose
-xmlSaveFlush
-xmlStrEqual
-xmlTextReaderHasValue
-xmlTextReaderReadAttributeValue
-xmlTextWriterWriteDTDExternalEntity
-xmlValidateDocumentFinal
-xmlValidateDtdFinal
-xmlXPathIdFunction
-xmlXPathSubstringFunction
-
haystack
xmlStrcasestr
-xmlStrstr
-xmlStrsub
-
head
XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD
-
header
xmlNanoHTTPAuthHeader
-xmlNanoHTTPContentLength
-xmlNanoHTTPRedir
-xmlParseTextDecl
-xmlParseXMLDecl
-
headers
xmlNanoHTTPEncoding
+xmlCheckFilename
+xmlFileOpen
+
failure
CHECK_TYPE0
+htmlDocDump
+htmlNodeDumpFileFormat
+htmlSaveFile
+htmlSaveFileEnc
+htmlSaveFileFormat
+xmlBufferShrink
+xmlDocDump
+xmlDocFormatDump
+xmlFileOpen
+xmlFileRead
+xmlListAppend
+xmlListInsert
+xmlNanoHTTPFetch
xmlNanoHTTPMethod
xmlNanoHTTPMethodRedir
-xmlNanoHTTPMimeType
-
heading
xmlCharEncodingOutputFunc
-
helper
XML_SCHEMAS_ELEM_CIRCULAR
-_xmlSchema
-
here
_xmlXPathContext
-htmlNodeStatus
-xmlParseAttValue
-xmlParseElementContentDecl
-xmlParseNamespace
-xmlXPathNextAncestorOrSelf
-
heuristic
xmlKeepBlanksDefault
-xmlURIEscape
-
heuristic:
xmlIsRef
-
hex
xmlURIEscapeStr
-
hierarchy
xmlParseElementChildrenContentDecl
-xmlSchemaGetBuiltInListSimpleTypeItemType
-
highly
htmlParseElement
-xmlParseElement
-xmlRelaxNGParse
-xmlSchemaParse
-
hold
xmlDOMWrapReconcileNamespaces
-xmlNewTextWriterDoc
-xmlNewTextWriterPushParser
-xmlReconciliateNs
-
holding
_xmlAttribute
-_xmlID
-_xmlRef
-xmlAddID
-xmlAddRef
-xmlNewNsProp
-xmlNewNsPropEatName
-xmlNewProp
-
holds
xmlBufferWriteQuotedString
-
host
xmlNanoFTPProxy
-xmlNanoFTPScanProxy
+xmlNanoHTTPOpen
+xmlNanoHTTPOpenRedir
+xmlNanoHTTPSave
+xmlNewAutomata
+xmlPatternGetStreamCtxt
+xmlPatternMatch
+xmlRelaxNGGetParserErrors
+xmlSaveFile
+xmlSaveFileEnc
+xmlSaveFileTo
+xmlSaveFormatFile
+xmlSaveFormatFileTo
+xmlSchemaGetParserErrors
+xmlSchemaSAXUnplug
+
fallback
XINCLUDE_FALLBACK
+docbSAXParseDoc
+docbSAXParseFile
+htmlSAXParseDoc
+htmlSAXParseFile
+xmlFileOpen
+xmlSAXParseDoc
+xmlSAXParseEntity
+xmlSAXParseFile
+xmlSAXParseFileWithData
+xmlSAXParseMemory
+xmlSAXParseMemoryWithData
+
far
_xmlParserCtxt
+fatalErrorSAXFunc
+xmlSchemaIsValid
+
fashion
xmlNewRMutex
+
fast
htmlInitAutoClose
+
faster
htmlNodeStatus
+xmlStrEqual
+
fatal
fatalErrorSAXFunc
+
fatalError
fatalErrorSAXFunc
+
favor
xmlNewElementContent
+
feature
xmlGetFeature
+xmlGetFeaturesList
+xmlSetFeature
+
features
xmlGetFeaturesList
+
fed
xmlCreatePushParserCtxt
+xmlNewTextReader
+xmlNewTextReaderFilename
+
fetch
xmlNanoFTPGetSocket
+xmlNanoFTPOpen
+xmlNanoHTTPFetch
+
fetching
docbCreatePushParserCtxt
+htmlCreatePushParserCtxt
+xmlCreatePushParserCtxt
+xmlUTF8Strpos
+
field
XML_COMPLETE_ATTRS
+XML_CTXT_FINISH_DTD_0
+XML_CTXT_FINISH_DTD_1
+XML_DETECT_IDS
+XML_SKIP_IDS
+_xmlError
+xmlParseMisc
+xmlXPathOrderDocElems
+
fields
XML_SAX2_MAGIC
+_htmlElemDesc
+_xmlParserCtxt
+_xmlSAXHandler
+xmlParseURIReference
+
files
xmlNanoFTPList
+
filesystem
htmlCtxtReadFile
+htmlReadFile
+xmlCanonicPath
+xmlCtxtReadFile
+xmlReadFile
+xmlReaderForFile
+xmlReaderNewFile
+
filled
xmlGetFeaturesList
+
fills
xmlParseURIReference
+
filters
xmlParseEncodingDecl
+
final
XML_SCHEMAS_TYPE_FINAL_DEFAULT
+XML_SCHEMAS_TYPE_FINAL_EXTENSION
+XML_SCHEMAS_TYPE_FINAL_LIST
+XML_SCHEMAS_TYPE_FINAL_RESTRICTION
+XML_SCHEMAS_TYPE_FINAL_UNION
+xmlAutomataSetFinalState
+xmlBuildURI
+xmlRegExecPushString
+xmlRegExecPushString2
+xmlValidateDocumentFinal
+xmlValidateDtdFinal
+
finalDefault
XML_SCHEMAS_FINAL_DEFAULT_EXTENSION
+XML_SCHEMAS_FINAL_DEFAULT_LIST
+XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION
+XML_SCHEMAS_FINAL_DEFAULT_UNION
+
find
xmlGetThreadId
+xmlIsXHTML
+
finding
xmlNanoFTPScanProxy
xmlNanoFTPUpdateURL
xmlNanoHTTPScanProxy
-
hosting
xmlXPathFuncLookupFunc
-xmlXPathNodeSetAddNs
-xmlXPathVariableLookupFunc
-
hostname
xmlNanoFTPInit
-xmlNanoFTPUpdateURL
-
hour
ftpListCallback
-
how
_xmlError
-
href
XINCLUDE_HREF
-
href==NULL
xmlNewNs
-
hrefs
xlinkExtendedLinkFunk
-xlinkExtendedLinkSetFunk
-
html
xmlBuildRelativeURI
-xmlTextReaderNodeType
-
htmlAttrAllowed
htmlNodeStatus
-
htmlElemDescPtr
htmlTagLookup
-
htmlElementAllowedHere
htmlNodeStatus
-
htmlElementStatusHere
htmlNodeStatus
-
htmlEntityDescPtr
htmlEntityLookup
-htmlEntityValueLookup
-htmlParseEntityRef
-
htmlNodePtr
htmlNodeStatus
-
htmlParserOption
htmlCtxtReadDoc
-htmlCtxtReadFd
-htmlCtxtReadFile
-htmlCtxtReadIO
-htmlCtxtReadMemory
-htmlCtxtUseOptions
-htmlReadDoc
-htmlReadFd
-htmlReadFile
-htmlReadIO
-htmlReadMemory
-
htmlStartClose
htmlAutoCloseTag
-htmlIsAutoClosed
-
htmlStartCloseIndex
htmlInitAutoClose
-
http:
XINCLUDE_NS
-XINCLUDE_OLD_NS
-getSystemId
-xmlBuildRelativeURI
+
finds
xmlSearchNs
+xmlSearchNsByHref
+
finishDtd
XML_CTXT_FINISH_DTD_0
+XML_CTXT_FINISH_DTD_1
+
finished
_xmlValidCtxt
+xmlCleanupParser
+xmlSkipBlankChars
+xmlTextReaderCurrentDoc
+xmlTextReaderPreserve
+xmlTextReaderPreservePattern
+
finishing
xmlByteConsumed
+
firs
xmlCharEncOutFunc
+
fist
xmlEntityReferenceFunc
+
fit
xmlCharEncFirstLine
+xmlCharEncInFunc
+xmlCharEncOutFunc
+
fixed
XML_SCHEMAS_ATTR_FIXED
+XML_SCHEMAS_ELEM_FIXED
+xmlParseDefaultDecl
+xmlSchemaGetCanonValue
+
flag
XML_SCHEMAS_ELEM_CIRCULAR
+htmlSetMetaEncoding
+initxmlDefaultSAXHandler
xmlC14NDocDumpMemory
xmlC14NDocSave
xmlC14NDocSaveTo
xmlC14NExecute
-xmlGetCharEncodingName
-xmlNanoHTTPScanProxy
-xmlParserHandlePEReference
-xmlParserHandleReference
-xmlSAX2GetSystemId
-xmlSchemaGetPredefinedType
-xmlTextReaderNodeType
-xmlXPathIsInf
-xmlXPathIsNaN
-
human-readable
_xmlError
+xmlSAX2InitDefaultSAXHandler
+xmlTextReaderIsValid
+
flagged
_htmlElemDesc
+htmlGetMetaEncoding
+
flags
xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
+xmlPatterncompile
+xmlReaderForDoc
+xmlReaderForFd
+xmlReaderForFile
+xmlReaderForIO
+xmlReaderForMemory
+xmlReaderNewDoc
+xmlReaderNewFd
+xmlReaderNewFile
+xmlReaderNewIO
+xmlReaderNewMemory
+xmlRelaxParserSetFlag
+xmlXIncludeSetFlags
+
flat
xmlStringGetNodeList
+xmlStringLenGetNodeList
+
floor
xmlXPathFloorFunction
+
flow
xmlScanName
+xmlSchemaSAXPlug
+xmlSchemaSAXUnplug
+xmlSchemaValidateStream
+
flushes
xmlOutputBufferClose
+xmlOutputBufferFlush
+
follow
xmlXPathNodeTrailing
+xmlXPathNodeTrailingSorted
+xmlXPathSubstringFunction
+xmlXPathTrailing
+xmlXPathTrailingSorted
+
following-sibling
xmlXPathNextFollowingSibling
+
follows
xmlXPathStringFunction
+xmlXPathSubstringAfterFunction
+
follows:
xmlParseAttValue
+xmlXPathBooleanFunction
+xmlXPathStringFunction
+
fonctionnalities
xmlInputMatchCallback
+xmlOutputMatchCallback
+
for:
xmlSchemaGetCanonValue
+
force
xmlKeepBlanksDefault
+xmlSetGenericErrorFunc
+
forced
xmlValidGetValidElements
+
form
docbParseDoc
+docbParseFile
+docbSAXParseDoc
+docbSAXParseFile
+htmlCreateFileParserCtxt
+htmlParseDoc
+htmlParseFile
+htmlSAXParseDoc
+htmlSAXParseFile
+xmlNodeListGetRawString
+xmlNodeListGetString
+xmlPatterncompile
+xmlXPathStringFunction
+
formatted
xmlTextWriterWriteFormatAttribute
+xmlTextWriterWriteFormatAttributeNS
+xmlTextWriterWriteFormatCDATA
+xmlTextWriterWriteFormatDTD
+xmlTextWriterWriteFormatDTDAttlist
+xmlTextWriterWriteFormatDTDElement
+xmlTextWriterWriteFormatDTDInternalEntity
+xmlTextWriterWriteFormatElement
+xmlTextWriterWriteFormatElementNS
+xmlTextWriterWriteFormatPI
+xmlTextWriterWriteFormatRaw
+xmlTextWriterWriteFormatString
+xmlTextWriterWriteVFormatAttribute
+xmlTextWriterWriteVFormatAttributeNS
+xmlTextWriterWriteVFormatCDATA
+xmlTextWriterWriteVFormatDTD
+xmlTextWriterWriteVFormatDTDAttlist
+xmlTextWriterWriteVFormatDTDElement
+xmlTextWriterWriteVFormatDTDInternalEntity
+xmlTextWriterWriteVFormatElement
+xmlTextWriterWriteVFormatElementNS
+xmlTextWriterWriteVFormatPI
+xmlTextWriterWriteVFormatRaw
+xmlTextWriterWriteVFormatString
+
formatting
htmlDocContentDumpFormatOutput
+htmlNodeDump
+htmlNodeDumpFile
+htmlNodeDumpFileFormat
+htmlNodeDumpFormatOutput
+htmlNodeDumpOutput
+htmlSaveFileEnc
+htmlSaveFileFormat
+xmlDocDumpFormatMemory
+xmlDocDumpFormatMemoryEnc
+xmlDocFormatDump
+xmlNodeDump
+xmlNodeDumpOutput
+xmlSaveFormatFile
+xmlSaveFormatFileEnc
+xmlSaveFormatFileTo
+xmlStrPrintf
+xmlStrVPrintf
+
formed
_xmlParserCtxt
+htmlSAXParseDoc
+htmlSAXParseFile
+xmlParseCtxtExternalEntity
+xmlParseExternalEntity
+
forward
xmlSchemaValidateStream
+
fptr
XML_CAST_FPTR
+
fragment
_xmlURI
+xmlNewDocFragment
+xmlParseURI
+xmlParseURIReference
+xmlPushInput
+
freeing
xmlCanonicPath
+xmlParserInputDeallocate
+
frees
xmlBufferFree
+
front
xmlValidateNCName
+xmlValidateNMToken
+xmlValidateName
+xmlValidateQName
+
front-end
xmlCharEncCloseFunc
+xmlCharEncInFunc
+xmlCharEncOutFunc
+
ftp:
xmlNanoFTPOpen
+xmlNanoFTPScanProxy
+
ftp_proxy
xmlNanoFTPProxy
+
ftp_proxy_password
xmlNanoFTPProxy
+
ftp_proxy_user
xmlNanoFTPProxy
+
full
_xmlEntity
+_xmlXPathParserContext
+htmlAttrAllowed
+xlinkIsLink
+xmlHashScannerFull
+xmlRelaxNGValidateFullElement
+xmlRelaxNGValidatePushElement
+xmlSaveDoc
+xmlShellPwd
+xmlSplitQName2
+xmlSplitQName3
+xmlTextReaderExpand
+xmlURIUnescapeString
+xmlUTF8Strlen
+
fully
_htmlElemDesc
+xmlSaveDoc
+xmlSaveTree
+
func
_xmlXPathContext
+
funcs
_xmlXPathContext
+
function:
xmlXPathDifference
+xmlXPathDistinct
+xmlXPathDistinctSorted
+xmlXPathHasSameNodes
+xmlXPathIntersection
+xmlXPathLeading
+xmlXPathLeadingSorted
+xmlXPathNodeLeading
+xmlXPathNodeLeadingSorted
+xmlXPathNodeTrailing
+xmlXPathNodeTrailingSorted
+xmlXPathTrailing
+xmlXPathTrailingSorted
+
functionality
xmlNewGlobalNs
+xmlXPathNodeSetGetLength
+xmlXPathNodeSetItem
+
functions
htmlCtxtReadIO
+htmlReadIO
+xmlC14NDocDumpMemory
+xmlCtxtReadIO
+xmlGcMemGet
+xmlGcMemSetup
+xmlMemGet
+xmlMemSetup
+xmlReadIO
+xmlReaderForIO
+xmlReaderNewIO
+xmlRelaxNGGetValidErrors
+xmlRelaxNGSetParserErrors
+xmlRelaxNGSetValidErrors
+xmlSchemaGetValidErrors
+xmlSchemaSetParserErrors
+xmlSchemaSetValidErrors
+xmlShellCmd
+xmlSwitchEncoding
+xmlSwitchInputEncoding
+xmlSwitchToEncoding
+xmlXPathRegisterAllFunctions
+xmlXPathRegisteredFuncsCleanup
+
further
xmlParseAttValue
+xmlStopParser
+xmlValidCtxtNormalizeAttributeValue
+xmlValidNormalizeAttributeValue
+xmlXIncludeSetFlags
+
future
xmlSchemaValidateFile

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk16.html b/doc/APIchunk16.html index aa2caa38..fcc3552a 100644 --- a/doc/APIchunk16.html +++ b/doc/APIchunk16.html @@ -7,556 +7,375 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index i-i for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index i-i for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index g-h for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index g-h for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter i:

iconv
LIBXML_ICONV_ENABLED
-LIBXML_ISO8859X_ENABLED
-
identify
xmlParseAttributeType
-
ignorable
ignorableWhitespace
-ignorableWhitespaceSAXFunc
-xmlIsBlankNode
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter g:

gDay
xmlSchemaGetCanonValue
+
gMonth
xmlSchemaGetCanonValue
+
gMonthDay
xmlSchemaGetCanonValue
+
gYear
xmlSchemaGetCanonValue
+
gYearMonth
xmlSchemaGetCanonValue
+
garanteed
xmlUTF8Strsize
+
garbage
xmlGcMemGet
+xmlGcMemSetup
+
gcc
XML_CAST_FPTR
+
gcc4
XML_CAST_FPTR
+
genChRanges
xmlIsBaseCharQ
+xmlIsBaseChar_ch
+xmlIsBlankQ
+xmlIsBlank_ch
+xmlIsCharQ
+xmlIsChar_ch
+xmlIsCombiningQ
+xmlIsDigitQ
+xmlIsDigit_ch
+xmlIsExtenderQ
+xmlIsExtender_ch
+xmlIsIdeographicQ
+xmlIsPubidCharQ
+xmlIsPubidChar_ch
+
general
XML_SUBSTITUTE_BOTH
+XML_SUBSTITUTE_REF
+xmlCharEncFirstLine
+xmlCharEncInFunc
+xmlCharEncOutFunc
+xmlParseCtxtExternalEntity
+xmlParseEntityRef
+xmlParseExtParsedEnt
+xmlParseExternalEntity
+
generally
xmlSAXDefaultVersion
+
generate
xmlDocDumpFormatMemoryEnc
+xmlDocDumpMemoryEnc
+xmlHashAddEntry
+xmlHashAddEntry2
+xmlHashAddEntry3
+xmlLoadExternalEntity
+xmlParseExternalID
+
generated
xmlDocDumpFormatMemoryEnc
+xmlDocDumpMemoryEnc
+xmlIsBaseCharQ
+xmlIsBaseChar_ch
+xmlIsBlankQ
+xmlIsBlank_ch
+xmlIsCharQ
+xmlIsChar_ch
+xmlIsCombiningQ
+xmlIsDigitQ
+xmlIsDigit_ch
+xmlIsExtenderQ
+xmlIsExtender_ch
+xmlIsIdeographicQ
+xmlIsPubidCharQ
+xmlIsPubidChar_ch
xmlKeepBlanksDefault
-xmlSAX2IgnorableWhitespace
-
ignorableWhitespace
xmlKeepBlanksDefault
-
ignored
xmlC14NDocDumpMemory
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlC14NExecute
-
ignoring
xmlURIEscapeStr
-
image
xmlC14NDocDumpMemory
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlC14NExecute
-
imbrication
xmlNodeDump
-xmlNodeDumpOutput
-
img
xmlBuildRelativeURI
-
immediately
xmlCheckVersion
-xmlOutputBufferWrite
-xmlOutputBufferWriteEscape
-xmlOutputBufferWriteString
-xmlXPathStringFunction
-
immutable
xmlBufferCreateStatic
-xmlParserInputBufferCreateStatic
-
implementation
xmlFreeFunc
-xmlMallocFunc
-xmlReallocFunc
-xmlStrdupFunc
-xmlTextReaderGetRemainder
-xmlXPathRegisterFunc
-xmlXPathRegisterFuncNS
-
implementation-defined
xmlXPathNextNamespace
-
implemented
HTML_COMMENT_NODE
-HTML_ENTITY_REF_NODE
-HTML_PI_NODE
-HTML_PRESERVE_NODE
-HTML_TEXT_NODE
-xmlModuleOpen
-xmlSaveDoc
-xmlSaveTree
-xmlSchemaCopyValue
-xmlTextReaderNextSibling
-
implicitly
htmlAutoCloseTag
-htmlIsAutoClosed
-
implied
_htmlElemDesc
-
impossible
xmlURIEscape
-
improves
xmlGetBufferAllocationScheme
-xmlSetBufferAllocationScheme
-
in-
xmlParserInputBufferGrow
-
in-extenso
xmlMemDisplay
-xmlMemoryDump
-
in-memory
_xmlDoc
-_xmlParserCtxt
-docbParseDoc
-docbSAXParseDoc
-htmlCreateMemoryParserCtxt
-htmlCtxtReadDoc
-htmlCtxtReadMemory
-htmlParseDoc
-htmlReadDoc
-htmlReadMemory
-htmlSAXParseDoc
-xmlCreateDocParserCtxt
-xmlCreateMemoryParserCtxt
-xmlCtxtReadDoc
-xmlCtxtReadMemory
-xmlParseDoc
-xmlParseMemory
-xmlReadDoc
-xmlReadMemory
-xmlReaderForDoc
-xmlReaderForMemory
-xmlReaderNewDoc
-xmlReaderNewMemory
-xmlRecoverDoc
-xmlRecoverMemory
-xmlSAXParseDoc
-xmlSAXParseMemory
-xmlSAXParseMemoryWithData
-xmlSAXUserParseMemory
-
incase
xmlNanoFTPClose
-xmlNanoFTPCloseConnection
-xmlNanoFTPCwd
-xmlNanoFTPDele
-xmlNanoFTPGet
-xmlNanoFTPGetConnection
-xmlNanoFTPList
-xmlNanoHTTPFetch
-xmlNanoHTTPSave
-
include
XINCLUDE_NODE
-xmlC14NDocDumpMemory
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlC14NExecute
-xmlCheckVersion
-xmlListMerge
-
include:
xmlBuildRelativeURI
-
included
xmlC14NDocDumpMemory
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlDocDumpMemory
-xmlFreeDoc
-xmlNanoHTTPContentLength
-xmlParseNotationType
-
includes
_xmlSchema
-xmlCleanupInputCallbacks
-xmlCleanupOutputCallbacks
-xmlPopInputCallbacks
-xmlXIncludeProcessFlags
-xmlXIncludeProcessTreeFlags
-xmlXIncludeSetFlags
-
including
XML_SCHEMAS_INCLUDING_CONVERT_NS
-attribute
-attributeSAXFunc
-ftpListCallback
-startElement
-startElementSAXFunc
-xmlSAX2StartElement
-xmlTextReaderReadInnerXml
-xmlTextReaderReadOuterXml
-xmlXPathStringFunction
-
inclusive
xmlC14NDocDumpMemory
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlC14NExecute
-
increase
xmlParserInputGrow
-
increment
xmlAutomataNewCountedTrans
-
incremental
xmlValidateDocumentFinal
-
indent
xmlTextWriterSetIndent
-
indentation
xmlDebugDumpAttr
-xmlDebugDumpAttrList
-xmlDebugDumpNode
-xmlDebugDumpNodeList
-xmlDebugDumpOneNode
+xmlSearchNs
+xmlShellPrintXPathResult
+xmlTextReaderIsDefault
+
generates
xmlRegexpExec
+
generating
xmlDocDumpFormatMemoryEnc
+xmlDocDumpMemoryEnc
xmlKeepBlanksDefault
-xmlTextWriterSetIndent
-xmlTextWriterSetIndentString
-xmlXPathDebugDumpCompExpr
-xmlXPathDebugDumpObject
-
indentation?
xmlTextWriterSetIndent
-
indented
xmlSaveFormatFile
-
indenting
xmlDocDumpFormatMemory
-xmlDocDumpFormatMemoryEnc
-xmlDocFormatDump
-xmlNodeDump
-xmlNodeDumpOutput
-xmlSaveFormatFile
-xmlSaveFormatFileEnc
-
independently
xmlGetProp
-xmlParseAttribute
-
index
index
-inputPush
-namePush
-nodePush
-xmlByteConsumed
-xmlParserFindNodeInfoIndex
-xmlStrsub
-xmlTextReaderByteConsumed
-xmlTextReaderGetAttributeNo
-xmlTextReaderMoveToAttributeNo
-xmlXPathNodeSetRemove
-xmlXPtrLocationSetRemove
-xmlXPtrNewRange
-
indicate
xmlParseExternalID
-xmlParserInputGrow
-xmlParserInputRead
-xmlRegExecPushString
-xmlRegExecPushString2
-xmlURIUnescapeString
-
indicated
xmlNanoHTTPFetch
-xmlNanoHTTPMethod
-xmlNanoHTTPMethodRedir
-xmlNanoHTTPOpen
-xmlNanoHTTPOpenRedir
-xmlStreamPush
-xmlStreamPushAttr
-
indicates
XML_SCHEMAS_TYPE_FACETSNEEDVALUE
-XML_SCHEMAS_TYPE_INTERNAL_INVALID
-XML_SCHEMAS_TYPE_INTERNAL_RESOLVED
-XML_SCHEMAS_TYPE_NORMVALUENEEDED
-xmlHasNsProp
-xmlNanoFTPRead
-xmlNanoFTPScanProxy
-xmlNanoFTPUpdateURL
-xmlNanoHTTPContentLength
-xmlNanoHTTPRead
-xmlNanoHTTPScanProxy
-
indicating
xmlParseCharData
-xmlParserFindNodeInfoIndex
-xmlShellCmd
-xmlTextReaderNormalization
-xmlXPathAxisFunc
-
indication
xmlNanoFTPRead
-xmlNanoHTTPRead
-
indicative
xmlParserInputBufferGrow
-xmlParserInputBufferRead
-xmlParserInputGrow
-xmlParserInputRead
-
indicator
docbParseChunk
-htmlParseChunk
-xmlParseChunk
-
indirect
xmlParseAttribute
-
indirectly
xmlParseAttribute
-xmlParsePEReference
-xmlParserHandlePEReference
-
infinity
xmlXPathCeilingFunction
-xmlXPathFloorFunction
-xmlXPathStringFunction
-
info
_xmlParserCtxt
-xmlCharEncodingOutputFunc
-xmlClearNodeInfoSeq
-xmlCopyDoc
-xmlInitNodeInfoSeq
-xmlMallocAtomicLoc
-xmlMallocLoc
-xmlMemMalloc
-xmlMemRealloc
-xmlMemStrdupLoc
-xmlMemoryStrdup
-xmlNanoFTPList
-xmlParserAddNodeInfo
-xmlParserFindNodeInfo
-xmlParserFindNodeInfoIndex
-xmlReallocLoc
-
information
LIBXML_VERSION_EXTRA
-_xmlError
-xmlDebugDumpAttr
-xmlDebugDumpAttrList
-xmlDebugDumpDTD
-xmlDebugDumpDocument
-xmlDebugDumpDocumentHead
-xmlDebugDumpEntities
-xmlDebugDumpNode
-xmlDebugDumpNodeList
-xmlDebugDumpOneNode
-xmlNanoFTPUpdateURL
-xmlNanoHTTPFetch
-xmlNanoHTTPMethod
-xmlNanoHTTPMethodRedir
-xmlNanoHTTPOpen
-xmlNanoHTTPOpenRedir
-xmlNewTextReader
-xmlRelaxNGGetParserErrors
-xmlSchemaGetParserErrors
-xmlSchemaValidateStream
-xmlTextReaderByteConsumed
-xmlXPathOrderDocElems
-
informations
_xmlAttr
-_xmlDoc
-_xmlNode
-_xmlParserCtxt
-endElementNsSAX2Func
-startElementNsSAX2Func
-xmlDebugDumpString
-xmlErrMemory
-xmlNanoFTPCleanup
-xmlNanoFTPInit
-xmlNanoFTPProxy
-xmlNanoFTPScanProxy
-xmlNanoHTTPInit
-xmlNanoHTTPScanProxy
-xmlParserPrintFileInfo
xmlRegExecErrInfo
-xmlRegExecNextValues
-xmlRelaxNGGetValidErrors
-xmlRelaxNGSetValidErrors
-xmlRelaxParserSetFlag
-xmlSAX2EndElementNs
-xmlSAX2StartElementNs
-xmlSchemaGetValidErrors
-xmlSchemaSetValidErrors
-xmlShellDir
-xmlXIncludeProcessNode
-
informative
_xmlError
-
infos
_xmlParserCtxt
-
inherited
_xmlParserCtxt
-xmlEntityReferenceFunc
-xmlNodeGetSpacePreserve
-xmlXPathNextAttribute
-
inheriting
xmlDictCreateSub
-
inherits
xmlNewChild
-xmlNewTextChild
-
initial
_xmlDoc
-xmlAutomataGetInitState
-xmlBufferCreateSize
-xmlInitNodeInfoSeq
-xmlMemRealloc
-xmlMemStrdupLoc
-xmlMemoryStrdup
-xmlReallocLoc
-xmlShell
-xmlXPathNodeSetAdd
-xmlXPathNodeSetAddNs
-xmlXPathNodeSetAddUnique
-xmlXPathNodeSetCreate
-xmlXPathNodeSetDel
-xmlXPathNodeSetRemove
-xmlXPtrLocationSetAdd
-xmlXPtrLocationSetCreate
-xmlXPtrLocationSetDel
-xmlXPtrLocationSetRemove
-
initialisation
xmlInitGlobals
-
initialization
xmlInitializeCatalog
-xmlLoadCatalog
-xmlLoadCatalogs
-xmlSAXDefaultVersion
-
initialize
XML_COMPLETE_ATTRS
-XML_DETECT_IDS
-XML_SKIP_IDS
-htmlNewDocNoDtD
-xmlCharEncodingOutputFunc
-xmlCreateEntitiesTable
-xmlCreateEnumeration
-xmlInitThreads
-xmlInitializeGlobalState
-xmlNanoFTPNewCtxt
-xmlNanoFTPScanProxy
-xmlNanoHTTPScanProxy
-xmlNewParserCtxt
-xmlXPathNewNodeSet
-xmlXPathNewNodeSetList
-xmlXPathNewValueTree
-xmlXPtrNewLocationSetNodeSet
-xmlXPtrNewLocationSetNodes
-
initialized
XML_SAX2_MAGIC
-
initializes
xmlDOMWrapNewCtxt
-
initiate
xmlCharEncOutFunc
-
initiated
xmlXPtrNewContext
-
inline
_htmlElemDesc
-
inlined
resolveEntity
-resolveEntitySAXFunc
-xmlSAX2ResolveEntity
-
inputs
_xmlParserCtxt
-
insensitive
xmlParseCharEncoding
-
insert
xmlValidGetValidElements
-
inserted
xmlAddNextSibling
-xmlAddPrevSibling
-xmlAddSibling
-xmlReplaceNode
-xmlValidGetValidElements
-
insertion
htmlHandleOmittedElem
-xmlValidGetValidElements
-
inspect
xmlXPathDebugDumpObject
-
installed
xmlDictSize
-xmlHashSize
-
instances
_xmlParserInput
-xmlParseDefaultDecl
-xmlRelaxNGParse
-xmlSchemaParse
-
instead
XML_SCHEMAS_ELEM_TOPLEVEL
-xmlAddChild
-xmlAddNextSibling
-xmlAddPrevSibling
-xmlCopyElementContent
-xmlFreeElementContent
-xmlIsBaseChar
-xmlIsBlank
-xmlIsChar
-xmlIsCombining
-xmlIsDigit
-xmlIsExtender
-xmlIsIdeographic
-xmlIsPubidChar
-xmlKeepBlanksDefault
-xmlRegisterHTTPPostCallbacks
-xmlSaveDoc
-xmlSaveTree
-xmlSubstituteEntitiesDefault
-xmlXPtrEvalRangePredicate
-
instruction
HTML_PI_NODE
-processingInstruction
-processingInstructionSAXFunc
-xmlNewDocPI
+
generic
initGenericErrorDefaultFunc
+xmlLoadExternalEntity
+xmlShellCmd
+xmlShellReadlineFunc
+
get
_xmlSAXHandler
+_xmlSAXHandlerV1
+fatalErrorSAXFunc
+xmlBufferLength
+xmlCatalogGetDefaults
+xmlGetCompressMode
+xmlGetDocCompressMode
+xmlGetNoNsProp
+xmlGetNsProp
+xmlGetProp
+xmlNamespaceParseQName
+xmlNanoFTPInit
xmlNewPI
-xmlSAX2ProcessingInstruction
-
insufficient
xmlCanonicPath
-
integer
xmlStrcasecmp
-xmlStrcmp
-xmlStrncasecmp
-xmlStrncmp
-xmlXPathCeilingFunction
-xmlXPathFloorFunction
-xmlXPathRoundFunction
-xmlXPathStringFunction
-
intended
xmlSchemaNewStringValue
-
interact
xmlParseExternalID
-
interface
LIBXML_PATTERN_ENABLED
-LIBXML_READER_ENABLED
-LIBXML_SAX1_ENABLED
-LIBXML_WRITER_ENABLED
-_xmlParserCtxt
-docbParseDocument
-htmlParseDocument
-xmlParseDocument
-xmlParseReference
-xmlRelaxNGParse
-xmlSchemaParse
+xmlSplitQName
+xmlSplitQName2
xmlTextReaderCurrentDoc
xmlTextReaderCurrentNode
-
interfaces
LIBXML_AUTOMATA_ENABLED
-LIBXML_MODULES_ENABLED
-LIBXML_PUSH_ENABLED
-LIBXML_REGEXP_ENABLED
-LIBXML_SCHEMAS_ENABLED
-LIBXML_UNICODE_ENABLED
+xmlTextReaderGetParserProp
+xmlTextReaderGetRemainder
+xmlValidateNotationDecl
+
gif
xmlBuildRelativeURI
+
give
_xmlParserInput
+_xmlSchema
+xmlValidateDtd
+
gives
xmlParserError
+xmlParserValidityError
+xmlParserValidityWarning
+xmlParserWarning
+
giving
xmlNewDoc
+xmlParseVersionNum
+
global
XML_SCHEMAS_ELEM_GLOBAL
+XML_SCHEMAS_TYPE_GLOBAL
+_xmlNs
+globalNamespace
+xmlCatalogDump
+xmlCleanupParser
+xmlCtxtResetLastError
+xmlEncodeEntitiesReentrant
+xmlEncodeSpecialChars
+xmlGetGlobalState
+xmlGetLastError
+xmlInitializeGlobalState
+xmlResetLastError
+
globally
xmlSAXDefaultVersion
+
good
xmlTextReaderGetRemainder
+
grafted
xmlCopyProp
+xmlCopyPropList
+
grammar:
xmlParseBalancedChunkMemory
+xmlParseBalancedChunkMemoryRecover
+xmlParseInNodeContext
+
greater
xmlXPathCompareValues
+xmlXPathFloorFunction
+xmlXPathSubstringFunction
+
greater-than
xmlNewTextChild
+
group
XML_SCHEMAS_ATTRGROUP_MARKED
+XML_SCHEMAS_ELEM_FINAL_ABSENT
+XML_SCHEMAS_ELEM_FINAL_EXTENSION
+XML_SCHEMAS_ELEM_FINAL_RESTRICTION
+XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD
+_xmlSchemaAttribute
+_xmlSchemaAttributeGroup
+_xmlSchemaElement
+ftpListCallback
+
groups
xmlParseElementChildrenContentDecl
+
grow
xmlValidGetValidElements
+
grows
xmlBufferWriteCHAR
+xmlBufferWriteChar
+xmlBufferWriteQuotedString
+

Letter h:

had
xmlNewGlobalNs
+
hand
xmlLoadACatalog
+
handled
xmlLoadACatalog
+xmlParseAttValue
+xmlParseAttribute
+xmlParseDefaultDecl
+xmlParseElementContentDecl
+xmlParsePEReference
+xmlParserHandlePEReference
+
handlers
xlinkSetDefaultHandler
+xmlCleanupCharEncodingHandlers
+xmlRegisterDefaultInputCallbacks
+xmlRegisterDefaultOutputCallbacks
+xmlTextReaderSetErrorHandler
+xmlTextReaderSetStructuredErrorHandler
+
handles
xmlSaveFileTo
+xmlSaveFormatFileTo
+xmlStructuredErrorFunc
+xmlXPathStringEvalNumber
+
handling
XML_SCHEMAS_FACET_UNKNOWN
+attribute
+attributeSAXFunc
+htmlHandleOmittedElem
+xmlHandleEntity
xmlNamespaceParseNCName
xmlNamespaceParseNSDef
xmlNamespaceParseQName
-
intern
xmlTextReaderConstString
-
internally
xmlBufferWriteQuotedString
-xmlRelaxNGNewDocParserCtxt
-xmlRemoveID
-xmlRemoveRef
-xmlSchemaValidateFile
-
interned
xmlPatterncompile
-xmlTextReaderConstString
-
interning
xmlCopyNodeList
-xmlNewPI
-
interoperability
xmlParseElementChildrenContentDecl
-
interprestation
xmlXPathFunction
-
interpreter
xmlXPathAxisFunc
-
intersection
xmlXPathIntersection
-
into
attribute
-attributeSAXFunc
-xmlAddChild
-xmlAddNextSibling
-xmlAddPrevSibling
-xmlAutomataCompile
-xmlBoolToText
+xmlNodeListGetRawString
+xmlOutputBufferCreateFilenameDefault
+xmlParserHandlePEReference
+xmlParserHandleReference
+xmlParserInputBufferCreateFilenameDefault
+xmlRegNewExecCtxt
+xmlRegisterInputCallbacks
+xmlRegisterOutputCallbacks
+xmlSetGenericErrorFunc
+xmlSetStructuredErrorFunc
+xmlXPathPopBoolean
+xmlXPathPopExternal
+xmlXPathPopNodeSet
+xmlXPathPopNumber
+xmlXPathPopString
+
has-same-nodes
xmlXPathHasSameNodes
+
have
INPUT_CHUNK
+XML_SCHEMAS_ATTR_INTERNAL_RESOLVED
+XML_SCHEMAS_ELEM_INTERNAL_RESOLVED
+_htmlElemDesc
+htmlParseEntityRef
+xmlAutomataNewAllTrans
+xmlC14NDocSaveTo
+xmlC14NExecute
+xmlIsID
+xmlIsRef
+xmlParseAttribute
+xmlParseAttributeType
+xmlParseElementChildrenContentDecl
+xmlParseElementMixedContentDecl
+xmlParseExternalID
+xmlParseSDDecl
+xmlParserHandlePEReference
+xmlParserHandleReference
+xmlSaveClose
+xmlSaveFlush
+xmlStrEqual
+xmlTextReaderHasValue
+xmlTextReaderReadAttributeValue
+xmlTextWriterWriteDTDExternalEntity
+xmlValidateDocumentFinal
+xmlValidateDtdFinal
+xmlXPathIdFunction
+xmlXPathSubstringFunction
+
haystack
xmlStrcasestr
+xmlStrstr
+xmlStrsub
+
head
XML_SCHEMAS_ELEM_SUBST_GROUP_HEAD
+
header
xmlNanoHTTPAuthHeader
+xmlNanoHTTPContentLength
+xmlNanoHTTPRedir
+xmlParseTextDecl
+xmlParseXMLDecl
+
headers
xmlNanoHTTPEncoding
+xmlNanoHTTPMethod
+xmlNanoHTTPMethodRedir
+xmlNanoHTTPMimeType
+
heading
xmlCharEncodingOutputFunc
+
helper
XML_SCHEMAS_ELEM_CIRCULAR
+_xmlSchema
+
here
_xmlXPathContext
+htmlNodeStatus
+xmlParseAttValue
+xmlParseElementContentDecl
+xmlParseNamespace
+xmlXPathNextAncestorOrSelf
+
heuristic
xmlKeepBlanksDefault
+xmlURIEscape
+
heuristic:
xmlIsRef
+
hex
xmlURIEscapeStr
+
hierarchy
xmlParseElementChildrenContentDecl
+xmlSchemaGetBuiltInListSimpleTypeItemType
+
highly
htmlParseElement
+xmlParseElement
+xmlRelaxNGParse
+xmlSchemaParse
+
hold
xmlDOMWrapReconcileNamespaces
+xmlNewTextWriterDoc
+xmlNewTextWriterPushParser
+xmlReconciliateNs
+
holding
_xmlAttribute
+_xmlID
+_xmlRef
+xmlAddID
+xmlAddRef
+xmlNewNsProp
+xmlNewNsPropEatName
+xmlNewProp
+
holds
xmlBufferWriteQuotedString
+
host
xmlNanoFTPProxy
+xmlNanoFTPScanProxy
+xmlNanoFTPUpdateURL
+xmlNanoHTTPScanProxy
+
hosting
xmlXPathFuncLookupFunc
+xmlXPathNodeSetAddNs
+xmlXPathVariableLookupFunc
+
hostname
xmlNanoFTPInit
+xmlNanoFTPUpdateURL
+
hour
ftpListCallback
+
how
_xmlError
+
href
XINCLUDE_HREF
+
href==NULL
xmlNewNs
+
hrefs
xlinkExtendedLinkFunk
+xlinkExtendedLinkSetFunk
+
html
xmlBuildRelativeURI
+xmlTextReaderNodeType
+
htmlAttrAllowed
htmlNodeStatus
+
htmlElemDescPtr
htmlTagLookup
+
htmlElementAllowedHere
htmlNodeStatus
+
htmlElementStatusHere
htmlNodeStatus
+
htmlEntityDescPtr
htmlEntityLookup
+htmlEntityValueLookup
+htmlParseEntityRef
+
htmlNodePtr
htmlNodeStatus
+
htmlParserOption
htmlCtxtReadDoc
+htmlCtxtReadFd
+htmlCtxtReadFile
+htmlCtxtReadIO
+htmlCtxtReadMemory
+htmlCtxtUseOptions
+htmlReadDoc
+htmlReadFd
+htmlReadFile
+htmlReadIO
+htmlReadMemory
+
htmlStartClose
htmlAutoCloseTag
+htmlIsAutoClosed
+
htmlStartCloseIndex
htmlInitAutoClose
+
http:
XINCLUDE_NS
+XINCLUDE_OLD_NS
+getSystemId
xmlBuildRelativeURI
xmlC14NDocDumpMemory
xmlC14NDocSave
xmlC14NDocSaveTo
xmlC14NExecute
-xmlCharEncFirstLine
-xmlCharEncInFunc
-xmlCharEncOutFunc
-xmlDocDumpFormatMemoryEnc
-xmlDocDumpMemoryEnc
-xmlGetFeaturesList
-xmlNewIOInputStream
-xmlParserAddNodeInfo
-xmlSchemaValidateFacetWhtsp
-xmlStrPrintf
-xmlStrVPrintf
-xmlTextMerge
-xmlTextReaderReadAttributeValue
-xmlXPathIdFunction
-xmlXPathWrapCString
-xmlXPathWrapExternal
-xmlXPathWrapString
-
invalid
XML_SCHEMAS_TYPE_INTERNAL_INVALID
-xmlReconciliateNs
-xmlValidateDtdFinal
-
invited
xmlValidGetValidElements
-
invoking
xmlGetLineNo
-
isinf
xmlXPathIsInf
-
isn
xmlRegisterCharEncodingHandler
-xmlXPathCastToString
-
isnan
xmlXPathIsNaN
-
issue
xmlEncodeEntities
-
issued
xlinkIsLink
-
item
XML_SCHEMAS_TYPE_BLOCK_DEFAULT
-XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE
-XML_SCHEMAS_TYPE_MARKED
-_xmlXPathContext
-xmlHashRemoveEntry
-xmlHashRemoveEntry2
-xmlHashRemoveEntry3
-xmlHashUpdateEntry
-xmlHashUpdateEntry2
-xmlHashUpdateEntry3
-xmlNanoFTPDele
-xmlSchemaGetBuiltInListSimpleTypeItemType
-xmlXPathNodeSetItem
-
items
_xmlSchema
-valuePush
-xmlHashCopy
-xmlHashFree
-xmlHashScan
-xmlHashScan3
-xmlHashScanFull
-xmlHashScanFull3
-xmlSchemaValidateListSimpleTypeFacet
-
itself
_xmlDoc
-xlinkIsLink
-xmlCharEncFirstLine
-xmlParsePEReference
+xmlGetCharEncodingName
+xmlNanoHTTPScanProxy
xmlParserHandlePEReference
-xmlXPathNextSelf
+xmlParserHandleReference
+xmlSAX2GetSystemId
+xmlSchemaGetPredefinedType
+xmlTextReaderNodeType
+xmlXPathIsInf
+xmlXPathIsNaN
+
human-readable
_xmlError

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk17.html b/doc/APIchunk17.html index a885f52c..06eda370 100644 --- a/doc/APIchunk17.html +++ b/doc/APIchunk17.html @@ -7,397 +7,558 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index j-l for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index j-l for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index i-i for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index i-i for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter j:

just
htmlSetMetaEncoding
-inputPop
-namePop
-nodePop
-valuePop
-xmlCopyEnumeration
-xmlCreateEntitiesTable
-xmlCreateEnumeration
-xmlHandleEntity
-xmlNanoFTPInit
-xmlNanoHTTPInit
-xmlSnprintfElementContent
-xmlTextReaderByteConsumed
-xmlXPathNewContext
-xmlXPathNewParserContext
-xmlXPathNextSelf
-xmlXPtrNewContext
-

Letter k:

keep
xmlParserInputGrow
-xmlSubstituteEntitiesDefault
-xmlTextReaderPreserve
-xmlTextReaderPreservePattern
-xmlXPathNextNamespace
-
keeps
xmlGetBufferAllocationScheme
-xmlSetBufferAllocationScheme
-
kept
_xmlParserCtxt
-_xmlXPathContext
-htmlAutoCloseTag
-htmlIsAutoClosed
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter i:

iconv
LIBXML_ICONV_ENABLED
+LIBXML_ISO8859X_ENABLED
+
identify
xmlParseAttributeType
+
ignorable
ignorableWhitespace
+ignorableWhitespaceSAXFunc
+xmlIsBlankNode
xmlKeepBlanksDefault
-xmlXPathOrderDocElems
-
keyword
xmlParseDefaultDecl
-
kill
xmlCheckVersion
-
kind
_xmlSchemaAttribute
-_xmlSchemaAttributeGroup
-_xmlSchemaElement
-_xmlSchemaFacet
-_xmlSchemaNotation
-_xmlSchemaType
-_xmlSchemaWildcard
-
know
BAD_CAST
-
knowledge
htmlAttrAllowed
-
known
_xmlParserInput
-xmlAllocParserInputBuffer
-xmlCreateIOParserCtxt
-xmlIOParseDTD
-xmlNewIOInputStream
-xmlOutputBufferCreateIO
-xmlParseCharEncoding
-xmlParserInputBufferCreateFd
-xmlParserInputBufferCreateFile
-xmlParserInputBufferCreateFilename
-xmlParserInputBufferCreateIO
-xmlParserInputBufferCreateMem
-xmlParserInputBufferCreateStatic
-

Letter l:

labeled
xmlParseCtxtExternalEntity
-xmlParseExtParsedEnt
-xmlParseExternalEntity
-
lack
xmlCharEncodingInputFunc
-xmlCharEncodingOutputFunc
-xmlMallocAtomicLoc
-xmlMallocLoc
-xmlMemMalloc
-xmlMemRealloc
-xmlReallocLoc
-
lang
xmlNodeGetLang
-xmlXPathLangFunction
-
language
xmlNodeGetLang
-xmlNodeSetLang
-xmlXPathLangFunction
-
large
_xmlParserCtxt
-_xmlParserInput
-
largest
xmlXPathFloorFunction
-
later
xmlHashAddEntry
-xmlHashAddEntry2
-xmlHashAddEntry3
-xmlHashUpdateEntry
-xmlHashUpdateEntry2
-xmlHashUpdateEntry3
-xmlKeepBlanksDefault
-xmlParseAttValue
-
latest
xmlNanoHTTPReturnCode
-
layer
xmlChildrenNode
-xmlInitMemory
-xmlNanoFTPCleanup
-xmlNanoFTPInit
-xmlNanoHTTPCleanup
-xmlNanoHTTPInit
-xmlRootNode
-xmlSaveFileTo
-xmlSaveFormatFileTo
-
leading
xmlParseAttValue
-xmlParseElementChildrenContentDecl
-xmlParseElementMixedContentDecl
-xmlParseNotationType
-xmlValidCtxtNormalizeAttributeValue
-xmlValidNormalizeAttributeValue
-xmlXPathLeading
-xmlXPathLeadingSorted
-xmlXPathNodeLeading
-xmlXPathNodeLeadingSorted
-xmlXPathNormalizeFunction
-xmlXPathStringFunction
-
least
xmlDetectCharEncoding
-xmlXPathStringFunction
-
left
xmlTextReaderGetRemainder
-
legacy
htmlNodeStatus
-
len
xmlBufferAdd
-xmlBufferAddHead
-xmlCharStrndup
-xmlDecodeEntities
-xmlGetFeaturesList
-xmlGetUTF8Char
-xmlNewDocTextLen
-xmlNewTextLen
-xmlSplitQName3
-xmlStrncat
-xmlStrncatNew
-xmlStrndup
-xmlUTF8Strndup
-xmlUTF8Strsize
-
lenght
xmlRelaxNGValidatePushCData
-xmlSplitQName3
-xmlValidatePushCData
-
length-1
xmlXPathNodeSetItem
-
less
xmlSaveToFilename
-xmlXPathCeilingFunction
-xmlXPathCompareValues
-xmlXPathSubstringFunction
-
less-than
xmlNewTextChild
-
level
XML_SCHEMAS_ELEM_TOPLEVEL
-_xmlDoc
+xmlSAX2IgnorableWhitespace
+
ignorableWhitespace
xmlKeepBlanksDefault
+
ignored
xmlC14NDocDumpMemory
xmlC14NDocSave
-xmlCatalogSetDebug
-xmlCleanupMemory
-xmlDebugDumpAttr
+xmlC14NDocSaveTo
+xmlC14NExecute
+
ignoring
xmlURIEscapeStr
+
image
xmlC14NDocDumpMemory
+xmlC14NDocSave
+xmlC14NDocSaveTo
+xmlC14NExecute
+
imbrication
xmlNodeDump
+xmlNodeDumpOutput
+
img
xmlBuildRelativeURI
+
immediately
xmlCheckVersion
+xmlOutputBufferWrite
+xmlOutputBufferWriteEscape
+xmlOutputBufferWriteString
+xmlXPathStringFunction
+
immutable
xmlBufferCreateStatic
+xmlParserInputBufferCreateStatic
+
implementation
xmlFreeFunc
+xmlMallocFunc
+xmlReallocFunc
+xmlStrdupFunc
+xmlTextReaderGetRemainder
+xmlXPathRegisterFunc
+xmlXPathRegisterFuncNS
+
implementation-defined
xmlXPathNextNamespace
+
implemented
HTML_COMMENT_NODE
+HTML_ENTITY_REF_NODE
+HTML_PI_NODE
+HTML_PRESERVE_NODE
+HTML_TEXT_NODE
+xmlModuleOpen
+xmlSaveDoc
+xmlSaveTree
+xmlSchemaCopyValue
+xmlTextReaderNextSibling
+
implicitly
htmlAutoCloseTag
+htmlIsAutoClosed
+
implied
_htmlElemDesc
+
impossible
xmlURIEscape
+
improves
xmlGetBufferAllocationScheme
+xmlSetBufferAllocationScheme
+
in-
xmlParserInputBufferGrow
+
in-extenso
xmlMemDisplay
+xmlMemoryDump
+
in-memory
_xmlDoc
+_xmlParserCtxt
+docbParseDoc
+docbSAXParseDoc
+htmlCreateMemoryParserCtxt
+htmlCtxtReadDoc
+htmlCtxtReadMemory
+htmlParseDoc
+htmlReadDoc
+htmlReadMemory
+htmlSAXParseDoc
+xmlCreateDocParserCtxt
+xmlCreateMemoryParserCtxt
+xmlCtxtReadDoc
+xmlCtxtReadMemory
+xmlParseDoc
+xmlParseMemory
+xmlReadDoc
+xmlReadMemory
+xmlReaderForDoc
+xmlReaderForMemory
+xmlReaderNewDoc
+xmlReaderNewMemory
+xmlRecoverDoc
+xmlRecoverMemory
+xmlSAXParseDoc
+xmlSAXParseMemory
+xmlSAXParseMemoryWithData
+xmlSAXUserParseMemory
+
incase
xmlNanoFTPClose
+xmlNanoFTPCloseConnection
+xmlNanoFTPCwd
+xmlNanoFTPDele
+xmlNanoFTPGet
+xmlNanoFTPGetConnection
+xmlNanoFTPList
+xmlNanoHTTPFetch
+xmlNanoHTTPSave
+
include
XINCLUDE_NODE
+xmlC14NDocDumpMemory
+xmlC14NDocSave
+xmlC14NDocSaveTo
+xmlC14NExecute
+xmlCheckVersion
+xmlListMerge
+
include:
xmlBuildRelativeURI
+
included
xmlC14NDocDumpMemory
+xmlC14NDocSave
+xmlC14NDocSaveTo
+xmlDocDumpMemory
+xmlFreeDoc
+xmlNanoHTTPContentLength
+xmlParseNotationType
+
includes
_xmlSchema
+xmlCleanupInputCallbacks
+xmlCleanupOutputCallbacks
+xmlPopInputCallbacks
+xmlXIncludeProcessFlags
+xmlXIncludeProcessTreeFlags
+xmlXIncludeSetFlags
+
including
XML_SCHEMAS_INCLUDING_CONVERT_NS
+attribute
+attributeSAXFunc
+ftpListCallback
+startElement
+startElementSAXFunc
+xmlSAX2StartElement
+xmlTextReaderReadInnerXml
+xmlTextReaderReadOuterXml
+xmlXPathStringFunction
+
inclusive
xmlC14NDocDumpMemory
+xmlC14NDocSave
+xmlC14NDocSaveTo
+xmlC14NExecute
+
increase
xmlParserInputGrow
+
increment
xmlAutomataNewCountedTrans
+
incremental
xmlValidateDocumentFinal
+
indent
xmlTextWriterSetIndent
+
indentation
xmlDebugDumpAttr
xmlDebugDumpAttrList
xmlDebugDumpNode
xmlDebugDumpNodeList
xmlDebugDumpOneNode
-xmlNodeDump
-xmlNodeDumpOutput
-xmlShellPwd
-xmlStreamPop
+xmlKeepBlanksDefault
+xmlTextWriterSetIndent
+xmlTextWriterSetIndentString
xmlXPathDebugDumpCompExpr
xmlXPathDebugDumpObject
-
lexical
xmlParseDefaultDecl
-xmlSchemaGetCanonValue
-xmlSchemaValPredefTypeNode
-xmlSchemaValPredefTypeNodeNoNorm
-xmlSchemaValidateFacet
-xmlSchemaValidateFacetWhtsp
-xmlSchemaValidateLengthFacet
-xmlSchemaValidateLengthFacetWhtsp
-xmlSchemaValidateListSimpleTypeFacet
-xmlSchemaValidatePredefinedType
-xmlValidateNCName
-xmlValidateNMToken
-xmlValidateName
-xmlValidateQName
-
lib
xmlCheckVersion
-
libc
DEBUG_MEMORY
-
libraries
xmlRelaxNGInitTypes
-
library
_xmlError
-_xmlSchema
-xmlCleanupMemory
-xmlCleanupParser
-xmlCleanupThreads
-xmlInitThreads
-xmlInitializeGlobalState
-xmlLockLibrary
-xmlModuleFree
-xmlModuleOpen
-xmlOutputBufferCreateFilename
-xmlParseNamespace
-xmlRelaxNGCleanupTypes
-xmlSAXDefaultVersion
-xmlSchemaCleanupTypes
-xmlSchemaFreeValue
-xmlSchemaGetPredefinedType
-xmlSchemaInitTypes
-xmlUnlockLibrary
-
libs
xmlKeepBlanksDefault
-
libxml
DEBUG_MEMORY
-LIBXML_TEST_VERSION
-_xmlParserCtxt
-xmlC14NDocSave
-xmlGcMemSetup
-xmlMemSetup
-xmlRegisterHTTPPostCallbacks
-xmlSAXParseFileWithData
-xmlSAXParseMemoryWithData
-xmlShellPrintXPathError
-xmlXPathNodeSetFreeNs
-
libxml1
xmlChildrenNode
-xmlRootNode
-
libxml2
xmlCleanupThreads
-xmlFreeMutex
-xmlInitThreads
-xmlLockLibrary
-xmlMutexLock
-xmlMutexUnlock
-xmlNewMutex
-xmlRMutexLock
-xmlRMutexUnlock
-xmlUnlockLibrary
-
lifetime
xmlBufferCreateStatic
-
like
IS_CHAR_CH
-IS_DIGIT_CH
-IS_EXTENDER_CH
-IS_LETTER_CH
-LIBXML_DOTTED_VERSION
-LIBXML_TREE_ENABLED
-xmlCharEncOutFunc
-xmlLoadSGMLSuperCatalog
-xmlNanoFTPScanProxy
-xmlNanoHTTPScanProxy
-xmlParseCatalogFile
-xmlShellList
-xmlTextReaderNormalization
-xmlValidityErrorFunc
-xmlValidityWarningFunc
-
limit
xmlCharEncFirstLine
-xmlDecodeEntities
-xmlPatternMaxDepth
-
limited
_htmlElemDesc
-
linear
htmlEntityLookup
-htmlEntityValueLookup
-
linked
_xmlSchemaAttributeLink
-_xmlSchemaFacetLink
-_xmlSchemaTypeLink
-
linking
xlinkIsLink
-
links
ftpListCallback
-
listing
xmlNanoFTPList
-xmlShellList
-
lists
XML_COMPLETE_ATTRS
-_xmlXPathContext
-
literal
xmlCurrentChar
-xmlParseAttValue
-xmlParsePubidLiteral
-xmlParserHandlePEReference
-
load
xmlLoadExternalEntity
-xmlNanoHTTPFetch
+
indentation?
xmlTextWriterSetIndent
+
indented
xmlSaveFormatFile
+
indenting
xmlDocDumpFormatMemory
+xmlDocDumpFormatMemoryEnc
+xmlDocFormatDump
+xmlNodeDump
+xmlNodeDumpOutput
+xmlSaveFormatFile
+xmlSaveFormatFileEnc
+
independently
xmlGetProp
+xmlParseAttribute
+
index
index
+inputPush
+namePush
+nodePush
+xmlByteConsumed
+xmlParserFindNodeInfoIndex
+xmlStrsub
+xmlTextReaderByteConsumed
+xmlTextReaderGetAttributeNo
+xmlTextReaderMoveToAttributeNo
+xmlXPathNodeSetRemove
+xmlXPtrLocationSetRemove
+xmlXPtrNewRange
+
indicate
xmlParseExternalID
+xmlParserInputGrow
+xmlParserInputRead
+xmlRegExecPushString
+xmlRegExecPushString2
+xmlURIUnescapeString
+
indicated
xmlNanoHTTPFetch
xmlNanoHTTPMethod
xmlNanoHTTPMethodRedir
xmlNanoHTTPOpen
xmlNanoHTTPOpenRedir
-xmlNoNetExternalEntityLoader
-xmlParseCtxtExternalEntity
-xmlParseExternalEntity
-xmlShell
-xmlShellLoad
-
loaded
_xmlParserCtxt
-
loader
resolveEntity
-resolveEntitySAXFunc
-xmlLoadCatalog
-xmlLoadCatalogs
-xmlNoNetExternalEntityLoader
-xmlSAX2ResolveEntity
-
loaders
xmlExternalEntityLoader
-
loading
resolveEntity
-resolveEntitySAXFunc
-xmlIsID
-xmlSAX2ResolveEntity
-xmlShellLoad
-
loads
xmlShellLoad
-
loadsubset
XML_COMPLETE_ATTRS
-XML_DETECT_IDS
-XML_SKIP_IDS
-
local-name
xmlXPathLocalNameFunction
-
localname
startElementNsSAX2Func
-xmlSAX2StartElementNs
-xmlStrQEqual
-
location
htmlParseEntityRef
-xmlGetFeature
-xmlNanoHTTPFetch
-xmlNanoHTTPOpen
-xmlNanoHTTPOpenRedir
-xmlRelaxNGNewParserCtxt
-xmlSchemaNewParserCtxt
-xmlSetFeature
-xmlUTF8Strloc
-xmlXPtrLocationSetAdd
-
locations
_xmlLocationSet
-
locator
setDocumentLocator
-setDocumentLocatorSAXFunc
-xlinkExtendedLinkFunk
-xlinkExtendedLinkSetFunk
-xmlCanonicPath
-xmlSAX2SetDocumentLocator
-xmlTextReaderLocatorBaseURI
-xmlTextReaderLocatorLineNumber
-
locators
xlinkExtendedLinkFunk
-xlinkExtendedLinkSetFunk
-
lock
xmlLockLibrary
-xmlMutexLock
-xmlNewRMutex
-xmlRMutexLock
-xmlUnlockLibrary
-
logging
xmlMallocAtomicLoc
+xmlStreamPush
+xmlStreamPushAttr
+
indicates
XML_SCHEMAS_TYPE_FACETSNEEDVALUE
+XML_SCHEMAS_TYPE_INTERNAL_INVALID
+XML_SCHEMAS_TYPE_INTERNAL_RESOLVED
+XML_SCHEMAS_TYPE_NORMVALUENEEDED
+xmlHasNsProp
+xmlNanoFTPRead
+xmlNanoFTPScanProxy
+xmlNanoFTPUpdateURL
+xmlNanoHTTPContentLength
+xmlNanoHTTPRead
+xmlNanoHTTPScanProxy
+
indicating
xmlParseCharData
+xmlParserFindNodeInfoIndex
+xmlShellCmd
+xmlTextReaderNormalization
+xmlXPathAxisFunc
+
indication
xmlNanoFTPRead
+xmlNanoHTTPRead
+
indicative
xmlParserInputBufferGrow
+xmlParserInputBufferRead
+xmlParserInputGrow
+xmlParserInputRead
+
indicator
docbParseChunk
+htmlParseChunk
+xmlParseChunk
+
indirect
xmlParseAttribute
+
indirectly
xmlParseAttribute
+xmlParsePEReference
+xmlParserHandlePEReference
+
infinity
xmlXPathCeilingFunction
+xmlXPathFloorFunction
+xmlXPathStringFunction
+
info
_xmlParserCtxt
+xmlCharEncodingOutputFunc
+xmlClearNodeInfoSeq
+xmlCopyDoc
+xmlInitNodeInfoSeq
+xmlMallocAtomicLoc
xmlMallocLoc
xmlMemMalloc
xmlMemRealloc
xmlMemStrdupLoc
xmlMemoryStrdup
-xmlReallocLoc
-
long
IS_BASECHAR
-IS_COMBINING
-IS_DIGIT
-xmlDetectCharEncoding
+xmlNanoFTPList
+xmlParserAddNodeInfo
+xmlParserFindNodeInfo
xmlParserFindNodeInfoIndex
-xmlSchemaGetFacetValueAsULong
-
longer
XML_MAX_NAMELEN
-xmlCheckUTF8
-xmlXPathTranslateFunction
-
look-ahead
_xmlParserCtxt
-
lookahead
xmlParserInputGrow
-xmlParserInputRead
-
looked
_xmlNodeSet
-xmlPatternFromRoot
-
looks
xmlGetNoNsProp
-xmlGetNsProp
-xmlGetProp
-xmlHasNsProp
-xmlHasProp
-
lookups
XML_DETECT_IDS
-xmlParseCatalogFile
-
loop
xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlParseExternalEntity
-
loops
_xmlParserCtxt
-
lossless
xmlOutputBufferWrite
-xmlOutputBufferWriteEscape
-xmlOutputBufferWriteString
-
lowercase
htmlTagLookup
-xmlIsRef
+xmlReallocLoc
+
information
LIBXML_VERSION_EXTRA
+_xmlError
+xmlDebugDumpAttr
+xmlDebugDumpAttrList
+xmlDebugDumpDTD
+xmlDebugDumpDocument
+xmlDebugDumpDocumentHead
+xmlDebugDumpEntities
+xmlDebugDumpNode
+xmlDebugDumpNodeList
+xmlDebugDumpOneNode
+xmlNanoFTPUpdateURL
+xmlNanoHTTPFetch
+xmlNanoHTTPMethod
+xmlNanoHTTPMethodRedir
+xmlNanoHTTPOpen
+xmlNanoHTTPOpenRedir
+xmlNewTextReader
+xmlRelaxNGGetParserErrors
+xmlSchemaGetParserErrors
+xmlSchemaValidateStream
+xmlTextReaderByteConsumed
+xmlXPathOrderDocElems
+
informations
_xmlAttr
+_xmlDoc
+_xmlNode
+_xmlParserCtxt
+endElementNsSAX2Func
+startElementNsSAX2Func
+xmlDebugDumpString
+xmlErrMemory
+xmlNanoFTPCleanup
+xmlNanoFTPInit
+xmlNanoFTPProxy
+xmlNanoFTPScanProxy
+xmlNanoHTTPInit
+xmlNanoHTTPScanProxy
+xmlParserPrintFileInfo
+xmlRegExecErrInfo
+xmlRegExecNextValues
+xmlRelaxNGGetValidErrors
+xmlRelaxNGSetValidErrors
+xmlRelaxParserSetFlag
+xmlSAX2EndElementNs
+xmlSAX2StartElementNs
+xmlSchemaGetValidErrors
+xmlSchemaSetValidErrors
+xmlShellDir
+xmlXIncludeProcessNode
+
informative
_xmlError
+
infos
_xmlParserCtxt
+
inherited
_xmlParserCtxt
+xmlEntityReferenceFunc
+xmlNodeGetSpacePreserve
+xmlXPathNextAttribute
+
inheriting
xmlDictCreateSub
+
inherits
xmlNewChild
+xmlNewTextChild
+
initial
_xmlDoc
+xmlAutomataGetInitState
+xmlBufferCreateSize
+xmlInitNodeInfoSeq
+xmlMemRealloc
+xmlMemStrdupLoc
+xmlMemoryStrdup
+xmlReallocLoc
+xmlShell
+xmlXPathNodeSetAdd
+xmlXPathNodeSetAddNs
+xmlXPathNodeSetAddUnique
+xmlXPathNodeSetCreate
+xmlXPathNodeSetDel
+xmlXPathNodeSetRemove
+xmlXPtrLocationSetAdd
+xmlXPtrLocationSetCreate
+xmlXPtrLocationSetDel
+xmlXPtrLocationSetRemove
+
initialisation
xmlInitGlobals
+
initialization
xmlInitializeCatalog
+xmlLoadCatalog
+xmlLoadCatalogs
+xmlSAXDefaultVersion
+
initialize
XML_COMPLETE_ATTRS
+XML_DETECT_IDS
+XML_SKIP_IDS
+htmlNewDocNoDtD
+xmlCharEncodingOutputFunc
+xmlCreateEntitiesTable
+xmlCreateEnumeration
+xmlInitThreads
+xmlInitializeGlobalState
+xmlNanoFTPNewCtxt
+xmlNanoFTPScanProxy
+xmlNanoHTTPScanProxy
+xmlNewParserCtxt
+xmlXPathNewNodeSet
+xmlXPathNewNodeSetList
+xmlXPathNewValueTree
+xmlXPtrNewLocationSetNodeSet
+xmlXPtrNewLocationSetNodes
+
initialized
XML_SAX2_MAGIC
+
initializes
xmlDOMWrapNewCtxt
+
initiate
xmlCharEncOutFunc
+
initiated
xmlXPtrNewContext
+
inline
_htmlElemDesc
+
inlined
resolveEntity
+resolveEntitySAXFunc
+xmlSAX2ResolveEntity
+
inputs
_xmlParserCtxt
+
insensitive
xmlParseCharEncoding
+
insert
xmlValidGetValidElements
+
inserted
xmlAddNextSibling
+xmlAddPrevSibling
+xmlAddSibling
+xmlReplaceNode
+xmlValidGetValidElements
+
insertion
htmlHandleOmittedElem
+xmlValidGetValidElements
+
inspect
xmlXPathDebugDumpObject
+
installed
xmlDictSize
+xmlHashSize
+
instances
_xmlParserInput
+xmlParseDefaultDecl
+xmlRelaxNGParse
+xmlSchemaParse
+
instead
XML_SCHEMAS_ELEM_TOPLEVEL
+xmlAddChild
+xmlAddNextSibling
+xmlAddPrevSibling
+xmlCopyElementContent
+xmlFreeElementContent
+xmlIsBaseChar
+xmlIsBlank
+xmlIsChar
+xmlIsCombining
+xmlIsDigit
+xmlIsExtender
+xmlIsIdeographic
+xmlIsPubidChar
+xmlKeepBlanksDefault
+xmlRegisterHTTPPostCallbacks
+xmlSaveDoc
+xmlSaveTree
+xmlSubstituteEntitiesDefault
+xmlXPtrEvalRangePredicate
+
instruction
HTML_PI_NODE
+processingInstruction
+processingInstructionSAXFunc
+xmlNewDocPI
+xmlNewPI
+xmlSAX2ProcessingInstruction
+
insufficient
xmlCanonicPath
+
integer
xmlStrcasecmp
+xmlStrcmp
+xmlStrncasecmp
+xmlStrncmp
+xmlXPathCeilingFunction
+xmlXPathFloorFunction
+xmlXPathRoundFunction
+xmlXPathStringFunction
+
intended
xmlSchemaNewStringValue
+
interact
xmlParseExternalID
+
interface
LIBXML_PATTERN_ENABLED
+LIBXML_READER_ENABLED
+LIBXML_SAX1_ENABLED
+LIBXML_WRITER_ENABLED
+_xmlParserCtxt
+docbParseDocument
+htmlParseDocument
+xmlParseDocument
+xmlParseReference
+xmlRelaxNGParse
+xmlSchemaParse
+xmlTextReaderCurrentDoc
+xmlTextReaderCurrentNode
+
interfaces
LIBXML_AUTOMATA_ENABLED
+LIBXML_MODULES_ENABLED
+LIBXML_PUSH_ENABLED
+LIBXML_REGEXP_ENABLED
+LIBXML_SCHEMAS_ENABLED
+LIBXML_UNICODE_ENABLED
+xmlNamespaceParseNCName
+xmlNamespaceParseNSDef
+xmlNamespaceParseQName
+
intern
xmlTextReaderConstString
+
internally
xmlBufferWriteQuotedString
+xmlRelaxNGNewDocParserCtxt
+xmlRemoveID
+xmlRemoveRef
+xmlSchemaValidateFile
+
interned
xmlPatterncompile
+xmlTextReaderConstString
+
interning
xmlCopyNodeList
+xmlNewPI
+
interoperability
xmlParseElementChildrenContentDecl
+
interprestation
xmlXPathFunction
+
interpreter
xmlXPathAxisFunc
+
intersection
xmlXPathIntersection
+
into
attribute
+attributeSAXFunc
+xmlAddChild
+xmlAddNextSibling
+xmlAddPrevSibling
+xmlAutomataCompile
+xmlBoolToText
+xmlBuildRelativeURI
+xmlC14NDocDumpMemory
+xmlC14NDocSave
+xmlC14NDocSaveTo
+xmlC14NExecute
+xmlCharEncFirstLine
+xmlCharEncInFunc
+xmlCharEncOutFunc
+xmlDocDumpFormatMemoryEnc
+xmlDocDumpMemoryEnc
+xmlGetFeaturesList
+xmlNewIOInputStream
+xmlParserAddNodeInfo
+xmlSchemaValidateFacetWhtsp
+xmlStrPrintf
+xmlStrVPrintf
+xmlTextMerge
+xmlTextReaderReadAttributeValue
+xmlXPathIdFunction
+xmlXPathWrapCString
+xmlXPathWrapExternal
+xmlXPathWrapString
+
invalid
XML_SCHEMAS_TYPE_INTERNAL_INVALID
+xmlReconciliateNs
+xmlValidateDtdFinal
+
invited
xmlValidGetValidElements
+
invoking
xmlGetLineNo
+
isinf
xmlXPathIsInf
+
isn
xmlRegisterCharEncodingHandler
+xmlXPathCastToString
+
isnan
xmlXPathIsNaN
+
issue
xmlEncodeEntities
+
issued
xlinkIsLink
+
item
XML_SCHEMAS_TYPE_BLOCK_DEFAULT
+XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE
+XML_SCHEMAS_TYPE_MARKED
+_xmlXPathContext
+xmlHashRemoveEntry
+xmlHashRemoveEntry2
+xmlHashRemoveEntry3
+xmlHashUpdateEntry
+xmlHashUpdateEntry2
+xmlHashUpdateEntry3
+xmlNanoFTPDele
+xmlSchemaGetBuiltInListSimpleTypeItemType
+xmlXPathNodeSetItem
+
items
_xmlSchema
+valuePush
+xmlHashCopy
+xmlHashFree
+xmlHashScan
+xmlHashScan3
+xmlHashScanFull
+xmlHashScanFull3
+xmlSchemaValidateListSimpleTypeFacet
+
itself
_xmlDoc
+xlinkIsLink
+xmlCharEncFirstLine
+xmlParsePEReference
+xmlParserHandlePEReference
+xmlXPathNextSelf

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk18.html b/doc/APIchunk18.html index 90372af9..43fd538f 100644 --- a/doc/APIchunk18.html +++ b/doc/APIchunk18.html @@ -7,338 +7,401 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index m-m for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index m-m for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index j-l for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index j-l for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter m:

machine
xmlCheckFilename
-
macro
XML_CAST_FPTR
-xmlTextWriterWriteDocType
-xmlTextWriterWriteProcessingInstruction
-
made
LIBXML_ISO8859X_ENABLED
-xmlCharEncOutFunc
-xmlNodeListGetRawString
-xmlNodeListGetString
-xmlSetEntityReferenceFunc
-xmlXPtrNewLocationSetNodes
-
main
xmlIsMainThread
-
maintained
xmlRemoveID
-xmlRemoveRef
-
major
xmlDecodeEntities
-
make
xmlCreateEntitiesTable
-xmlNewNode
-xmlSaveClose
-xmlSaveFlush
-
makes
xmlLoadCatalog
-xmlLoadCatalogs
-xmlTextReaderExpand
-
malloc
xmlGcMemGet
-xmlGcMemSetup
-xmlMallocAtomicLoc
-xmlMallocFunc
-xmlMallocLoc
-xmlMemGet
-xmlMemMalloc
-xmlMemSetup
-
mallocAtomicFunc
xmlGcMemGet
-xmlGcMemSetup
-
manage
xmlBufferWriteChar
-xmlBufferWriteQuotedString
-
manages
xmlBufferWriteCHAR
-
mandatory
xmlParseTextDecl
-
manipulated
xmlNewRMutex
-
manipulating
xmlLoadSGMLSuperCatalog
-
manipulation
LIBXML_TREE_ENABLED
-
many
_xmlParserInput
-xmlXPathStringFunction
-
maps
xmlTextReaderLookupNamespace
-xmlTextWriterWriteDocType
-xmlTextWriterWriteProcessingInstruction
-
mark
xmlStrcat
-xmlStrdup
-xmlTextReaderQuoteChar
-
marked
XML_SCHEMAS_ATTRGROUP_MARKED
-XML_SCHEMAS_TYPE_MARKED
-_xmlParserInput
-
marker
xmlDecodeEntities
-xmlStringDecodeEntities
-xmlStringLenDecodeEntities
-
marking
xmlParseCharData
-
marks
xmlParseCharData
-
markup
xmlParseMarkupDecl
-xmlParseSDDecl
-xmlTextReaderReadInnerXml
-xmlTextReaderReadOuterXml
-xmlTextWriterWriteFormatDTD
-xmlTextWriterWriteVFormatDTD
-
markupdecl
xmlParseDocTypeDecl
-xmlParseExternalSubset
-xmlParseMarkupDecl
-
masked
xmlReconciliateNs
-
matched
xmlTextReaderPreservePattern
-
matches
CHECK_ARITY
-xmlFileMatch
-xmlIOFTPMatch
-xmlIOHTTPMatch
-xmlParseCtxtExternalEntity
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter j:

just
htmlSetMetaEncoding
+inputPop
+namePop
+nodePop
+valuePop
+xmlCopyEnumeration
+xmlCreateEntitiesTable
+xmlCreateEnumeration
+xmlHandleEntity
+xmlNanoFTPInit
+xmlNanoHTTPInit
+xmlSnprintfElementContent
+xmlTextReaderByteConsumed
+xmlXPathNewContext
+xmlXPathNewParserContext
+xmlXPathNextSelf
+xmlXPtrNewContext
+

Letter k:

keep
xmlParserInputGrow
+xmlSubstituteEntitiesDefault
+xmlTextReaderPreserve
+xmlTextReaderPreservePattern
+xmlXPathNextNamespace
+
keeps
xmlGetBufferAllocationScheme
+xmlSetBufferAllocationScheme
+
kept
_xmlParserCtxt
+_xmlXPathContext
+htmlAutoCloseTag
+htmlIsAutoClosed
+xmlKeepBlanksDefault
+xmlXPathOrderDocElems
+
keyword
xmlParseDefaultDecl
+
kill
xmlCheckVersion
+
kind
_xmlSchemaAttribute
+_xmlSchemaAttributeGroup
+_xmlSchemaElement
+_xmlSchemaFacet
+_xmlSchemaNotation
+_xmlSchemaType
+_xmlSchemaWildcard
+
know
BAD_CAST
+
knowledge
htmlAttrAllowed
+
known
_xmlParserInput
+xmlAllocParserInputBuffer
+xmlCreateIOParserCtxt
+xmlIOParseDTD
+xmlNewIOInputStream
+xmlOutputBufferCreateIO
+xmlParseCharEncoding
+xmlParserInputBufferCreateFd
+xmlParserInputBufferCreateFile
+xmlParserInputBufferCreateFilename
+xmlParserInputBufferCreateIO
+xmlParserInputBufferCreateMem
+xmlParserInputBufferCreateStatic
+

Letter l:

labeled
xmlParseCtxtExternalEntity
xmlParseExtParsedEnt
xmlParseExternalEntity
-xmlPatternMatch
-xmlRegexpExec
-xmlValidateDtdFinal
-
matching
xmlFileMatch
-xmlFileOpen
-xmlHashScan3
-xmlHashScanFull3
-xmlIOFTPMatch
-xmlIOFTPOpen
-xmlIOHTTPMatch
-xmlIOHTTPOpen
-xmlRegNewExecCtxt
-xmlValidateAttributeDecl
-xmlValidateOneAttribute
-xmlValidateOneNamespace
-xmlXPathIdFunction
-
max
_xmlXPathContext
-_xmlXPathParserContext
-xmlGetCompressMode
-xmlGetDocCompressMode
-xmlOutputBufferCreateFilename
-xmlSetCompressMode
-xmlSetDocCompressMode
-xmlStrncasecmp
-xmlStrncmp
-
maxLength
xmlSchemaValidateLengthFacet
-xmlSchemaValidateLengthFacetWhtsp
-
maximal
xmlAutomataNewCounter
-
maximum
xmlAutomataNewCountTrans
-xmlAutomataNewCountTrans2
-xmlAutomataNewOnceTrans
-xmlAutomataNewOnceTrans2
-xmlCheckUTF8
-xmlPatternMaxDepth
-
means
xmlSetGenericErrorFunc
-xmlSetStructuredErrorFunc
-xmlStreamPush
-xmlStreamPushAttr
-
mechanism
_xmlXPathContext
-xmlStructuredErrorFunc
-xmlXPathRegisterFuncLookup
-xmlXPathRegisterVariableLookup
-
mechanisms
xmlNodeGetBase
-
meet
xmlParseDefaultDecl
-
member
xmlSAXParseFileWithData
-xmlSAXParseMemoryWithData
-xmlTextWriterWriteVFormatAttribute
-xmlTextWriterWriteVFormatAttributeNS
-xmlTextWriterWriteVFormatCDATA
-xmlTextWriterWriteVFormatComment
-xmlTextWriterWriteVFormatDTD
-xmlTextWriterWriteVFormatDTDAttlist
-xmlTextWriterWriteVFormatDTDElement
-xmlTextWriterWriteVFormatDTDInternalEntity
-xmlTextWriterWriteVFormatElement
-xmlTextWriterWriteVFormatElementNS
-xmlTextWriterWriteVFormatPI
-xmlTextWriterWriteVFormatRaw
-xmlTextWriterWriteVFormatString
+
lack
xmlCharEncodingInputFunc
+xmlCharEncodingOutputFunc
+xmlMallocAtomicLoc
+xmlMallocLoc
+xmlMemMalloc
+xmlMemRealloc
+xmlReallocLoc
+
lang
xmlNodeGetLang
+xmlXPathLangFunction
+
language
xmlNodeGetLang
+xmlNodeSetLang
+xmlXPathLangFunction
+
large
_xmlParserCtxt
+_xmlParserInput
+
largest
xmlXPathFloorFunction
+
later
xmlHashAddEntry
+xmlHashAddEntry2
+xmlHashAddEntry3
+xmlHashUpdateEntry
+xmlHashUpdateEntry2
+xmlHashUpdateEntry3
+xmlKeepBlanksDefault
+xmlParseAttValue
+
latest
xmlNanoHTTPReturnCode
+
layer
xmlChildrenNode
+xmlInitMemory
+xmlNanoFTPCleanup
+xmlNanoFTPInit
+xmlNanoHTTPCleanup
+xmlNanoHTTPInit
+xmlRootNode
+xmlSaveFileTo
+xmlSaveFormatFileTo
+xmlSchemaSAXPlug
+xmlSchemaSAXUnplug
+
leading
xmlParseAttValue
+xmlParseElementChildrenContentDecl
+xmlParseElementMixedContentDecl
+xmlParseNotationType
+xmlValidCtxtNormalizeAttributeValue
+xmlValidNormalizeAttributeValue
+xmlXPathLeading
+xmlXPathLeadingSorted
+xmlXPathNodeLeading
+xmlXPathNodeLeadingSorted
+xmlXPathNormalizeFunction
xmlXPathStringFunction
-
memo
getSystemId
-xmlSAX2GetSystemId
-
memorylist
xmlMemDisplay
-xmlMemoryDump
-
merged
xmlTextMerge
-
merging
xmlAddChild
-xmlAddChildList
-xmlAddNextSibling
-xmlAddPrevSibling
-xmlAddSibling
-
message
_xmlError
-errorSAXFunc
-fatalErrorSAXFunc
-warningSAXFunc
-xmlGenericErrorFunc
-xmlParserError
-xmlParserValidityError
-xmlParserValidityWarning
-xmlParserWarning
-xmlStrPrintf
-xmlStrVPrintf
-xmlValidityErrorFunc
-xmlValidityWarningFunc
-xmlXPatherror
-
messages
errorSAXFunc
-fatalErrorSAXFunc
-warningSAXFunc
-xmlParserError
-xmlParserValidityError
-xmlParserValidityWarning
-xmlParserWarning
-xmlSetGenericErrorFunc
-xmlSetStructuredErrorFunc
-
method
XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION
-XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION
-_xmlBuffer
-xmlNanoHTTPMethod
-xmlNanoHTTPMethodRedir
-xmlRegisterHTTPPostCallbacks
-xmlSetBufferAllocationScheme
-xmlTextReaderClose
-xmlTextReaderGetRemainder
-
might
xmlNewTextChild
-
migrate
xmlEncodeEntities
-
minLength
xmlSchemaValidateLengthFacet
-xmlSchemaValidateLengthFacetWhtsp
-
minimal
xmlAutomataNewCounter
-
minimum
xmlAutomataNewCountTrans
-xmlAutomataNewCountTrans2
-xmlAutomataNewOnceTrans
-xmlAutomataNewOnceTrans2
-xmlBufferGrow
-xmlBufferResize
+
least
xmlDetectCharEncoding
+xmlXPathStringFunction
+
left
xmlTextReaderGetRemainder
+
legacy
htmlNodeStatus
+
len
xmlBufferAdd
+xmlBufferAddHead
+xmlCharStrndup
+xmlDecodeEntities
+xmlGetFeaturesList
xmlGetUTF8Char
-
minus
xmlXPathStringFunction
-
minute
ftpListCallback
-
misleading
xmlParsePEReference
-xmlParserHandlePEReference
-
mixed
XML_SCHEMAS_TYPE_MIXED
-xmlKeepBlanksDefault
-
mixed-content
xmlParseElementMixedContentDecl
-
mmap
xmlParserInputBufferCreateStatic
-
mod
xmlXPathModValues
-
mode
_xmlParserCtxt
-docbCreatePushParserCtxt
-htmlCreatePushParserCtxt
-xmlCreatePushParserCtxt
-xmlGetCompressMode
-xmlKeepBlanksDefault
-xmlNanoFTPGetConnection
-xmlParseReference
-xmlParserInputBufferGrow
-xmlParserInputBufferPush
-xmlSAXParseDoc
-xmlSAXParseFile
-xmlSAXParseFileWithData
-xmlSAXParseMemory
-xmlSAXParseMemoryWithData
-xmlSetCompressMode
-
model
xmlValidBuildContentModel
-
modified
xmlBufferCreateStatic
-xmlNodeAddContent
-xmlNodeAddContentLen
-xmlNodeSetContent
-xmlNodeSetContentLen
-xmlSchemaNewDocParserCtxt
-
modifies
xmlRelaxNGNewDocParserCtxt
-
modify
xmlShell
-
module
LIBXML_DEBUG_ENABLED
-LIBXML_MODULES_ENABLED
-xmlInputMatchCallback
-xmlModuleClose
+xmlNewDocTextLen
+xmlNewTextLen
+xmlSplitQName3
+xmlStrncat
+xmlStrncatNew
+xmlStrndup
+xmlUTF8Strndup
+xmlUTF8Strsize
+
lenght
xmlRelaxNGValidatePushCData
+xmlSplitQName3
+xmlValidatePushCData
+
length-1
xmlXPathNodeSetItem
+
less
xmlSaveToFilename
+xmlXPathCeilingFunction
+xmlXPathCompareValues
+xmlXPathSubstringFunction
+
less-than
xmlNewTextChild
+
level
XML_SCHEMAS_ELEM_TOPLEVEL
+_xmlDoc
+xmlC14NDocSave
+xmlCatalogSetDebug
+xmlCleanupMemory
+xmlDebugDumpAttr
+xmlDebugDumpAttrList
+xmlDebugDumpNode
+xmlDebugDumpNodeList
+xmlDebugDumpOneNode
+xmlNodeDump
+xmlNodeDumpOutput
+xmlShellPwd
+xmlStreamPop
+xmlXPathDebugDumpCompExpr
+xmlXPathDebugDumpObject
+
lexical
xmlParseDefaultDecl
+xmlSchemaGetCanonValue
+xmlSchemaValPredefTypeNode
+xmlSchemaValPredefTypeNodeNoNorm
+xmlSchemaValidateFacet
+xmlSchemaValidateFacetWhtsp
+xmlSchemaValidateLengthFacet
+xmlSchemaValidateLengthFacetWhtsp
+xmlSchemaValidateListSimpleTypeFacet
+xmlSchemaValidatePredefinedType
+xmlValidateNCName
+xmlValidateNMToken
+xmlValidateName
+xmlValidateQName
+
lib
xmlCheckVersion
+
libc
DEBUG_MEMORY
+
libraries
xmlRelaxNGInitTypes
+
library
_xmlError
+_xmlSchema
+xmlCleanupMemory
+xmlCleanupParser
+xmlCleanupThreads
+xmlInitThreads
+xmlInitializeGlobalState
+xmlLockLibrary
xmlModuleFree
xmlModuleOpen
-xmlModuleSymbol
-xmlOutputMatchCallback
-xmlStructuredErrorFunc
-
moment
xmlDOMWrapReconcileNamespaces
-xmlDOMWrapRemoveNode
-
month
ftpListCallback
-
more
XML_MAX_NAMELEN
-xmlLoadExternalEntity
-xmlParseAttributeType
-xmlParseElementDecl
-xmlParseElementMixedContentDecl
-xmlParseStartTag
-xmlStrEqual
-xmlTextReaderByteConsumed
-xmlTextReaderNext
-xmlTextReaderNextSibling
-xmlTextReaderRead
-xmlTextReaderReadAttributeValue
-xmlXPathStringFunction
-
moreover
xmlAutomataNewOnceTrans
-xmlAutomataNewOnceTrans2
-
most
xmlC14NExecute
-xmlGetFeaturesList
-
moved
xmlTextReaderMoveToElement
-
much
xmlReconciliateNs
-
multi-threaded
xmlSetGenericErrorFunc
-xmlSetStructuredErrorFunc
-
multi-threading
xmlCleanupGlobals
-xmlInitGlobals
-
multiple
xmlCurrentChar
-xmlStringCurrentChar
-
multiply
xmlXPathMultValues
-
multithreaded
htmlInitAutoClose
-xmlInitParser
-
mutex
xmlDictCleanup
+xmlOutputBufferCreateFilename
+xmlParseNamespace
+xmlRelaxNGCleanupTypes
+xmlSAXDefaultVersion
+xmlSchemaCleanupTypes
+xmlSchemaFreeValue
+xmlSchemaGetPredefinedType
+xmlSchemaInitTypes
+xmlUnlockLibrary
+
libs
xmlKeepBlanksDefault
+
libxml
DEBUG_MEMORY
+LIBXML_TEST_VERSION
+_xmlParserCtxt
+xmlC14NDocSave
+xmlGcMemSetup
+xmlMemSetup
+xmlRegisterHTTPPostCallbacks
+xmlSAXParseFileWithData
+xmlSAXParseMemoryWithData
+xmlShellPrintXPathError
+xmlXPathNodeSetFreeNs
+
libxml1
xmlChildrenNode
+xmlRootNode
+
libxml2
xmlCleanupThreads
xmlFreeMutex
-xmlFreeRMutex
+xmlInitThreads
+xmlLockLibrary
xmlMutexLock
xmlMutexUnlock
xmlNewMutex
-xmlNewRMutex
xmlRMutexLock
xmlRMutexUnlock
-
myDoc
docbFreeParserCtxt
-htmlFreeParserCtxt
-xmlFreeParserCtxt
-
myproxy
xmlNanoFTPScanProxy
-xmlNanoHTTPScanProxy
-
myproxy:3128
xmlNanoFTPScanProxy
+xmlUnlockLibrary
+
lifetime
xmlBufferCreateStatic
+
like
IS_CHAR_CH
+IS_DIGIT_CH
+IS_EXTENDER_CH
+IS_LETTER_CH
+LIBXML_DOTTED_VERSION
+LIBXML_TREE_ENABLED
+xmlCharEncOutFunc
+xmlLoadSGMLSuperCatalog
+xmlNanoFTPScanProxy
xmlNanoHTTPScanProxy
+xmlParseCatalogFile
+xmlShellList
+xmlTextReaderNormalization
+xmlValidityErrorFunc
+xmlValidityWarningFunc
+
limit
xmlCharEncFirstLine
+xmlDecodeEntities
+xmlPatternMaxDepth
+
limited
_htmlElemDesc
+
linear
htmlEntityLookup
+htmlEntityValueLookup
+
linked
_xmlSchemaAttributeLink
+_xmlSchemaFacetLink
+_xmlSchemaTypeLink
+
linking
xlinkIsLink
+
links
ftpListCallback
+
listing
xmlNanoFTPList
+xmlShellList
+
lists
XML_COMPLETE_ATTRS
+_xmlXPathContext
+
literal
xmlCurrentChar
+xmlParseAttValue
+xmlParsePubidLiteral
+xmlParserHandlePEReference
+
load
xmlLoadExternalEntity
+xmlNanoHTTPFetch
+xmlNanoHTTPMethod
+xmlNanoHTTPMethodRedir
+xmlNanoHTTPOpen
+xmlNanoHTTPOpenRedir
+xmlNoNetExternalEntityLoader
+xmlParseCtxtExternalEntity
+xmlParseExternalEntity
+xmlShell
+xmlShellLoad
+
loaded
_xmlParserCtxt
+
loader
resolveEntity
+resolveEntitySAXFunc
+xmlLoadCatalog
+xmlLoadCatalogs
+xmlNoNetExternalEntityLoader
+xmlSAX2ResolveEntity
+
loaders
xmlExternalEntityLoader
+
loading
resolveEntity
+resolveEntitySAXFunc
+xmlIsID
+xmlSAX2ResolveEntity
+xmlShellLoad
+
loads
xmlShellLoad
+
loadsubset
XML_COMPLETE_ATTRS
+XML_DETECT_IDS
+XML_SKIP_IDS
+
local-name
xmlXPathLocalNameFunction
+
localname
startElementNsSAX2Func
+xmlSAX2StartElementNs
+xmlStrQEqual
+
location
htmlParseEntityRef
+xmlGetFeature
+xmlNanoHTTPFetch
+xmlNanoHTTPOpen
+xmlNanoHTTPOpenRedir
+xmlRelaxNGNewParserCtxt
+xmlSchemaNewParserCtxt
+xmlSetFeature
+xmlUTF8Strloc
+xmlXPtrLocationSetAdd
+
locations
_xmlLocationSet
+
locator
setDocumentLocator
+setDocumentLocatorSAXFunc
+xlinkExtendedLinkFunk
+xlinkExtendedLinkSetFunk
+xmlCanonicPath
+xmlSAX2SetDocumentLocator
+xmlTextReaderLocatorBaseURI
+xmlTextReaderLocatorLineNumber
+
locators
xlinkExtendedLinkFunk
+xlinkExtendedLinkSetFunk
+
lock
xmlLockLibrary
+xmlMutexLock
+xmlNewRMutex
+xmlRMutexLock
+xmlUnlockLibrary
+
logging
xmlMallocAtomicLoc
+xmlMallocLoc
+xmlMemMalloc
+xmlMemRealloc
+xmlMemStrdupLoc
+xmlMemoryStrdup
+xmlReallocLoc
+
long
IS_BASECHAR
+IS_COMBINING
+IS_DIGIT
+xmlDetectCharEncoding
+xmlParserFindNodeInfoIndex
+xmlSchemaGetFacetValueAsULong
+
longer
XML_MAX_NAMELEN
+xmlCheckUTF8
+xmlXPathTranslateFunction
+
look-ahead
_xmlParserCtxt
+
lookahead
xmlParserInputGrow
+xmlParserInputRead
+
looked
_xmlNodeSet
+xmlPatternFromRoot
+
looks
xmlGetNoNsProp
+xmlGetNsProp
+xmlGetProp
+xmlHasNsProp
+xmlHasProp
+
lookups
XML_DETECT_IDS
+xmlParseCatalogFile
+
loop
xmlParseBalancedChunkMemory
+xmlParseBalancedChunkMemoryRecover
+xmlParseExternalEntity
+
loops
_xmlParserCtxt
+
lossless
xmlOutputBufferWrite
+xmlOutputBufferWriteEscape
+xmlOutputBufferWriteString
+
lowercase
htmlTagLookup
+xmlIsRef

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk19.html b/doc/APIchunk19.html index 6d436605..db7fbf26 100644 --- a/doc/APIchunk19.html +++ b/doc/APIchunk19.html @@ -7,321 +7,341 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index n-n for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index n-n for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index m-m for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index m-m for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter n:

named
xmlAddEncodingAlias
-
names
_xmlDoc
-_xmlParserCtxt
-_xmlSchema
-htmlInitAutoClose
-xmlGetFeaturesList
-xmlHashAddEntry
-xmlHashScan3
-xmlHashScanFull3
-xmlParseNotationType
-xmlValidGetPotentialChildren
-xmlValidGetValidElements
-
namespace-uri
xmlXPathNamespaceURIFunction
-
namespace:
XINCLUDE_NS
-XINCLUDE_OLD_NS
-xmlParseAttribute
-xmlParseStartTag
-
namespaces
_xmlParserCtxt
-_xmlSchemaWildcard
-_xmlXPathContext
-xmlC14NDocDumpMemory
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlC14NExecute
-xmlCopyDoc
-xmlCopyNode
-xmlDocCopyNode
-xmlFreeNsList
-xmlGetProp
-xmlParseInNodeContext
-xmlReconciliateNs
-
naming
xmlChildrenNode
-xmlRootNode
-
nbval
xmlRegExecErrInfo
-xmlRegExecNextValues
-
ncname
xmlBuildQName
-
ndata
_xmlEntity
-
nearest
xmlNodeGetLang
-xmlNodeGetSpacePreserve
-xmlXPathLangFunction
-
nearly
xmlSAXParseFileWithData
-xmlSAXParseMemoryWithData
-
necessary
_htmlElemDesc
-xmlCheckUTF8
-xmlDebugDumpString
-
need
WITH_TRIO
-XML_SCHEMAS_TYPE_FACETSNEEDVALUE
-XML_SCHEMAS_TYPE_NORMVALUENEEDED
-XML_SUBSTITUTE_BOTH
-XML_SUBSTITUTE_NONE
-XML_SUBSTITUTE_PEREF
-XML_SUBSTITUTE_REF
-xmlCreatePushParserCtxt
-xmlGetNsList
-xmlInitCharEncodingHandlers
-xmlNewDocNode
-xmlNewDocNodeEatName
-xmlNewTextChild
-xmlParseEntityRef
-xmlParserHandleReference
-xmlRegExecErrInfo
-xmlRegExecNextValues
-xmlSchemaNewStringValue
-xmlValidGetValidElements
-xmlXPathNewContext
-
needed
_xmlParserCtxt
-_xmlXPathContext
-htmlEntityLookup
-htmlEntityValueLookup
-xlinkIsLink
-xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-xmlGetBufferAllocationScheme
-xmlLoadSGMLSuperCatalog
-xmlNewNodeEatName
-xmlParseElementChildrenContentDecl
-xmlParseElementMixedContentDecl
-xmlReconciliateNs
-xmlSetBufferAllocationScheme
-xmlShellPwd
-xmlStrncat
-xmlTextReaderCurrentDoc
-xmlValidCtxtNormalizeAttributeValue
-xmlValidNormalizeAttributeValue
-xmlXPathCastToString
-xmlXPathPopBoolean
-xmlXPathPopExternal
-xmlXPathPopNodeSet
-xmlXPathPopNumber
-xmlXPathPopString
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter m:

machine
xmlCheckFilename
+
macro
XML_CAST_FPTR
+xmlTextWriterWriteDocType
+xmlTextWriterWriteProcessingInstruction
+
made
LIBXML_ISO8859X_ENABLED
+xmlCharEncOutFunc
+xmlNodeListGetRawString
+xmlNodeListGetString
+xmlSetEntityReferenceFunc
+xmlXPtrNewLocationSetNodes
+
main
xmlIsMainThread
+
maintained
xmlRemoveID
+xmlRemoveRef
+xmlSchemaSAXPlug
+
major
xmlDecodeEntities
+
make
xmlCreateEntitiesTable
+xmlNewNode
+xmlSaveClose
+xmlSaveFlush
+
makes
xmlLoadCatalog
+xmlLoadCatalogs
+xmlTextReaderExpand
+
malloc
xmlGcMemGet
+xmlGcMemSetup
+xmlMallocAtomicLoc
+xmlMallocFunc
+xmlMallocLoc
+xmlMemGet
+xmlMemMalloc
+xmlMemSetup
+
mallocAtomicFunc
xmlGcMemGet
+xmlGcMemSetup
+
manage
xmlBufferWriteChar
+xmlBufferWriteQuotedString
+
manages
xmlBufferWriteCHAR
+
mandatory
xmlParseTextDecl
+
manipulated
xmlNewRMutex
+
manipulating
xmlLoadSGMLSuperCatalog
+
manipulation
LIBXML_TREE_ENABLED
+
many
_xmlParserInput
xmlXPathStringFunction
-
needing
xmlCharEncOutFunc
-xmlURIEscape
-
needle
xmlStrcasestr
-xmlStrstr
-
needs
xmlEntityReferenceFunc
-xmlSchemaValidateFacetWhtsp
-xmlXPathNodeSetFreeNs
-
negated
_xmlSchemaWildcard
-
negative
xmlC14NDocDumpMemory
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlC14NExecute
-xmlRegExecErrInfo
-xmlRegExecNextValues
-xmlRegExecPushString
-xmlRegExecPushString2
-xmlRegexpExec
-xmlRegexpIsDeterminist
-xmlShellCmd
-xmlXPathBooleanFunction
-xmlXPathCeilingFunction
-xmlXPathStringEvalNumber
-xmlXPathStringFunction
-
neither
xmlHasNsProp
-xmlHasProp
-xmlParseElementChildrenContentDecl
-xmlTextReaderReadInnerXml
-xmlTextReaderReadOuterXml
-xmlXPathBooleanFunction
-xmlXPathCompareValues
-
nested
xmlParseElementChildrenContentDecl
-xmlParseMarkupDecl
-
net
xmlXPathIsInf
-xmlXPathIsNaN
-
network
htmlCtxtReadFile
-htmlReadFile
-xmlCtxtReadFile
-xmlNoNetExternalEntityLoader
-xmlReadFile
-xmlReaderForFile
-xmlReaderNewFile
-
nice
xmlBuildRelativeURI
-
nillable
XML_SCHEMAS_ELEM_NILLABLE
-
nod
xmlEntityReferenceFunc
-
node-
xmlDOMWrapRemoveNode
-xmlValidGetValidElements
-
node-set?
xmlXPathLocalNameFunction
-xmlXPathNamespaceURIFunction
-
nodelist
xmlParseBalancedChunkMemoryRecover
-
nodes1
xmlXPathDifference
-
nodes2
xmlXPathDifference
-
nodeset
xmlXPathNodeSetFreeNs
-
nodesets
xmlXPathNodeSetMerge
-
non
XML_SCHEMAS_ANYATTR_LAX
-xmlEncodeEntitiesReentrant
-xmlNewChild
-xmlNewTextChild
-xmlXPathParseNCName
-
non-CDATA
_xmlParserCtxt
-
non-NULL
htmlParseEntityRef
-xmlCreatePushParserCtxt
-xmlParseEntityValue
-
non-UTF-8
xmlByteConsumed
-
non-blank
xmlParseElementChildrenContentDecl
-
non-determinist
_xmlValidCtxt
-
non-empty
xmlXPathBooleanFunction
-
non-exclusive
xmlC14NDocDumpMemory
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlC14NExecute
-
non-final
xmlRegExecPushString
-xmlRegExecPushString2
-
non-negative
xmlC14NDocSaveTo
-xmlC14NExecute
-
non-normative
xmlDetectCharEncoding
-
non-null
xmlShellPrintNode
-
non-stateless
xmlCharEncOutFunc
-
non-validating
xmlParseAttValue
-xmlParseEntityRef
-
non-zero
initxmlDefaultSAXHandler
-xmlIsLetter
-xmlSAX2InitDefaultSAXHandler
-xmlXPathBooleanFunction
-
none
getNamespace
-xmlDecodeEntities
-xmlGetLastChild
-xmlOutputBufferCreateFilename
-xmlSchemaValueGetAsString
-xmlSchemaValueGetNext
+
maps
xmlTextReaderLookupNamespace
+xmlTextWriterWriteDocType
+xmlTextWriterWriteProcessingInstruction
+
mark
xmlStrcat
+xmlStrdup
+xmlTextReaderQuoteChar
+
marked
XML_SCHEMAS_ATTRGROUP_MARKED
+XML_SCHEMAS_TYPE_MARKED
+_xmlParserInput
+
marker
xmlDecodeEntities
xmlStringDecodeEntities
xmlStringLenDecodeEntities
-xmlTextReaderConstXmlLang
-xmlTextReaderXmlLang
-
nor
xmlBufferCreateStatic
-xmlBuildQName
-xmlParseElementChildrenContentDecl
-xmlSetGenericErrorFunc
-xmlSetStructuredErrorFunc
+
marking
xmlParseCharData
+
marks
xmlParseCharData
+
markup
xmlParseMarkupDecl
+xmlParseSDDecl
xmlTextReaderReadInnerXml
xmlTextReaderReadOuterXml
-xmlXPathBooleanFunction
-
normal
xmlInitCharEncodingHandlers
-xmlParserInputBufferGrow
-
normalization
xmlNormalizeURIPath
-xmlParseSDDecl
-xmlSchemaValPredefTypeNodeNoNorm
-xmlSchemaValidateFacetWhtsp
-xmlValidCtxtNormalizeAttributeValue
-xmlValidNormalizeAttributeValue
-
normalization:
xmlCurrentChar
-
normalizations
xmlTextReaderNormalization
-
normalize
xmlParseAttValue
-xmlSchemaCollapseString
-xmlTextReaderNormalization
-
normalize-space
xmlXPathNormalizeFunction
-
normalized
XML_SCHEMAS_TYPE_NORMVALUENEEDED
-xmlParseAttValue
-xmlSchemaValidateFacetWhtsp
-xmlValidCtxtNormalizeAttributeValue
-xmlValidNormalizeAttributeValue
-xmlXPathNormalizeFunction
-
normalizing
xmlCurrentChar
-
normally
c
+xmlTextWriterWriteFormatDTD
+xmlTextWriterWriteVFormatDTD
+
markupdecl
xmlParseDocTypeDecl
+xmlParseExternalSubset
+xmlParseMarkupDecl
+
masked
xmlReconciliateNs
+
matched
xmlTextReaderPreservePattern
+
matches
CHECK_ARITY
+xmlFileMatch
+xmlIOFTPMatch
+xmlIOHTTPMatch
+xmlParseCtxtExternalEntity
+xmlParseExtParsedEnt
+xmlParseExternalEntity
+xmlPatternMatch
+xmlRegexpExec
+xmlValidateDtdFinal
+
matching
xmlFileMatch
+xmlFileOpen
+xmlHashScan3
+xmlHashScanFull3
+xmlIOFTPMatch
+xmlIOFTPOpen
+xmlIOHTTPMatch
+xmlIOHTTPOpen
+xmlRegNewExecCtxt
+xmlValidateAttributeDecl
+xmlValidateOneAttribute
+xmlValidateOneNamespace
+xmlXPathIdFunction
+
max
_xmlXPathContext
+_xmlXPathParserContext
+xmlGetCompressMode
+xmlGetDocCompressMode
+xmlOutputBufferCreateFilename
+xmlSetCompressMode
+xmlSetDocCompressMode
+xmlStrncasecmp
+xmlStrncmp
+
maxLength
xmlSchemaValidateLengthFacet
+xmlSchemaValidateLengthFacetWhtsp
+
maximal
xmlAutomataNewCounter
+
maximum
xmlAutomataNewCountTrans
+xmlAutomataNewCountTrans2
+xmlAutomataNewOnceTrans
+xmlAutomataNewOnceTrans2
+xmlCheckUTF8
+xmlPatternMaxDepth
+
means
xmlSetGenericErrorFunc
+xmlSetStructuredErrorFunc
+xmlStreamPush
+xmlStreamPushAttr
+
mechanism
_xmlXPathContext
+xmlStructuredErrorFunc
+xmlXPathRegisterFuncLookup
+xmlXPathRegisterVariableLookup
+
mechanisms
xmlNodeGetBase
+
meet
xmlParseDefaultDecl
+
member
xmlSAXParseFileWithData
+xmlSAXParseMemoryWithData
+xmlTextWriterWriteVFormatAttribute
+xmlTextWriterWriteVFormatAttributeNS
+xmlTextWriterWriteVFormatCDATA
+xmlTextWriterWriteVFormatComment
+xmlTextWriterWriteVFormatDTD
+xmlTextWriterWriteVFormatDTDAttlist
+xmlTextWriterWriteVFormatDTDElement
+xmlTextWriterWriteVFormatDTDInternalEntity
+xmlTextWriterWriteVFormatElement
+xmlTextWriterWriteVFormatElementNS
+xmlTextWriterWriteVFormatPI
+xmlTextWriterWriteVFormatRaw
+xmlTextWriterWriteVFormatString
+xmlXPathStringFunction
+
memo
getSystemId
+xmlSAX2GetSystemId
+
memorylist
xmlMemDisplay
+xmlMemoryDump
+
merged
xmlTextMerge
+
merging
xmlAddChild
+xmlAddChildList
+xmlAddNextSibling
+xmlAddPrevSibling
+xmlAddSibling
+
message
_xmlError
+errorSAXFunc
+fatalErrorSAXFunc
+warningSAXFunc
+xmlGenericErrorFunc
+xmlParserError
+xmlParserValidityError
+xmlParserValidityWarning
+xmlParserWarning
+xmlStrPrintf
+xmlStrVPrintf
xmlValidityErrorFunc
xmlValidityWarningFunc
-
notations
_xmlDtd
-xmlValidateDtdFinal
-
note
xmlCheckUTF8
+xmlXPatherror
+
messages
errorSAXFunc
+fatalErrorSAXFunc
+warningSAXFunc
+xmlParserError
+xmlParserValidityError
+xmlParserValidityWarning
+xmlParserWarning
+xmlSetGenericErrorFunc
+xmlSetStructuredErrorFunc
+
method
XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION
+XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION
+_xmlBuffer
+xmlNanoHTTPMethod
+xmlNanoHTTPMethodRedir
+xmlRegisterHTTPPostCallbacks
+xmlSetBufferAllocationScheme
+xmlTextReaderClose
+xmlTextReaderGetRemainder
+
might
xmlNewTextChild
+
migrate
xmlEncodeEntities
+
minLength
xmlSchemaValidateLengthFacet
+xmlSchemaValidateLengthFacetWhtsp
+
minimal
xmlAutomataNewCounter
+
minimum
xmlAutomataNewCountTrans
+xmlAutomataNewCountTrans2
+xmlAutomataNewOnceTrans
+xmlAutomataNewOnceTrans2
+xmlBufferGrow
+xmlBufferResize
+xmlGetUTF8Char
+
minus
xmlXPathStringFunction
+
minute
ftpListCallback
+
misleading
xmlParsePEReference
+xmlParserHandlePEReference
+
mixed
XML_SCHEMAS_TYPE_MIXED
+xmlKeepBlanksDefault
+
mixed-content
xmlParseElementMixedContentDecl
+
mmap
xmlParserInputBufferCreateStatic
+
mod
xmlXPathModValues
+
mode
_xmlParserCtxt
+docbCreatePushParserCtxt
+htmlCreatePushParserCtxt
+xmlCreatePushParserCtxt
+xmlGetCompressMode
+xmlKeepBlanksDefault
+xmlNanoFTPGetConnection
+xmlParseReference
+xmlParserInputBufferGrow
+xmlParserInputBufferPush
+xmlSAXParseDoc
+xmlSAXParseFile
+xmlSAXParseFileWithData
+xmlSAXParseMemory
+xmlSAXParseMemoryWithData
+xmlSetCompressMode
+
model
xmlValidBuildContentModel
+
modified
xmlBufferCreateStatic
+xmlNodeAddContent
+xmlNodeAddContentLen
+xmlNodeSetContent
+xmlNodeSetContentLen
+xmlSchemaNewDocParserCtxt
+
modifies
xmlRelaxNGNewDocParserCtxt
+
modify
xmlShell
+
module
LIBXML_DEBUG_ENABLED
+LIBXML_MODULES_ENABLED
+xmlInputMatchCallback
+xmlModuleClose
+xmlModuleFree
+xmlModuleOpen
+xmlModuleSymbol
+xmlOutputMatchCallback
+xmlStructuredErrorFunc
+
moment
xmlDOMWrapReconcileNamespaces
+xmlDOMWrapRemoveNode
+
month
ftpListCallback
+
more
XML_MAX_NAMELEN
xmlLoadExternalEntity
-
now
XML_CAST_FPTR
-_xmlSchema
-_xmlSchemaElement
-xmlDecodeEntities
-xmlNewGlobalNs
-xmlParserHandleReference
-xmlScanName
-
ns-decls
xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-
ns-references
xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-xmlDOMWrapRemoveNode
-
nsDef
xmlDOMWrapAdoptNode
-xmlDOMWrapRemoveNode
-
null
xmlHashScan3
-xmlHashScanFull3
-xmlShellDu
-
null-terminated
xmlCheckUTF8
-
number:
LIBXML_VERSION
-
number?
xmlXPathSubstringFunction
-
numbers
xmlLineNumbersDefault
-xmlUTF8Size
-xmlXPathAddValues
-xmlXPathCompareValues
-xmlXPathDivValues
-xmlXPathModValues
-xmlXPathMultValues
-xmlXPathOrderDocElems
-xmlXPathRoundFunction
-xmlXPathSubValues
-xmlXPathValueFlipSign
-
numeric
xmlXPathAddValues
-xmlXPathDivValues
-xmlXPathModValues
-xmlXPathMultValues
+xmlParseAttributeType
+xmlParseElementDecl
+xmlParseElementMixedContentDecl
+xmlParseStartTag
+xmlStrEqual
+xmlTextReaderByteConsumed
+xmlTextReaderNext
+xmlTextReaderNextSibling
+xmlTextReaderRead
+xmlTextReaderReadAttributeValue
xmlXPathStringFunction
-xmlXPathSubValues
-xmlXPathSubstringFunction
-xmlXPathValueFlipSign
+
moreover
xmlAutomataNewOnceTrans
+xmlAutomataNewOnceTrans2
+
most
xmlC14NExecute
+xmlGetFeaturesList
+
moved
xmlTextReaderMoveToElement
+
much
xmlReconciliateNs
+
multi-threaded
xmlSetGenericErrorFunc
+xmlSetStructuredErrorFunc
+
multi-threading
xmlCleanupGlobals
+xmlInitGlobals
+
multiple
xmlCurrentChar
+xmlStringCurrentChar
+
multiply
xmlXPathMultValues
+
multithreaded
htmlInitAutoClose
+xmlInitParser
+
mutex
xmlDictCleanup
+xmlFreeMutex
+xmlFreeRMutex
+xmlMutexLock
+xmlMutexUnlock
+xmlNewMutex
+xmlNewRMutex
+xmlRMutexLock
+xmlRMutexUnlock
+
myDoc
docbFreeParserCtxt
+htmlFreeParserCtxt
+xmlFreeParserCtxt
+
myproxy
xmlNanoFTPScanProxy
+xmlNanoHTTPScanProxy
+
myproxy:3128
xmlNanoFTPScanProxy
+xmlNanoHTTPScanProxy

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk2.html b/doc/APIchunk2.html index 427ca165..3127bc71 100644 --- a/doc/APIchunk2.html +++ b/doc/APIchunk2.html @@ -13,29 +13,30 @@ A:link, A:visited, A:active { text-decoration: underline } F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Letter D:

DEBUG_MEMORY
DEBUG_MEMORY
DEBUG_MEMORY_FREED
DEBUG_MEMORY
DEBUG_MEMORY_LOCATION
DEBUG_MEMORY
@@ -412,27 +413,28 @@ A:link, A:visited, A:active { text-decoration: underline } F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk20.html b/doc/APIchunk20.html index ea27f238..198ff0d8 100644 --- a/doc/APIchunk20.html +++ b/doc/APIchunk20.html @@ -7,374 +7,324 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index o-o for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index o-o for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index n-n for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index n-n for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter o:

object?
xmlXPathNumberFunction
-xmlXPathStringFunction
-
objects
xmlXPathCompareValues
-xmlXPathDivValues
-xmlXPathEqualValues
-xmlXPathFreeNodeSetList
-xmlXPathNotEqualValues
-
objects:
xmlXPathAddValues
-xmlXPathCompareValues
-xmlXPathModValues
-xmlXPathMultValues
-xmlXPathSubValues
-
obligated
xmlParseEntityRef
-
obsolete
_xmlSchemaAttribute
-xmlNormalizeWindowsPath
-
obsolete:
XML_SCHEMAS_ELEM_TOPLEVEL
-
occupied
xmlCanonicPath
-
occur
xmlParseComment
-xmlParseMarkupDecl
-
occured
xmlCtxtGetLastError
-xmlDictCreate
-xmlDictCreateSub
-xmlGetLastError
-xmlHashCreate
-xmlHashCreateDict
-xmlListRemoveFirst
-xmlListRemoveLast
-
occurences
xmlAutomataNewCountTrans
-xmlAutomataNewCountTrans2
-xmlAutomataNewOnceTrans
-xmlAutomataNewOnceTrans2
-
occurred
xmlMemStrdupLoc
-xmlMemoryStrdup
-
occurrence
xmlStrcasestr
-xmlStrchr
-xmlStrstr
-xmlStrsub
-xmlXPathSubstringAfterFunction
-xmlXPathSubstringBeforeFunction
-
occurrences
xmlXPathTranslateFunction
-
occurs
xmlNormalizeURIPath
-xmlParseSDDecl
-xmlStrPrintf
-xmlStrVPrintf
-
octets
UTF8ToHtml
-UTF8Toisolat1
-docbEncodeEntities
-htmlEncodeEntities
-isolat1ToUTF8
-xmlCharEncodingInputFunc
-xmlCharEncodingOutputFunc
-
of:
xmlParseSDDecl
-
off
xmlGetNoNsProp
-xmlGetNsProp
-xmlGetProp
-xmlHasNsProp
-xmlHasProp
-xmlLineNumbersDefault
-xmlParseExternalID
-
okay
_xmlParserCtxt
-
old
_xmlDoc
-globalNamespace
-xmlDocSetRootElement
-xmlKeepBlanksDefault
-xmlLineNumbersDefault
-xmlListCopy
-xmlNewGlobalNs
-xmlOutputBufferCreateFilenameDefault
-xmlParserInputBufferCreateFilenameDefault
-xmlParserInputBufferGrow
-xmlParserInputBufferRead
-xmlRegisterNodeDefault
-xmlReplaceNode
-xmlXPathConvertBoolean
-xmlXPathConvertNumber
-xmlXPathConvertString
-
oldNs
xmlDOMWrapAdoptNode
-xmlDOMWrapRemoveNode
-
older
LIBXML_SAX1_ENABLED
-xmlParseNamespace
-
omitted
htmlHandleOmittedElem
-xmlXPathLocalNameFunction
-xmlXPathNamespaceURIFunction
-xmlXPathNormalizeFunction
-xmlXPathStringFunction
-xmlXPathStringLengthFunction
-
once
htmlInitAutoClose
-xmlAutomataNewOnceTrans
-xmlAutomataNewOnceTrans2
-xmlCleanupThreads
-xmlEncodeEntities
-xmlInitParser
-xmlInitializeCatalog
-xmlLoadCatalog
-xmlLoadCatalogs
-xmlParseAttributeType
-xmlParseElementDecl
-xmlParseElementMixedContentDecl
-xmlParsePI
-xmlParseStartTag
-xmlTextReaderCurrentDoc
-xmlTextReaderPreserve
-xmlTextReaderPreservePattern
-xmlValidateDocumentFinal
-xmlValidateDtdFinal
-xmlXPathNodeSetMerge
-xmlXPtrLocationSetMerge
-
ones
XML_COMPLETE_ATTRS
-startElementNsSAX2Func
-xmlCatalogConvert
-xmlConvertSGMLCatalog
-
ononymous
_xmlSchema
-
onto
xmlParserInputBufferGrow
-xmlStreamPush
-xmlStreamPushAttr
-
opaque
_xmlSchema
-_xmlURI
-
open
htmlCtxtReadFd
-htmlDocDump
-htmlReadFd
-xmlCtxtReadFd
-xmlDocDump
-xmlDocFormatDump
-xmlIOFTPOpen
-xmlIOHTTPOpen
-xmlInputOpenCallback
-xmlNanoFTPConnect
-xmlNanoFTPConnectTo
-xmlNanoFTPGetConnection
-xmlNanoHTTPMethod
-xmlNanoHTTPMethodRedir
-xmlNanoHTTPOpen
-xmlNanoHTTPOpenRedir
-xmlOutputOpenCallback
-xmlReadFd
-xmlReaderForFd
-xmlReaderNewFd
-xmlTextWriterEndDocument
-
opening
startElement
-startElementSAXFunc
-xmlParseElementChildrenContentDecl
-xmlSAX2StartElement
-
operands
xmlXPathAddValues
-xmlXPathDivValues
-xmlXPathModValues
-xmlXPathMultValues
-xmlXPathSubValues
-xmlXPathValueFlipSign
-
operating
_xmlParserCtxt
-xmlParserInputBufferGrow
-xmlParserInputBufferPush
-
operation
xmlBuildRelativeURI
-xmlCatalogSetDebug
-xmlTextReaderConstValue
-xmlXPathAddValues
-xmlXPathCompareValues
-xmlXPathConvertBoolean
-xmlXPathConvertNumber
-xmlXPathConvertString
-xmlXPathDivValues
-xmlXPathEqualValues
-xmlXPathModValues
-xmlXPathMultValues
-xmlXPathNotEqualValues
-xmlXPathSubValues
-xmlXPathValueFlipSign
-
operations
xmlModuleClose
-xmlModuleFree
-xmlReconciliateNs
-
operator
xmlXPathCompareValues
-
operators
xmlXPathAddValues
-xmlXPathDivValues
-xmlXPathModValues
-xmlXPathMultValues
-xmlXPathSubValues
-xmlXPathValueFlipSign
-
optimized
xmlXPathNodeSetAddUnique
-
option
xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-xmlGetLineNo
-xmlSchemaValidCtxtGetOptions
-
optional
XML_SCHEMAS_ATTR_USE_OPTIONAL
-docbCreatePushParserCtxt
-htmlCreatePushParserCtxt
-xmlCreatePushParserCtxt
-xmlCtxtResetPush
-xmlDOMWrapAdoptNode
-xmlListCreate
-xmlNanoFTPList
-xmlNewChild
-xmlNewDocNode
-xmlNewDocNodeEatName
-xmlNewDocRawNode
-xmlNewNode
-xmlNewNodeEatName
-xmlNewTextChild
-xmlNodeDumpOutput
-xmlOutputBufferWriteEscape
-xmlParseMisc
-xmlPatterncompile
-xmlSchemaCheckFacet
-xmlSchemaValidateStream
-xmlShellSave
-xmlShellValidate
-xmlURIUnescapeString
-
options
htmlCtxtUseOptions
-xmlCtxtUseOptions
-xmlDOMWrapRemoveNode
-xmlModuleOpen
-xmlSaveToFd
-xmlSaveToFilename
-xmlSaveToIO
-xmlSchemaSetValidOptions
-xmlSchemaValidCtxtGetOptions
-xmlSchemaValidateFile
-
ordered
xmlListAppend
-xmlListInsert
-xmlXPathNextAncestor
-xmlXPathNextFollowing
-xmlXPathNextPreceding
-
ordering
xmlListDataCompare
-
org
XINCLUDE_NS
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter n:

named
xmlAddEncodingAlias
+
names
_xmlDoc
+_xmlParserCtxt
+_xmlSchema
+htmlInitAutoClose
+xmlGetFeaturesList
+xmlHashAddEntry
+xmlHashScan3
+xmlHashScanFull3
+xmlParseNotationType
+xmlValidGetPotentialChildren
+xmlValidGetValidElements
+
namespace-uri
xmlXPathNamespaceURIFunction
+
namespace:
XINCLUDE_NS
XINCLUDE_OLD_NS
+xmlParseAttribute
+xmlParseStartTag
+
namespaces
_xmlParserCtxt
+_xmlSchemaWildcard
+_xmlXPathContext
xmlC14NDocDumpMemory
xmlC14NDocSave
xmlC14NDocSaveTo
xmlC14NExecute
-xmlGetCharEncodingName
-xmlParserHandlePEReference
+xmlCopyDoc
+xmlCopyNode
+xmlDocCopyNode
+xmlFreeNsList
+xmlGetProp
+xmlParseInNodeContext
+xmlReconciliateNs
+
naming
xmlChildrenNode
+xmlRootNode
+
nbval
xmlRegExecErrInfo
+xmlRegExecNextValues
+
ncname
xmlBuildQName
+
ndata
_xmlEntity
+
nearest
xmlNodeGetLang
+xmlNodeGetSpacePreserve
+xmlXPathLangFunction
+
nearly
xmlSAXParseFileWithData
+xmlSAXParseMemoryWithData
+
necessary
_htmlElemDesc
+xmlCheckUTF8
+xmlDebugDumpString
+
need
WITH_TRIO
+XML_SCHEMAS_TYPE_FACETSNEEDVALUE
+XML_SCHEMAS_TYPE_NORMVALUENEEDED
+XML_SUBSTITUTE_BOTH
+XML_SUBSTITUTE_NONE
+XML_SUBSTITUTE_PEREF
+XML_SUBSTITUTE_REF
+xmlCreatePushParserCtxt
+xmlGetNsList
+xmlInitCharEncodingHandlers
+xmlNewDocNode
+xmlNewDocNodeEatName
+xmlNewTextChild
+xmlParseEntityRef
xmlParserHandleReference
-xmlSchemaGetPredefinedType
-xmlTextReaderNodeType
-
oriented
xmlValidityErrorFunc
-xmlValidityWarningFunc
-
origin
_xmlXPathContext
-
original
xmlCharEncodingInputFunc
-xmlCopyError
-xmlGetEncodingAlias
-xmlListMerge
-xmlParseEntityValue
-xmlShellSave
-xmlStrcat
-xmlStrncat
-xmlStrncatNew
-xmlXPathObjectCopy
-
other
XML_SCHEMAS_INCLUDING_CONVERT_NS
-htmlAutoCloseTag
-htmlIsAutoClosed
-htmlNodeStatus
-xmlCatalogAdd
-xmlGcMemSetup
-xmlLoadACatalog
-xmlMemSetup
-xmlNanoFTPUpdateURL
-xmlParseAttValue
-xmlParseAttribute
-xmlParseNamespace
-xmlParseSDDecl
+xmlRegExecErrInfo
+xmlRegExecNextValues
xmlSchemaNewStringValue
-xmlTextReaderIsNamespaceDecl
-xmlTextReaderReadString
-xmlValidateRoot
-xmlXPathIdFunction
-xmlXPathNormalizeFunction
+xmlValidGetValidElements
+xmlXPathNewContext
+
needed
_xmlParserCtxt
+_xmlXPathContext
+htmlEntityLookup
+htmlEntityValueLookup
+xlinkIsLink
+xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
+xmlGetBufferAllocationScheme
+xmlLoadSGMLSuperCatalog
+xmlNewNodeEatName
+xmlParseElementChildrenContentDecl
+xmlParseElementMixedContentDecl
+xmlReconciliateNs
+xmlSchemaSAXPlug
+xmlSetBufferAllocationScheme
+xmlShellPwd
+xmlStrncat
+xmlTextReaderCurrentDoc
+xmlValidCtxtNormalizeAttributeValue
+xmlValidNormalizeAttributeValue
+xmlXPathCastToString
+xmlXPathPopBoolean
+xmlXPathPopExternal
+xmlXPathPopNodeSet
+xmlXPathPopNumber
+xmlXPathPopString
xmlXPathStringFunction
-xmlXPathStringLengthFunction
-
our
setDocumentLocator
-setDocumentLocatorSAXFunc
-xmlSAX2SetDocumentLocator
-
out
UTF8ToHtml
-UTF8Toisolat1
-docbEncodeEntities
-htmlEncodeEntities
-isolat1ToUTF8
-xmlCharEncodingInputFunc
-xmlLockLibrary
-xmlParseEntity
-xmlSAXParseEntity
+
needing
xmlCharEncOutFunc
+xmlURIEscape
+
needle
xmlStrcasestr
+xmlStrstr
+
needs
xmlEntityReferenceFunc
+xmlSchemaValidateFacetWhtsp
+xmlXPathNodeSetFreeNs
+
negated
_xmlSchemaWildcard
+
negative
xmlC14NDocDumpMemory
+xmlC14NDocSave
+xmlC14NDocSaveTo
+xmlC14NExecute
+xmlRegExecErrInfo
+xmlRegExecNextValues
+xmlRegExecPushString
+xmlRegExecPushString2
+xmlRegexpExec
+xmlRegexpIsDeterminist
+xmlShellCmd
+xmlXPathBooleanFunction
+xmlXPathCeilingFunction
+xmlXPathStringEvalNumber
+xmlXPathStringFunction
+
neither
xmlHasNsProp
+xmlHasProp
+xmlParseElementChildrenContentDecl
+xmlTextReaderReadInnerXml
+xmlTextReaderReadOuterXml
+xmlXPathBooleanFunction
+xmlXPathCompareValues
+
nested
xmlParseElementChildrenContentDecl
+xmlParseMarkupDecl
+
net
xmlXPathIsInf
+xmlXPathIsNaN
+
network
htmlCtxtReadFile
+htmlReadFile
+xmlCtxtReadFile
+xmlNoNetExternalEntityLoader
+xmlReadFile
+xmlReaderForFile
+xmlReaderNewFile
+
nice
xmlBuildRelativeURI
+
nillable
XML_SCHEMAS_ELEM_NILLABLE
+
nod
xmlEntityReferenceFunc
+
node-
xmlDOMWrapRemoveNode
+xmlValidGetValidElements
+
node-set?
xmlXPathLocalNameFunction
+xmlXPathNamespaceURIFunction
+
nodelist
xmlParseBalancedChunkMemoryRecover
+
nodes1
xmlXPathDifference
+
nodes2
xmlXPathDifference
+
nodeset
xmlXPathNodeSetFreeNs
+
nodesets
xmlXPathNodeSetMerge
+
non
XML_SCHEMAS_ANYATTR_LAX
+xmlEncodeEntitiesReentrant
+xmlNewChild
+xmlNewTextChild
+xmlXPathParseNCName
+
non-CDATA
_xmlParserCtxt
+
non-NULL
htmlParseEntityRef
+xmlCreatePushParserCtxt
+xmlParseEntityValue
+
non-UTF-8
xmlByteConsumed
+
non-blank
xmlParseElementChildrenContentDecl
+
non-determinist
_xmlValidCtxt
+
non-empty
xmlXPathBooleanFunction
+
non-exclusive
xmlC14NDocDumpMemory
+xmlC14NDocSave
+xmlC14NDocSaveTo
+xmlC14NExecute
+
non-final
xmlRegExecPushString
+xmlRegExecPushString2
+
non-negative
xmlC14NDocSaveTo
+xmlC14NExecute
+
non-normative
xmlDetectCharEncoding
+
non-null
xmlShellPrintNode
+
non-stateless
xmlCharEncOutFunc
+
non-validating
xmlParseAttValue
+xmlParseEntityRef
+
non-zero
initxmlDefaultSAXHandler
+xmlIsLetter
+xmlSAX2InitDefaultSAXHandler
+xmlXPathBooleanFunction
+
none
getNamespace
+xmlDecodeEntities
+xmlGetLastChild
+xmlOutputBufferCreateFilename
+xmlSchemaValueGetAsString
+xmlSchemaValueGetNext
+xmlStringDecodeEntities
+xmlStringLenDecodeEntities
+xmlTextReaderConstXmlLang
+xmlTextReaderXmlLang
+
nor
xmlBufferCreateStatic
+xmlBuildQName
+xmlParseElementChildrenContentDecl
xmlSetGenericErrorFunc
xmlSetStructuredErrorFunc
+xmlTextReaderReadInnerXml
+xmlTextReaderReadOuterXml
+xmlXPathBooleanFunction
+
normal
xmlInitCharEncodingHandlers
+xmlParserInputBufferGrow
+
normalization
xmlNormalizeURIPath
+xmlParseSDDecl
+xmlSchemaValPredefTypeNodeNoNorm
+xmlSchemaValidateFacetWhtsp
+xmlValidCtxtNormalizeAttributeValue
+xmlValidNormalizeAttributeValue
+
normalization:
xmlCurrentChar
+
normalizations
xmlTextReaderNormalization
+
normalize
xmlParseAttValue
+xmlSchemaCollapseString
xmlTextReaderNormalization
-xmlXPathFunction
-xmlXPathNodeSetItem
-
output?
xmlNewTextWriterDoc
-xmlNewTextWriterFilename
-xmlNewTextWriterMemory
-xmlNewTextWriterPushParser
-xmlNewTextWriterTree
-
outside
xmlReconciliateNs
-
overflow
_xmlParserInput
-
override
resolveEntity
-resolveEntitySAXFunc
-xmlCatalogAdd
-xmlSAX2ResolveEntity
-
overwrite
xmlACatalogAdd
-xmlCatalogAdd
-
overwritten
xmlAddEncodingAlias
-
own
_xmlEntity
-_xmlParserCtxt
-resolveEntity
-resolveEntitySAXFunc
-xmlCleanupMemory
-xmlSAX2ResolveEntity
-
owned
xmlClearParserCtxt
-xmlDictOwns
-
owner
ftpListCallback
+
normalize-space
xmlXPathNormalizeFunction
+
normalized
XML_SCHEMAS_TYPE_NORMVALUENEEDED
+xmlParseAttValue
+xmlSchemaValidateFacetWhtsp
+xmlValidCtxtNormalizeAttributeValue
+xmlValidNormalizeAttributeValue
+xmlXPathNormalizeFunction
+
normalizing
xmlCurrentChar
+
normally
c
+xmlValidityErrorFunc
+xmlValidityWarningFunc
+
notations
_xmlDtd
+xmlValidateDtdFinal
+
note
xmlCheckUTF8
+xmlLoadExternalEntity
+
now
XML_CAST_FPTR
+_xmlSchema
+_xmlSchemaElement
+xmlDecodeEntities
+xmlNewGlobalNs
+xmlParserHandleReference
+xmlScanName
+
ns-decls
xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
+
ns-references
xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
xmlDOMWrapRemoveNode
-
ownership
xmlAddAttributeDecl
-
owning
xmlCopyDocElementContent
-xmlFreeDocElementContent
-xmlNewDocFragment
-
owns
XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD
+
nsDef
xmlDOMWrapAdoptNode
+xmlDOMWrapRemoveNode
+
null
xmlHashScan3
+xmlHashScanFull3
+xmlShellDu
+
null-terminated
xmlCheckUTF8
+
number:
LIBXML_VERSION
+
number?
xmlXPathSubstringFunction
+
numbers
xmlLineNumbersDefault
+xmlUTF8Size
+xmlXPathAddValues
+xmlXPathCompareValues
+xmlXPathDivValues
+xmlXPathModValues
+xmlXPathMultValues
+xmlXPathOrderDocElems
+xmlXPathRoundFunction
+xmlXPathSubValues
+xmlXPathValueFlipSign
+
numeric
xmlXPathAddValues
+xmlXPathDivValues
+xmlXPathModValues
+xmlXPathMultValues
+xmlXPathStringFunction
+xmlXPathSubValues
+xmlXPathSubstringFunction
+xmlXPathValueFlipSign

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk21.html b/doc/APIchunk21.html index 5ff249cc..8a44503a 100644 --- a/doc/APIchunk21.html +++ b/doc/APIchunk21.html @@ -7,532 +7,378 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index p-p for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index p-p for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index o-o for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index o-o for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter p:

pairs
startElement
-startElementNsSAX2Func
-startElementSAXFunc
-xmlSAX2StartElement
-xmlSAX2StartElementNs
-
param
_xmlDtd
-
parameter-entity
xmlParseElementChildrenContentDecl
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter o:

object?
xmlXPathNumberFunction
+xmlXPathStringFunction
+
objects
xmlXPathCompareValues
+xmlXPathDivValues
+xmlXPathEqualValues
+xmlXPathFreeNodeSetList
+xmlXPathNotEqualValues
+
objects:
xmlXPathAddValues
+xmlXPathCompareValues
+xmlXPathModValues
+xmlXPathMultValues
+xmlXPathSubValues
+
obligated
xmlParseEntityRef
+
obsolete
_xmlSchemaAttribute
+xmlNormalizeWindowsPath
+
obsolete:
XML_SCHEMAS_ELEM_TOPLEVEL
+
occupied
xmlCanonicPath
+
occur
xmlParseComment
xmlParseMarkupDecl
-
parameters
ATTRIBUTE_UNUSED
-errorSAXFunc
-fatalErrorSAXFunc
-warningSAXFunc
-xmlNewChild
-xmlNewTextChild
-xmlParserError
-xmlParserValidityError
-xmlParserValidityWarning
-xmlParserWarning
+
occured
xmlCtxtGetLastError
+xmlDictCreate
+xmlDictCreateSub
+xmlGetLastError
+xmlHashCreate
+xmlHashCreateDict
+xmlListRemoveFirst
+xmlListRemoveLast
+
occurences
xmlAutomataNewCountTrans
+xmlAutomataNewCountTrans2
+xmlAutomataNewOnceTrans
+xmlAutomataNewOnceTrans2
+
occurred
xmlMemStrdupLoc
+xmlMemoryStrdup
+
occurrence
xmlStrcasestr
+xmlStrchr
+xmlStrstr
+xmlStrsub
+xmlXPathSubstringAfterFunction
+xmlXPathSubstringBeforeFunction
+
occurrences
xmlXPathTranslateFunction
+
occurs
xmlNormalizeURIPath
+xmlParseSDDecl
xmlStrPrintf
xmlStrVPrintf
-xmlTextWriterWriteFormatAttribute
-xmlTextWriterWriteFormatAttributeNS
-xmlTextWriterWriteFormatCDATA
-xmlTextWriterWriteFormatComment
-xmlTextWriterWriteFormatDTD
-xmlTextWriterWriteFormatDTDAttlist
-xmlTextWriterWriteFormatDTDElement
-xmlTextWriterWriteFormatDTDInternalEntity
-xmlTextWriterWriteFormatElement
-xmlTextWriterWriteFormatElementNS
-xmlTextWriterWriteFormatPI
-xmlTextWriterWriteFormatRaw
-xmlTextWriterWriteFormatString
-xmlXPathEvalFunc
-
parent-
_xmlNode
-
parentheses
xmlParseElementChildrenContentDecl
-
parenthesis
xmlSnprintfElementContent
-xmlSprintfElementContent
-
parenthesized
xmlParseElementChildrenContentDecl
-
parents
xmlSearchNs
-xmlSearchNsByHref
-
partial
xmlOutputBufferWrite
-xmlOutputBufferWriteEscape
-xmlOutputBufferWriteString
-
particle
_xmlSchemaAttribute
-_xmlSchemaElement
-
particular
_xmlNodeSet
-
pass
xmlCurrentChar
-xmlRelaxParserSetFlag
-xmlTextReaderSetErrorHandler
-xmlTextReaderSetStructuredErrorHandler
-
passed
CHECK_ARITY
-xmlAutomataNewTransition
-xmlAutomataNewTransition2
-xmlHashScan
-xmlHashScan3
-xmlHashScanFull
-xmlHashScanFull3
-xmlListReverseWalk
-xmlListWalk
-xmlNanoFTPGet
-xmlNanoFTPList
-xmlParseAttValue
-xmlSetGenericErrorFunc
-xmlSetStructuredErrorFunc
-xmlXPathEvalFunc
-xmlXPathIntersection
-
passive
xmlNanoFTPGetConnection
-
password
xmlNanoFTPProxy
-
past
attribute
-attributeSAXFunc
-xmlTextReaderGetRemainder
-
paste
xmlReconciliateNs
-
path
_xmlURI
-xmlCanonicPath
-xmlCheckFilename
-xmlGetNodePath
-xmlLoadACatalog
-xmlLoadCatalog
-xmlLoadSGMLSuperCatalog
-xmlModuleOpen
-xmlNanoFTPGetSocket
-xmlNanoFTPUpdateURL
-xmlNormalizeURIPath
-xmlNormalizeWindowsPath
-xmlParserGetDirectory
-xmlShellPwd
-xmlShellValidate
-xmlTextReaderRelaxNGValidate
-
pattern
XML_SCHEMAS_TYPE_NORMVALUENEEDED
-xmlPatternFromRoot
-xmlPatternGetStreamCtxt
-xmlPatternMatch
-xmlPatternMaxDepth
-xmlPatternStreamable
-xmlPatterncompile
-xmlSchemaValidateFacetWhtsp
-xmlTextReaderPreservePattern
-
pcdata
cdataBlock
-cdataBlockSAXFunc
-xmlSAX2CDataBlock
-
pedantic
_xmlParserCtxt
-xmlPedanticParserDefault
-
per
xmlGetLastError
-xmlParseAttributeType
-xmlValidateElementDecl
-
performance
xmlGetBufferAllocationScheme
-xmlSetBufferAllocationScheme
-
performed
htmlNodeStatus
-
pertain
xmlNewDocTextLen
-
pertains
xmlNodeGetBase
-xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlParseExternalEntity
-
phase
xmlRegNewExecCtxt
-
pic1
xmlBuildRelativeURI
-
piece
xmlNewChild
-xmlNewDocNode
-xmlNewDocNodeEatName
-
place
xmlCatalogAdd
-xmlCopyError
-xmlGcMemGet
-xmlMemGet
-xmlReplaceNode
-
places
xmlStrPrintf
-xmlStrVPrintf
-
plug
xmlXPathFuncLookupFunc
-xmlXPathVariableLookupFunc
-
plus
UTF8ToHtml
+
octets
UTF8ToHtml
+UTF8Toisolat1
docbEncodeEntities
htmlEncodeEntities
-
pnetlib-doc
xmlTextReaderNodeType
-
pointed
xmlPopInput
-
pointers
xmlParserInputGrow
-xmlParserInputRead
-xmlReconciliateNs
-xmlRegExecErrInfo
-xmlRegExecNextValues
-xmlValidGetValidElements
-
points
_xmlChRangeGroup
-
pop
xmlPopInput
-
popped
xmlXPathFunction
-
pops
xmlSkipBlankChars
-
port
_xmlURI
-xmlNanoFTPConnectTo
-xmlNanoFTPProxy
-xmlNanoFTPScanProxy
-xmlNanoFTPUpdateURL
-xmlNanoHTTPScanProxy
-
portable
xmlXPathIsInf
-xmlXPathIsNaN
-
pos
xmlUTF8Strsub
-
position:
xmlXPathSubstringFunction
-
positioned
xmlTextReaderReadString
-
positionned
xmlTextReaderReadAttributeValue
-
positions
xmlUTF8Strsub
-
possible
_xmlSchemaType
-xmlCopyNodeList
-xmlCreateEntityParserCtxt
-xmlParseDefaultDecl
+isolat1ToUTF8
+xmlCharEncodingInputFunc
+xmlCharEncodingOutputFunc
+
of:
xmlParseSDDecl
+
off
xmlGetNoNsProp
+xmlGetNsProp
+xmlGetProp
+xmlHasNsProp
+xmlHasProp
+xmlLineNumbersDefault
xmlParseExternalID
-xmlReconciliateNs
-xmlRegExecErrInfo
-xmlRegExecNextValues
-xmlTextReaderRelaxNGSetSchema
-xmlTextReaderRelaxNGValidate
-xmlValidateDtdFinal
-
possibly
xmlDocGetRootElement
+
okay
_xmlParserCtxt
+
old
_xmlDoc
+globalNamespace
xmlDocSetRootElement
-xmlIsBlankNode
-xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlParseExternalEntity
-xmlSaveToFilename
-xmlXPathStringFunction
-
posteriori
xmlSetNs
-
potential
xmlDebugCheckDocument
-xmlValidGetPotentialChildren
-
potentially
_xmlURI
-
pre-interned
_xmlParserCtxt
-
preallocated
xmlBuildQName
-
precede
xmlParseEntityRef
-xmlParsePEReference
-xmlParserHandlePEReference
-xmlXPathLeading
-xmlXPathLeadingSorted
-xmlXPathNodeLeading
-xmlXPathNodeLeadingSorted
-
preceded
xmlXPathStringFunction
-
precedes
xmlXPathSubstringBeforeFunction
-
preceding
_xmlXPathParserContext
-xmlXPathNextPreceding
-xmlXPathNextPrecedingSibling
-
preceding-sibling
xmlXPathNextPrecedingSibling
-
precisely
xmlXPathSubstringFunction
-
precompiled
_xmlXPathParserContext
-xmlPatternFromRoot
-xmlPatternGetStreamCtxt
-xmlPatternMatch
-xmlPatternMaxDepth
-xmlPatternStreamable
-xmlRegNewExecCtxt
-xmlRelaxNGNewValidCtxt
-xmlSchemaNewValidCtxt
-xmlTextReaderRelaxNGSetSchema
-xmlXPathDebugDumpCompExpr
-
precomputed
xmlSchemaCopyValue
-xmlSchemaGetCanonValue
-xmlSchemaGetCanonValueWhtsp
-xmlSchemaValidateFacet
-xmlSchemaValidateFacetWhtsp
-xmlSchemaValidateLengthFacet
-xmlSchemaValidateLengthFacetWhtsp
-
predefined
XML_XML_NAMESPACE
-xmlCleanupPredefinedEntities
-xmlEncodeEntitiesReentrant
-xmlEncodeSpecialChars
-xmlGetDocEntity
-xmlGetPredefinedEntity
-xmlInitializePredefinedEntities
-xmlParseReference
-xmlSchemaValPredefTypeNode
-xmlSchemaValPredefTypeNodeNoNorm
-xmlSchemaValidatePredefinedType
-
predicate
xmlXPathEvalPredicate
-xmlXPathEvaluatePredicateResult
-xmlXPtrEvalRangePredicate
-
preferably
xmlInitializeCatalog
-xmlLoadCatalog
-xmlLoadCatalogs
-xmlNewPI
-
preference
xmlCatalogGetDefaults
-xmlCatalogSetDefaultPrefer
-xmlCatalogSetDefaults
-
prefixes
xmlC14NDocDumpMemory
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlC14NExecute
-xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-
preparsed
xmlReaderNewWalker
-xmlReaderWalker
-xmlRelaxNGNewDocParserCtxt
-xmlSchemaNewDocParserCtxt
-
prepend
xmlValidGetValidElements
-
present
xmlBufferCreateStatic
-xmlDictLookup
-xmlDictQLookup
-xmlGetUTF8Char
-xmlNewNs
-xmlTextReaderConstValue
-xmlTextReaderValue
-xmlValidateDocument
-xmlValidateDtd
-xmlValidateOneElement
-
preserve
XML_SCHEMAS_FACET_PRESERVE
-XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE
-_xmlParserCtxt
-xmlNodeGetSpacePreserve
-xmlNodeSetSpacePreserve
-xmlParserInputGrow
-xmlParserInputRead
-xmlTextReaderPreserve
-xmlTextReaderPreservePattern
-
preserved
HTML_PRESERVE_NODE
-xmlNewTextChild
-xmlParserInputBufferGrow
-
preserving
xmlNodeGetSpacePreserve
-xmlNodeSetSpacePreserve
-
prev
xmlValidGetValidElements
-
prevent
_xmlParserCtxt
-xmlCleanupParser
-
previous
_xmlAttr
-_xmlAttribute
-_xmlDoc
-_xmlDtd
-_xmlElement
-_xmlEntity
-_xmlNode
-htmlHandleOmittedElem
-xmlAddPrevSibling
-xmlCatalogSetDebug
-xmlCatalogSetDefaultPrefer
-xmlDeregisterNodeDefault
xmlKeepBlanksDefault
xmlLineNumbersDefault
-xmlPedanticParserDefault
-xmlPushInput
-xmlSAXDefaultVersion
-xmlSubstituteEntitiesDefault
-xmlXPathAxisFunc
-
primitive
XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE
-xmlXPathConvertFunc
-
print
xmlShellPrintNode
-xmlSnprintfElementContent
-xmlSprintfElementContent
-
printed
htmlNodeDump
-htmlNodeDumpFile
-htmlNodeDumpFileFormat
-htmlNodeDumpFormatOutput
-htmlNodeDumpOutput
-xmlElemDump
-xmlNodeDump
-xmlNodeDumpOutput
-
prior
xmlSetupParserForBuffer
-
private
xmlCatalogLocalResolve
-xmlCatalogLocalResolveURI
-xmlRelaxParserSetFlag
-
problem
xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlParseCtxtExternalEntity
-xmlParseExternalEntity
-xmlRelaxNGValidateFullElement
-xmlRelaxNGValidatePopElement
-xmlRelaxNGValidatePushCData
-xmlRelaxNGValidatePushElement
-xmlTextReaderGetRemainder
-xmlUTF8Strsub
-xmlValidatePopElement
-xmlValidatePushCData
-xmlValidatePushElement
-
problems
xmlBufferResize
-xmlDebugCheckDocument
-xmlLoadExternalEntity
-xmlValidateDtd
-
procedure
initxmlDefaultSAXHandler
-xmlSAX2InitDefaultSAXHandler
-
process
xmlCleanupParser
-xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-xmlDecodeEntities
-xmlNewTextReaderFilename
-xmlParseAttValue
-xmlParseEntityRef
-xmlRelaxNGNewDocParserCtxt
-xmlSchemaNewDocParserCtxt
-xmlSkipBlankChars
-xmlStringDecodeEntities
-xmlStringLenDecodeEntities
-xmlValidCtxtNormalizeAttributeValue
-xmlValidNormalizeAttributeValue
-
processed
_xmlParserCtxt
-startDocument
-startDocumentSAXFunc
-startElement
-startElementSAXFunc
-xmlBuildURI
-xmlParseAttValue
-xmlSAX2StartDocument
-xmlSAX2StartElement
-xmlTextReaderRelaxNGSetSchema
-xmlTextReaderRelaxNGValidate
-
processing-instruction
xmlXPathIsNodeType
-
processor
xmlCurrentChar
-xmlParseAttValue
-xmlParseEntityRef
-xmlValidCtxtNormalizeAttributeValue
-xmlValidNormalizeAttributeValue
-
procgressed
xmlTextReaderGetRemainder
-
produce
xmlCharEncodingOutputFunc
-xmlStringGetNodeList
-xmlStringLenGetNodeList
-
produced
xmlCharEncodingOutputFunc
-xmlCurrentChar
-
producing
xmlCheckUTF8
-
production:
xmlCheckLanguageID
-
productions
xmlCheckLanguageID
-
program
xmlXPtrNewContext
-
programs
htmlInitAutoClose
+xmlListCopy
+xmlNewGlobalNs
+xmlOutputBufferCreateFilenameDefault
+xmlParserInputBufferCreateFilenameDefault
+xmlParserInputBufferGrow
+xmlParserInputBufferRead
+xmlRegisterNodeDefault
+xmlReplaceNode
+xmlXPathConvertBoolean
+xmlXPathConvertNumber
+xmlXPathConvertString
+
oldNs
xmlDOMWrapAdoptNode
+xmlDOMWrapRemoveNode
+
older
LIBXML_SAX1_ENABLED
+xmlParseNamespace
+
omitted
htmlHandleOmittedElem
+xmlXPathLocalNameFunction
+xmlXPathNamespaceURIFunction
+xmlXPathNormalizeFunction
+xmlXPathStringFunction
+xmlXPathStringLengthFunction
+
once
htmlInitAutoClose
+xmlAutomataNewOnceTrans
+xmlAutomataNewOnceTrans2
+xmlCleanupThreads
+xmlEncodeEntities
xmlInitParser
-
progresses
xmlRegNewExecCtxt
-
progressive
_xmlParserCtxt
-xmlAllocParserInputBuffer
-xmlOutputBufferCreateFd
-xmlOutputBufferCreateFile
-xmlOutputBufferCreateFilename
-xmlOutputBufferCreateIO
-xmlParserInputBufferCreateFd
-xmlParserInputBufferCreateFile
-xmlParserInputBufferCreateFilename
-xmlParserInputBufferCreateIO
-xmlParserInputBufferCreateMem
-xmlParserInputBufferCreateStatic
-xmlParserInputBufferPush
-xmlRegNewExecCtxt
-
prohibited
XML_SCHEMAS_ATTR_USE_PROHIBITED
-
projects
xmlXPathIsInf
-xmlXPathIsNaN
-
prolog
xmlParseDocument
-
prompt
xmlShellReadlineFunc
-
proper
xmlValidateAttributeValue
-
properly
xmlParseElementChildrenContentDecl
-xmlParseMarkupDecl
-xmlReconciliateNs
-
properties
_xmlNode
-xmlAddChild
-xmlAddNextSibling
-xmlAddPrevSibling
-xmlCopyNode
-xmlDocCopyNode
-xmlTextReaderRead
-xmlTextReaderSetParserProp
-
property
_xmlAttr
-_xmlDtd
-xmlAddChild
-xmlFreePropList
-xmlNewDocProp
-xmlNewNsProp
-xmlNewNsPropEatName
-xmlNewProp
-xmlTextReaderGetParserProp
-
protocol
xmlNanoFTPCleanup
-xmlNanoFTPInit
-xmlNanoFTPScanProxy
-xmlNanoFTPUpdateURL
-xmlNanoHTTPCleanup
-xmlNanoHTTPInit
-xmlNanoHTTPScanProxy
-
prototype
xlinkExtendedLinkFunk
-xlinkExtendedLinkSetFunk
-xlinkNodeDetectFunc
-xlinkSimpleLinkFunk
-
provenance
xmlEntityReferenceFunc
-
provide
xmlDocDumpFormatMemory
-xmlDocDumpFormatMemoryEnc
-xmlDocFormatDump
-xmlInputMatchCallback
-xmlNodeDump
-xmlNodeDumpOutput
-xmlOutputMatchCallback
-xmlSaveFormatFile
-xmlSaveFormatFileEnc
-xmlSchemaValidateStream
-xmlUTF8Strloc
-xmlUTF8Strpos
-
provides
endElementNsSAX2Func
+xmlInitializeCatalog
+xmlLoadCatalog
+xmlLoadCatalogs
+xmlParseAttributeType
+xmlParseElementDecl
+xmlParseElementMixedContentDecl
+xmlParsePI
+xmlParseStartTag
+xmlTextReaderCurrentDoc
+xmlTextReaderPreserve
+xmlTextReaderPreservePattern
+xmlValidateDocumentFinal
+xmlValidateDtdFinal
+xmlXPathNodeSetMerge
+xmlXPtrLocationSetMerge
+
ones
XML_COMPLETE_ATTRS
startElementNsSAX2Func
-xmlByteConsumed
-xmlSAX2EndElementNs
-xmlSAX2StartElementNs
-xmlTextReaderByteConsumed
-
providing
INPUT_CHUNK
-
provoked
xmlCheckUTF8
-
proximity
_xmlXPathContext
-
proxy
xmlNanoFTPCleanup
-xmlNanoFTPInit
-xmlNanoFTPProxy
-xmlNanoFTPScanProxy
-xmlNanoHTTPInit
-xmlNanoHTTPScanProxy
-
prune
xmlReplaceNode
-
publicID
xmlParseExternalID
-
pull
xmlParserInputBufferGrow
-
pure
xmlParseCDSect
-
purposes
xmlXPathDebugDumpObject
-
push
LIBXML_PUSH_ENABLED
-_xmlParserCtxt
+xmlCatalogConvert
+xmlConvertSGMLCatalog
+
ononymous
_xmlSchema
+
onto
xmlParserInputBufferGrow
+xmlStreamPush
+xmlStreamPushAttr
+
opaque
_xmlSchema
+_xmlURI
+
open
htmlCtxtReadFd
+htmlDocDump
+htmlReadFd
+xmlCtxtReadFd
+xmlDocDump
+xmlDocFormatDump
+xmlIOFTPOpen
+xmlIOHTTPOpen
+xmlInputOpenCallback
+xmlNanoFTPConnect
+xmlNanoFTPConnectTo
+xmlNanoFTPGetConnection
+xmlNanoHTTPMethod
+xmlNanoHTTPMethodRedir
+xmlNanoHTTPOpen
+xmlNanoHTTPOpenRedir
+xmlOutputOpenCallback
+xmlReadFd
+xmlReaderForFd
+xmlReaderNewFd
+xmlTextWriterEndDocument
+
opening
startElement
+startElementSAXFunc
+xmlParseElementChildrenContentDecl
+xmlSAX2StartElement
+
operands
xmlXPathAddValues
+xmlXPathDivValues
+xmlXPathModValues
+xmlXPathMultValues
+xmlXPathSubValues
+xmlXPathValueFlipSign
+
operating
_xmlParserCtxt
+xmlParserInputBufferGrow
+xmlParserInputBufferPush
+
operation
xmlBuildRelativeURI
+xmlCatalogSetDebug
+xmlTextReaderConstValue
+xmlXPathAddValues
+xmlXPathCompareValues
+xmlXPathConvertBoolean
+xmlXPathConvertNumber
+xmlXPathConvertString
+xmlXPathDivValues
+xmlXPathEqualValues
+xmlXPathModValues
+xmlXPathMultValues
+xmlXPathNotEqualValues
+xmlXPathSubValues
+xmlXPathValueFlipSign
+
operations
xmlModuleClose
+xmlModuleFree
+xmlReconciliateNs
+
operator
xmlXPathCompareValues
+
operators
xmlXPathAddValues
+xmlXPathDivValues
+xmlXPathModValues
+xmlXPathMultValues
+xmlXPathSubValues
+xmlXPathValueFlipSign
+
optimized
xmlXPathNodeSetAddUnique
+
option
xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
+xmlGetLineNo
+xmlSchemaValidCtxtGetOptions
+
optional
XML_SCHEMAS_ATTR_USE_OPTIONAL
docbCreatePushParserCtxt
htmlCreatePushParserCtxt
xmlCreatePushParserCtxt
xmlCtxtResetPush
-xmlParserInputBufferPush
-xmlStreamPop
-xmlXPathEvalExpr
-
pushed
xmlRegExecErrInfo
+xmlDOMWrapAdoptNode
+xmlListCreate
+xmlNanoFTPList
+xmlNewChild
+xmlNewDocNode
+xmlNewDocNodeEatName
+xmlNewDocRawNode
+xmlNewNode
+xmlNewNodeEatName
+xmlNewTextChild
+xmlNodeDumpOutput
+xmlOutputBufferWriteEscape
+xmlParseMisc
+xmlPatterncompile
+xmlSchemaCheckFacet
+xmlSchemaValidateStream
+xmlShellSave
+xmlShellValidate
+xmlURIUnescapeString
+
options
htmlCtxtUseOptions
+xmlCtxtUseOptions
+xmlDOMWrapRemoveNode
+xmlModuleOpen
+xmlSaveToFd
+xmlSaveToFilename
+xmlSaveToIO
+xmlSchemaSetValidOptions
+xmlSchemaValidCtxtGetOptions
+xmlSchemaValidateFile
+
ordered
xmlListAppend
+xmlListInsert
+xmlXPathNextAncestor
+xmlXPathNextFollowing
+xmlXPathNextPreceding
+
ordering
xmlListDataCompare
+
org
XINCLUDE_NS
+XINCLUDE_OLD_NS
+xmlC14NDocDumpMemory
+xmlC14NDocSave
+xmlC14NDocSaveTo
+xmlC14NExecute
+xmlGetCharEncodingName
+xmlParserHandlePEReference
+xmlParserHandleReference
+xmlSchemaGetPredefinedType
+xmlTextReaderNodeType
+
oriented
xmlValidityErrorFunc
+xmlValidityWarningFunc
+
origin
_xmlXPathContext
+
original
xmlCharEncodingInputFunc
+xmlCopyError
+xmlGetEncodingAlias
+xmlListMerge
+xmlParseEntityValue
+xmlSchemaSAXPlug
+xmlSchemaSAXUnplug
+xmlShellSave
+xmlStrcat
+xmlStrncat
+xmlStrncatNew
+xmlXPathObjectCopy
+
other
XML_SCHEMAS_INCLUDING_CONVERT_NS
+htmlAutoCloseTag
+htmlIsAutoClosed
+htmlNodeStatus
+xmlCatalogAdd
+xmlGcMemSetup
+xmlLoadACatalog
+xmlMemSetup
+xmlNanoFTPUpdateURL
+xmlParseAttValue
+xmlParseAttribute
+xmlParseNamespace
+xmlParseSDDecl
+xmlSchemaNewStringValue
+xmlTextReaderIsNamespaceDecl
+xmlTextReaderReadString
+xmlValidateRoot
+xmlXPathIdFunction
+xmlXPathNormalizeFunction
+xmlXPathStringFunction
+xmlXPathStringLengthFunction
+
our
setDocumentLocator
+setDocumentLocatorSAXFunc
+xmlSAX2SetDocumentLocator
+
out
UTF8ToHtml
+UTF8Toisolat1
+docbEncodeEntities
+htmlEncodeEntities
+isolat1ToUTF8
+xmlCharEncodingInputFunc
+xmlLockLibrary
+xmlParseEntity
+xmlSAXParseEntity
+xmlSetGenericErrorFunc
+xmlSetStructuredErrorFunc
+xmlTextReaderNormalization
xmlXPathFunction
-
pushing
xmlParsePEReference
-
put
xmlCatalogAdd
-
putative
xmlCheckUTF8
-
pwd
xmlShellPwd
+xmlXPathNodeSetItem
+
output?
xmlNewTextWriterDoc
+xmlNewTextWriterFilename
+xmlNewTextWriterMemory
+xmlNewTextWriterPushParser
+xmlNewTextWriterTree
+
outside
xmlReconciliateNs
+
overflow
_xmlParserInput
+
override
resolveEntity
+resolveEntitySAXFunc
+xmlCatalogAdd
+xmlSAX2ResolveEntity
+
overwrite
xmlACatalogAdd
+xmlCatalogAdd
+
overwritten
xmlAddEncodingAlias
+
own
_xmlEntity
+_xmlParserCtxt
+resolveEntity
+resolveEntitySAXFunc
+xmlCleanupMemory
+xmlSAX2ResolveEntity
+
owned
xmlClearParserCtxt
+xmlDictOwns
+
owner
ftpListCallback
+xmlDOMWrapRemoveNode
+
ownership
xmlAddAttributeDecl
+
owning
xmlCopyDocElementContent
+xmlFreeDocElementContent
+xmlNewDocFragment
+
owns
XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk22.html b/doc/APIchunk22.html index 05680a8e..b1a6e911 100644 --- a/doc/APIchunk22.html +++ b/doc/APIchunk22.html @@ -7,632 +7,542 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index q-r for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index q-r for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index p-p for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index p-p for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter q:

qualified
XML_SCHEMAS_QUALIF_ATTR
-XML_SCHEMAS_QUALIF_ELEM
-xmlGetDtdQAttrDesc
-xmlNamespaceParseQName
-xmlSplitQName
-xmlSplitQName2
-xmlSplitQName3
-xmlTextReaderConstName
-xmlTextReaderGetAttribute
-xmlTextReaderMoveToAttribute
-xmlTextReaderName
-xmlValidatePopElement
-xmlValidatePushElement
-xmlXPathParseNCName
-
query
_xmlURI
-
quot
xmlParseEntityRef
-xmlParseSDDecl
-xmlParserHandleReference
-
quotation
xmlTextReaderQuoteChar
-
quote
docbEncodeEntities
-htmlEncodeEntities
-xmlBufferWriteQuotedString
-
quoted
xmlBufferWriteQuotedString
-
quotes
xmlParseQuotedString
-

Letter r:

raise
XP_ERROR
-XP_ERROR0
-
raised
_xmlError
-xmlCheckHTTPInput
-xmlNanoFTPUpdateURL
-xmlStructuredErrorFunc
-xmlXPathCheckError
-
range
IS_BYTE_CHAR
-xmlAutomataNewCounterTrans
-xmlBufferAdd
-xmlBufferAddHead
-xmlCharInRange
-xmlTextReaderNormalization
-xmlXPathNodeSetItem
-xmlXPtrLocationSetAdd
-xmlXPtrLocationSetDel
-xmlXPtrLocationSetRemove
-xmlXPtrNewCollapsedRange
-xmlXPtrNewLocationSetNodes
-xmlXPtrNewRange
-xmlXPtrNewRangeNodeObject
-xmlXPtrNewRangeNodePoint
-xmlXPtrNewRangeNodes
-xmlXPtrNewRangePointNode
-xmlXPtrNewRangePoints
-
range-to
xmlXPtrRangeToFunction
-
ranges
_xmlChRangeGroup
-xmlXPtrFreeLocationSet
-xmlXPtrLocationSetMerge
-
rangesets
xmlXPtrLocationSetMerge
-
rather
xmlTextReaderIsNamespaceDecl
-
ratio
xmlGetDocCompressMode
-xmlSetCompressMode
-xmlSetDocCompressMode
-
ration
xmlOutputBufferCreateFilename
-
raw
_xmlParserInputBuffer
-xmlNamespaceParseNCName
-xmlNamespaceParseNSDef
-xmlNamespaceParseQName
-xmlParseCDSect
-xmlParserInputBufferGrow
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter p:

pairs
startElement
+startElementNsSAX2Func
+startElementSAXFunc
+xmlSAX2StartElement
+xmlSAX2StartElementNs
+
param
_xmlDtd
+
parameter-entity
xmlParseElementChildrenContentDecl
+xmlParseMarkupDecl
+
parameters
ATTRIBUTE_UNUSED
+errorSAXFunc
+fatalErrorSAXFunc
+warningSAXFunc
+xmlNewChild
+xmlNewTextChild
+xmlParserError
+xmlParserValidityError
+xmlParserValidityWarning
+xmlParserWarning
+xmlStrPrintf
+xmlStrVPrintf
+xmlTextWriterWriteFormatAttribute
+xmlTextWriterWriteFormatAttributeNS
+xmlTextWriterWriteFormatCDATA
+xmlTextWriterWriteFormatComment
+xmlTextWriterWriteFormatDTD
+xmlTextWriterWriteFormatDTDAttlist
+xmlTextWriterWriteFormatDTDElement
+xmlTextWriterWriteFormatDTDInternalEntity
+xmlTextWriterWriteFormatElement
+xmlTextWriterWriteFormatElementNS
+xmlTextWriterWriteFormatPI
xmlTextWriterWriteFormatRaw
-xmlTextWriterWriteRaw
-xmlTextWriterWriteVFormatRaw
-
re-entrant
xmlLockLibrary
-xmlNewRMutex
-xmlUnlockLibrary
-
reachable
xmlPatternMaxDepth
-
reached
xmlRegExecPushString
-xmlRegExecPushString2
-
read-only
xmlDictCreateSub
-
readable
xmlStrEqual
-
reader-
xmlTextReaderGetRemainder
-
reading
xmlSchemaValidateStream
-xmlShell
-
ready
INPUT_CHUNK
-xmlAutomataCompile
-
realloc
_xmlBuffer
-xmlGcMemGet
-xmlGcMemSetup
-xmlMemGet
-xmlMemRealloc
-xmlMemSetup
-xmlReallocFunc
-xmlReallocLoc
-
reallocated
xmlReallocFunc
-xmlStrncat
-
really
HTML_COMMENT_NODE
-HTML_ENTITY_REF_NODE
-HTML_PI_NODE
-HTML_PRESERVE_NODE
-HTML_TEXT_NODE
-htmlEntityLookup
-htmlEntityValueLookup
-xmlBuildRelativeURI
-xmlCreateEntitiesTable
-
reasonable
xmlBuildRelativeURI
-
received
ftpDataCallback
-xmlNanoHTTPReturnCode
-
receives
xmlParseExternalID
-
receiving
characters
-ignorableWhitespace
-xmlParseExternalID
-xmlSAX2Characters
-xmlSAX2IgnorableWhitespace
-xmlValidGetValidElements
-
reclaim
xmlCleanupParser
-xmlFreeMutex
-xmlFreeRMutex
-
recognized
xmlParseCharEncoding
-
recommendation
xmlDetectCharEncoding
-
recommendation:
xmlValidateAttributeDecl
-xmlValidateElementDecl
-xmlValidateNotationDecl
-xmlValidateOneAttribute
-xmlValidateOneElement
-xmlValidateOneNamespace
-xmlValidateRoot
-
recomputed
xmlBufferAdd
-xmlBufferAddHead
-xmlDictExists
-xmlDictLookup
-
reconciliate
xmlReconciliateNs
-
record
xmlACatalogAdd
-xmlCatalogAdd
-xmlParserAddNodeInfo
-xmlParserFindNodeInfoIndex
-
recover
xmlParseBalancedChunkMemoryRecover
-
recovery
_xmlParserCtxt
-xmlSAXParseDoc
-xmlSAXParseFile
-xmlSAXParseFileWithData
-xmlSAXParseMemory
-xmlSAXParseMemoryWithData
-
recurse
xmlLoadACatalog
+xmlTextWriterWriteFormatString
+xmlXPathEvalFunc
+
parent-
_xmlNode
+
parentheses
xmlParseElementChildrenContentDecl
+
parenthesis
xmlSnprintfElementContent
+xmlSprintfElementContent
+
parenthesized
xmlParseElementChildrenContentDecl
+
parents
xmlSearchNs
+xmlSearchNsByHref
+
partial
xmlOutputBufferWrite
+xmlOutputBufferWriteEscape
+xmlOutputBufferWriteString
+
particle
_xmlSchemaAttribute
+_xmlSchemaElement
+
particular
_xmlNodeSet
+
pass
xmlCurrentChar
+xmlRelaxParserSetFlag
+xmlTextReaderSetErrorHandler
+xmlTextReaderSetStructuredErrorHandler
+
passed
CHECK_ARITY
+xmlAutomataNewTransition
+xmlAutomataNewTransition2
+xmlHashScan
+xmlHashScan3
+xmlHashScanFull
+xmlHashScanFull3
+xmlListReverseWalk
+xmlListWalk
+xmlNanoFTPGet
+xmlNanoFTPList
+xmlParseAttValue
+xmlSetGenericErrorFunc
+xmlSetStructuredErrorFunc
+xmlXPathEvalFunc
+xmlXPathIntersection
+
passive
xmlNanoFTPGetConnection
+
password
xmlNanoFTPProxy
+
past
attribute
+attributeSAXFunc
+xmlTextReaderGetRemainder
+
paste
xmlReconciliateNs
+
path
_xmlURI
+xmlCanonicPath
+xmlCheckFilename
+xmlGetNodePath
+xmlLoadACatalog
xmlLoadCatalog
-xmlSearchNs
-xmlValidateRoot
-
recursive
htmlNodeDump
+xmlLoadSGMLSuperCatalog
+xmlModuleOpen
+xmlNanoFTPGetSocket
+xmlNanoFTPUpdateURL
+xmlNormalizeURIPath
+xmlNormalizeWindowsPath
+xmlParserGetDirectory
+xmlShellPwd
+xmlShellValidate
+xmlTextReaderRelaxNGValidate
+xmlTextReaderSchemaValidate
+
pattern
XML_SCHEMAS_TYPE_NORMVALUENEEDED
+xmlPatternFromRoot
+xmlPatternGetStreamCtxt
+xmlPatternMatch
+xmlPatternMaxDepth
+xmlPatternStreamable
+xmlPatterncompile
+xmlSchemaValidateFacetWhtsp
+xmlTextReaderPreservePattern
+
pcdata
cdataBlock
+cdataBlockSAXFunc
+xmlSAX2CDataBlock
+
pedantic
_xmlParserCtxt
+xmlPedanticParserDefault
+
per
xmlGetLastError
+xmlParseAttributeType
+xmlValidateElementDecl
+
performance
xmlGetBufferAllocationScheme
+xmlSetBufferAllocationScheme
+
performed
htmlNodeStatus
+
pertain
xmlNewDocTextLen
+
pertains
xmlNodeGetBase
+xmlParseBalancedChunkMemory
+xmlParseBalancedChunkMemoryRecover
+xmlParseExternalEntity
+
phase
xmlRegNewExecCtxt
+
pic1
xmlBuildRelativeURI
+
piece
xmlNewChild
+xmlNewDocNode
+xmlNewDocNodeEatName
+
place
xmlCatalogAdd
+xmlCopyError
+xmlGcMemGet
+xmlMemGet
+xmlReplaceNode
+
places
xmlStrPrintf
+xmlStrVPrintf
+
plug
xmlXPathFuncLookupFunc
+xmlXPathVariableLookupFunc
+
plus
UTF8ToHtml
+docbEncodeEntities
+htmlEncodeEntities
+
pnetlib-doc
xmlTextReaderNodeType
+
pointed
xmlPopInput
+
pointers
xmlParserInputGrow
+xmlParserInputRead
+xmlReconciliateNs
+xmlRegExecErrInfo
+xmlRegExecNextValues
+xmlSchemaSAXPlug
+xmlSchemaSAXUnplug
+xmlValidGetValidElements
+
points
_xmlChRangeGroup
+
pop
xmlPopInput
+
popped
xmlXPathFunction
+
pops
xmlSkipBlankChars
+
port
_xmlURI
+xmlNanoFTPConnectTo
+xmlNanoFTPProxy
+xmlNanoFTPScanProxy
+xmlNanoFTPUpdateURL
+xmlNanoHTTPScanProxy
+
portable
xmlXPathIsInf
+xmlXPathIsNaN
+
pos
xmlUTF8Strsub
+
position:
xmlXPathSubstringFunction
+
positioned
xmlTextReaderReadString
+
positionned
xmlTextReaderReadAttributeValue
+
positions
xmlUTF8Strsub
+
possible
_xmlSchemaType
+xmlCopyNodeList
+xmlCreateEntityParserCtxt
+xmlParseDefaultDecl
+xmlParseExternalID
+xmlReconciliateNs
+xmlRegExecErrInfo
+xmlRegExecNextValues
+xmlTextReaderRelaxNGSetSchema
+xmlTextReaderRelaxNGValidate
+xmlTextReaderSchemaValidate
+xmlTextReaderSetSchema
+xmlValidateDtdFinal
+
possibly
xmlDocGetRootElement
+xmlDocSetRootElement
+xmlIsBlankNode
+xmlParseBalancedChunkMemory
+xmlParseBalancedChunkMemoryRecover
+xmlParseExternalEntity
+xmlSaveToFilename
+xmlXPathStringFunction
+
posteriori
xmlSetNs
+
potential
xmlDebugCheckDocument
+xmlValidGetPotentialChildren
+
potentially
_xmlURI
+
pre-interned
_xmlParserCtxt
+
preallocated
xmlBuildQName
+
precede
xmlParseEntityRef
+xmlParsePEReference
+xmlParserHandlePEReference
+xmlXPathLeading
+xmlXPathLeadingSorted
+xmlXPathNodeLeading
+xmlXPathNodeLeadingSorted
+
preceded
xmlXPathStringFunction
+
precedes
xmlXPathSubstringBeforeFunction
+
preceding
_xmlXPathParserContext
+xmlXPathNextPreceding
+xmlXPathNextPrecedingSibling
+
preceding-sibling
xmlXPathNextPrecedingSibling
+
precisely
xmlXPathSubstringFunction
+
precompiled
_xmlXPathParserContext
+xmlPatternFromRoot
+xmlPatternGetStreamCtxt
+xmlPatternMatch
+xmlPatternMaxDepth
+xmlPatternStreamable
+xmlRegNewExecCtxt
+xmlRelaxNGNewValidCtxt
+xmlSchemaNewValidCtxt
+xmlTextReaderRelaxNGSetSchema
+xmlTextReaderSetSchema
+xmlXPathDebugDumpCompExpr
+
precomputed
xmlSchemaCopyValue
+xmlSchemaGetCanonValue
+xmlSchemaGetCanonValueWhtsp
+xmlSchemaValidateFacet
+xmlSchemaValidateFacetWhtsp
+xmlSchemaValidateLengthFacet
+xmlSchemaValidateLengthFacetWhtsp
+
predefined
XML_XML_NAMESPACE
+xmlCleanupPredefinedEntities
+xmlEncodeEntitiesReentrant
+xmlEncodeSpecialChars
+xmlGetDocEntity
+xmlGetPredefinedEntity
+xmlInitializePredefinedEntities
+xmlParseReference
+xmlSchemaValPredefTypeNode
+xmlSchemaValPredefTypeNodeNoNorm
+xmlSchemaValidatePredefinedType
+
predicate
xmlXPathEvalPredicate
+xmlXPathEvaluatePredicateResult
+xmlXPtrEvalRangePredicate
+
preferably
xmlInitializeCatalog
+xmlLoadCatalog
+xmlLoadCatalogs
+xmlNewPI
+
preference
xmlCatalogGetDefaults
+xmlCatalogSetDefaultPrefer
+xmlCatalogSetDefaults
+
prefixes
xmlC14NDocDumpMemory
+xmlC14NDocSave
+xmlC14NDocSaveTo
+xmlC14NExecute
+xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
+
preparsed
xmlReaderNewWalker
+xmlReaderWalker
+xmlRelaxNGNewDocParserCtxt
+xmlSchemaNewDocParserCtxt
+
prepend
xmlValidGetValidElements
+
present
xmlBufferCreateStatic
+xmlDictLookup
+xmlDictQLookup
+xmlGetUTF8Char
+xmlNewNs
+xmlTextReaderConstValue
+xmlTextReaderValue
+xmlValidateDocument
+xmlValidateDtd
+xmlValidateOneElement
+
preserve
XML_SCHEMAS_FACET_PRESERVE
+XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE
+_xmlParserCtxt
+xmlNodeGetSpacePreserve
+xmlNodeSetSpacePreserve
+xmlParserInputGrow
+xmlParserInputRead
+xmlTextReaderPreserve
+xmlTextReaderPreservePattern
+
preserved
HTML_PRESERVE_NODE
+xmlNewTextChild
+xmlParserInputBufferGrow
+
preserving
xmlNodeGetSpacePreserve
+xmlNodeSetSpacePreserve
+
prev
xmlValidGetValidElements
+
prevent
_xmlParserCtxt
+xmlCleanupParser
+
previous
_xmlAttr
+_xmlAttribute
+_xmlDoc
+_xmlDtd
+_xmlElement
+_xmlEntity
+_xmlNode
+htmlHandleOmittedElem
+xmlAddPrevSibling
+xmlCatalogSetDebug
+xmlCatalogSetDefaultPrefer
+xmlDeregisterNodeDefault
+xmlKeepBlanksDefault
+xmlLineNumbersDefault
+xmlPedanticParserDefault
+xmlPushInput
+xmlSAXDefaultVersion
+xmlSubstituteEntitiesDefault
+xmlXPathAxisFunc
+
primitive
XML_SCHEMAS_TYPE_BUILTIN_PRIMITIVE
+xmlXPathConvertFunc
+
print
xmlShellPrintNode
+xmlSnprintfElementContent
+xmlSprintfElementContent
+
printed
htmlNodeDump
htmlNodeDumpFile
htmlNodeDumpFileFormat
htmlNodeDumpFormatOutput
htmlNodeDumpOutput
-htmlParseElement
-xmlCopyDoc
-xmlCopyEnumeration
-xmlCopyNode
-xmlCopyNodeList
-xmlDebugDumpDocument
-xmlDebugDumpDocumentHead
-xmlDebugDumpNode
-xmlDebugDumpNodeList
-xmlDebugDumpOneNode
-xmlDocCopyNode
-xmlDocCopyNodeList
xmlElemDump
-xmlFreeEnumeration
-xmlFreeNode
-xmlFreeNodeList
-xmlNewRMutex
xmlNodeDump
xmlNodeDumpOutput
-xmlParseElement
-xmlParsePEReference
-xmlParserHandlePEReference
-
recursively
xmlLoadACatalog
-xmlParseAttValue
-
redeclared
xmlReconciliateNs
-
redefinition
xmlErrMemory
-
redefinitions
_xmlSchemaType
-
redir
xmlNanoHTTPMethodRedir
-
redirected
xmlNanoHTTPMethodRedir
-xmlNanoHTTPOpenRedir
-xmlNanoHTTPRedir
-
redirection
xmlCheckHTTPInput
-xmlNanoHTTPRedir
-
reentrant
htmlInitAutoClose
-xmlEncodeEntitiesReentrant
-xmlEncodeSpecialChars
-xmlFreeRMutex
-xmlInitParser
-xmlNewRMutex
-xmlRMutexLock
-xmlRMutexUnlock
-
ref
XML_SCHEMAS_ATTR_INTERNAL_RESOLVED
-XML_SCHEMAS_ELEM_INTERNAL_RESOLVED
-_xmlEntity
-xmlAddRef
-xmlFreeRefTable
-xmlNewCharRef
-
referenced
_xmlSchemaAttributeGroup
-xmlLinkGetData
-xmlParseAttValue
-
references
XML_SCHEMAS_ATTR_INTERNAL_RESOLVED
-XML_SCHEMAS_ELEM_CIRCULAR
-XML_SCHEMAS_ELEM_INTERNAL_RESOLVED
-htmlParseEntityRef
-xmlGetRefs
-xmlLoadSGMLSuperCatalog
-xmlNewChild
-xmlNewDocNode
-xmlNewDocNodeEatName
-xmlNodeBufGetContent
-xmlNodeGetContent
-xmlParseAttribute
-xmlParseCharRef
-xmlParseEntityRef
-xmlParseMarkupDecl
-xmlParsePEReference
-xmlParseReference
-xmlParseSDDecl
-xmlParserHandlePEReference
-xmlScanName
-xmlSubstituteEntitiesDefault
-
referencing
xmlGetDocEntity
-xmlGetDtdEntity
-xmlGetParameterEntity
-
referred
xmlParseAttribute
-xmlParseCharRef
-
refresh
xmlParserInputRead
-
refs
_xmlDoc
-_xmlParserCtxt
-
refuse
xmlNewNs
-
regexp
_xmlElement
-xmlAutomataCompile
-xmlRegExecErrInfo
-xmlRegExecNextValues
-xmlRegExecPushString
-xmlRegExecPushString2
-xmlRegFreeRegexp
-xmlRegNewExecCtxt
-xmlRegexpPrint
-
register
xmlXPathRegisterVariableLookup
-
registered
xmlCtxtGetLastError
-xmlCtxtResetLastError
-xmlFindCharEncodingHandler
-xmlGetCharEncodingHandler
-xmlGetLastError
-xmlPopInputCallbacks
-xmlRegisterInputCallbacks
-xmlRegisterOutputCallbacks
-xmlResetLastError
-xmlSearchNs
-xmlTextReaderGetErrorHandler
-xmlXPathRegisteredFuncsCleanup
-xmlXPathRegisteredNsCleanup
-xmlXPathRegisteredVariablesCleanup
-
registers
xmlInitCharEncodingHandlers
-xmlNewCharEncodingHandler
-
registration
XML_SKIP_IDS
-xmlOutputBufferCreateFilenameDefault
-xmlParserInputBufferCreateFilenameDefault
-xmlRegisterNodeDefault
-
regular
LIBXML_REGEXP_ENABLED
-xmlRegFreeExecCtxt
-xmlRegNewExecCtxt
-xmlRegexpCompile
-xmlRegexpExec
-xmlRegexpIsDeterminist
-xmlRegexpPrint
-xmlTextReaderIsNamespaceDecl
-
reinitialize
xmlClearNodeInfoSeq
-xmlClearParserCtxt
-
related
LIBXML_UNICODE_ENABLED
-htmlTagLookup
-xmlCleanupParser
-xmlCleanupThreads
-xmlInitThreads
-xmlNanoHTTPClose
-xmlValidCtxtNormalizeAttributeValue
-xmlValidNormalizeAttributeValue
-
relationships
_htmlElemDesc
-
relative
xmlBuildRelativeURI
-xmlByteConsumed
-xmlTextReaderByteConsumed
-xmlTextReaderGetAttributeNo
-xmlTextReaderMoveToAttributeNo
-xmlUTF8Strloc
+
prior
xmlSetupParserForBuffer
+
private
xmlCatalogLocalResolve
+xmlCatalogLocalResolveURI
+xmlRelaxParserSetFlag
+
problem
xmlParseBalancedChunkMemory
+xmlParseBalancedChunkMemoryRecover
+xmlParseCtxtExternalEntity
+xmlParseExternalEntity
+xmlRelaxNGValidateFullElement
+xmlRelaxNGValidatePopElement
+xmlRelaxNGValidatePushCData
+xmlRelaxNGValidatePushElement
+xmlTextReaderGetRemainder
xmlUTF8Strsub
-
relativeURI
xmlParseURI
-xmlParseURIReference
-
release
xmlClearNodeInfoSeq
-xmlClearParserCtxt
+xmlValidatePopElement
+xmlValidatePushCData
+xmlValidatePushElement
+
problems
xmlBufferResize
+xmlDebugCheckDocument
+xmlLoadExternalEntity
+xmlValidateDtd
+
procedure
initxmlDefaultSAXHandler
+xmlSAX2InitDefaultSAXHandler
+
process
xmlCleanupParser
+xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
xmlDecodeEntities
-xmlUnlockLibrary
-
releases
xmlTextReaderClose
-
reliable
xmlSaveToFilename
-
rely
xmlParseNamespace
-
remainder
xmlTextReaderGetRemainder
-
remaining
xmlCreatePushParserCtxt
-xmlValidityErrorFunc
-xmlValidityWarningFunc
-
remapped
xmlCharEncOutFunc
-
remote
xmlNanoFTPCwd
-
removal
xmlHashRemoveEntry
-xmlHashRemoveEntry2
-xmlHashRemoveEntry3
-
remove
xmlACatalogRemove
-xmlBufferShrink
-xmlCatalogRemove
-xmlDecodeEntities
-xmlEncodeEntities
-xmlHashRemoveEntry
-xmlHashRemoveEntry2
-xmlHashRemoveEntry3
-xmlParseNamespace
-xmlParserInputBufferGrow
-xmlXPathNodeSetRemove
-xmlXPtrLocationSetRemove
-
removed
inputPop
-namePop
-nodePop
-valuePop
-xmlACatalogRemove
-xmlBufferShrink
-xmlCatalogRemove
-xmlCheckLanguageID
-xmlDOMWrapRemoveNode
-xmlFreeDocElementContent
-xmlFreeElementContent
-xmlHandleEntity
-xmlHashRemoveEntry
-xmlHashRemoveEntry2
-xmlHashRemoveEntry3
-xmlHashUpdateEntry
-xmlHashUpdateEntry2
-xmlHashUpdateEntry3
-xmlNewGlobalNs
-xmlParseNamespace
-xmlParseQuotedString
-xmlXPathTranslateFunction
-
removes
xmlParserInputShrink
-
removing
xmlLoadSGMLSuperCatalog
-
rename
_xmlError
-
repeat
xmlXPathAxisFunc
-
replace
XML_SCHEMAS_FACET_REPLACE
-XML_SCHEMAS_TYPE_WHITESPACE_REPLACE
-_xmlParserCtxt
-xmlNodeListGetRawString
-xmlNodeListGetString
-xmlValidGetValidElements
-
replaced
xmlHashUpdateEntry
-xmlHashUpdateEntry2
-xmlHashUpdateEntry3
-xmlNewTextChild
-xmlXPathTranslateFunction
-
replacement
xmlACatalogAdd
-xmlCatalogAdd
-xmlEntityReferenceFunc
-xmlParseAttValue
-xmlParseAttribute
-xmlParseElementChildrenContentDecl
-xmlParseMarkupDecl
-
replaces
DEBUG_MEMORY
-
replacing
xmlEncodeEntitiesReentrant
-xmlEncodeSpecialChars
+xmlNewTextReaderFilename
xmlParseAttValue
+xmlParseEntityRef
+xmlRelaxNGNewDocParserCtxt
+xmlSchemaNewDocParserCtxt
+xmlSkipBlankChars
+xmlStringDecodeEntities
+xmlStringLenDecodeEntities
xmlValidCtxtNormalizeAttributeValue
xmlValidNormalizeAttributeValue
-xmlXPathNormalizeFunction
-
reporting
INPUT_CHUNK
-_xmlXPathContext
-xmlStructuredErrorFunc
-
reports
docbCreatePushParserCtxt
+
processed
_xmlParserCtxt
+startDocument
+startDocumentSAXFunc
+startElement
+startElementSAXFunc
+xmlBuildURI
+xmlParseAttValue
+xmlSAX2StartDocument
+xmlSAX2StartElement
+xmlTextReaderRelaxNGSetSchema
+xmlTextReaderRelaxNGValidate
+xmlTextReaderSchemaValidate
+xmlTextReaderSetSchema
+
processing-instruction
xmlXPathIsNodeType
+
processor
xmlCurrentChar
+xmlParseAttValue
+xmlParseEntityRef
+xmlValidCtxtNormalizeAttributeValue
+xmlValidNormalizeAttributeValue
+
procgressed
xmlTextReaderGetRemainder
+
produce
xmlCharEncodingOutputFunc
+xmlStringGetNodeList
+xmlStringLenGetNodeList
+
produced
xmlCharEncodingOutputFunc
+xmlCurrentChar
+
producing
xmlCheckUTF8
+
production:
xmlCheckLanguageID
+
productions
xmlCheckLanguageID
+
program
xmlXPtrNewContext
+
programs
htmlInitAutoClose
+xmlInitParser
+
progresses
xmlRegNewExecCtxt
+
progressive
_xmlParserCtxt
+xmlAllocParserInputBuffer
+xmlOutputBufferCreateFd
+xmlOutputBufferCreateFile
+xmlOutputBufferCreateFilename
+xmlOutputBufferCreateIO
+xmlParserInputBufferCreateFd
+xmlParserInputBufferCreateFile
+xmlParserInputBufferCreateFilename
+xmlParserInputBufferCreateIO
+xmlParserInputBufferCreateMem
+xmlParserInputBufferCreateStatic
+xmlParserInputBufferPush
+xmlRegNewExecCtxt
+
prohibited
XML_SCHEMAS_ATTR_USE_PROHIBITED
+
projects
xmlXPathIsInf
+xmlXPathIsNaN
+
prolog
xmlParseDocument
+
prompt
xmlShellReadlineFunc
+
proper
xmlValidateAttributeValue
+
properly
xmlParseElementChildrenContentDecl
+xmlParseMarkupDecl
+xmlReconciliateNs
+
properties
_xmlNode
+xmlAddChild
+xmlAddNextSibling
+xmlAddPrevSibling
+xmlCopyNode
+xmlDocCopyNode
+xmlTextReaderRead
+xmlTextReaderSetParserProp
+
property
_xmlAttr
+_xmlDtd
+xmlAddChild
+xmlFreePropList
+xmlNewDocProp
+xmlNewNsProp
+xmlNewNsPropEatName
+xmlNewProp
+xmlTextReaderGetParserProp
+
protocol
xmlNanoFTPCleanup
+xmlNanoFTPInit
+xmlNanoFTPScanProxy
+xmlNanoFTPUpdateURL
+xmlNanoHTTPCleanup
+xmlNanoHTTPInit
+xmlNanoHTTPScanProxy
+
prototype
xlinkExtendedLinkFunk
+xlinkExtendedLinkSetFunk
+xlinkNodeDetectFunc
+xlinkSimpleLinkFunk
+
provenance
xmlEntityReferenceFunc
+
provide
xmlDocDumpFormatMemory
+xmlDocDumpFormatMemoryEnc
+xmlDocFormatDump
+xmlInputMatchCallback
+xmlNodeDump
+xmlNodeDumpOutput
+xmlOutputMatchCallback
+xmlSaveFormatFile
+xmlSaveFormatFileEnc
+xmlSchemaValidateStream
+xmlUTF8Strloc
+xmlUTF8Strpos
+
provides
endElementNsSAX2Func
+startElementNsSAX2Func
+xmlByteConsumed
+xmlSAX2EndElementNs
+xmlSAX2StartElementNs
+xmlTextReaderByteConsumed
+
providing
INPUT_CHUNK
+
provoked
xmlCheckUTF8
+
proximity
_xmlXPathContext
+
proxy
xmlNanoFTPCleanup
+xmlNanoFTPInit
+xmlNanoFTPProxy
+xmlNanoFTPScanProxy
+xmlNanoHTTPInit
+xmlNanoHTTPScanProxy
+
prune
xmlReplaceNode
+
publicID
xmlParseExternalID
+
pull
xmlParserInputBufferGrow
+
pure
xmlParseCDSect
+
purposes
xmlXPathDebugDumpObject
+
push
LIBXML_PUSH_ENABLED
+_xmlParserCtxt
+docbCreatePushParserCtxt
htmlCreatePushParserCtxt
xmlCreatePushParserCtxt
-
repr
xmlSchemaValidateFacet
-xmlSchemaValidateFacetWhtsp
-xmlSchemaValidateLengthFacet
-xmlSchemaValidateLengthFacetWhtsp
-xmlSchemaValidateListSimpleTypeFacet
-
representation
_htmlElemDesc
-xmlSchemaGetCanonValue
-xmlSchemaGetCanonValueWhtsp
-
representations
xmlNewTextChild
-xmlSchemaGetCanonValue
-
represented
xmlParseCharData
-xmlXPathStringFunction
-
represented:
_htmlElemDesc
-
representing
xmlMemBlocks
-xmlMemUsed
-
request
xmlIOHTTPOpenW
-xmlNanoHTTPMethod
-xmlNanoHTTPMethodRedir
-xmlNanoHTTPOpen
-xmlNanoHTTPOpenRedir
-xmlNanoHTTPReturnCode
-
requested
xmlExternalEntityLoader
-xmlIsID
-xmlMallocFunc
-xmlReallocFunc
-
requests
xmlRegisterHTTPPostCallbacks
-
required
XML_SCHEMAS_ATTR_USE_REQUIRED
-htmlRequiredAttrs
-xmlCatalogSetDebug
-xmlSchemaCollapseString
-xmlSchemaWhiteSpaceReplace
-xmlXPathStringFunction
-
requires
XML_SCHEMAS_QUALIF_ATTR
-XML_SCHEMAS_QUALIF_ELEM
-_htmlElemDesc
-xmlC14NDocSaveTo
-xmlC14NExecute
-xmlGetLineNo
-xmlRelaxNGValidatePushElement
-
requred
xmlC14NDocSave
-
reserved
xmlNewTextChild
-xmlURIEscapeStr
-
reset
initGenericErrorDefaultFunc
-xmlCtxtReadFd
-xmlNodeSetBase
-xmlNodeSetName
-xmlNodeSetSpacePreserve
-xmlReadFd
-xmlReaderForFd
-xmlReaderNewFd
-xmlSetGenericErrorFunc
-xmlSetNsProp
-xmlSetProp
-xmlSetStructuredErrorFunc
-xmlStreamPush
-xmlStreamPushAttr
-
resides
xmlTextReaderConstXmlLang
-xmlTextReaderXmlLang
-
resize
xmlBufferResize
-
resolution
resolveEntity
-resolveEntitySAXFunc
-xmlACatalogResolve
-xmlACatalogResolveURI
-xmlCatalogLocalResolve
-xmlCatalogLocalResolveURI
-xmlCatalogResolve
-xmlCatalogResolveURI
-xmlCatalogSetDefaultPrefer
-xmlNoNetExternalEntityLoader
-xmlSAX2ResolveEntity
-
resolveEntity
resolveEntity
-resolveEntitySAXFunc
-
resolved
XML_SCHEMAS_ATTR_INTERNAL_RESOLVED
-XML_SCHEMAS_ELEM_INTERNAL_RESOLVED
-xmlTextReaderLookupNamespace
-
resolver
xmlGetExternalEntityLoader
-xmlSetExternalEntityLoader
-
resources
xmlClearParserCtxt
-xmlFreeMutex
-xmlFreeRMutex
-xmlFreeTextReader
-xmlFreeTextWriter
-xmlOutputBufferClose
-xmlRelaxNGFreeParserCtxt
-xmlRelaxNGFreeValidCtxt
-xmlSchemaFreeParserCtxt
-xmlSchemaFreeValidCtxt
-xmlTextReaderClose
-xmlXIncludeSetFlags
-
respecting
xmlValidGetValidElements
-
response
xmlNanoFTPCheckResponse
-xmlNanoFTPGetResponse
-xmlNanoHTTPContentLength
-
responsible
xmlC14NDocDumpMemory
-xmlCanonicPath
-
restored
xmlTextReaderSetErrorHandler
-xmlTextReaderSetStructuredErrorHandler
-
restrict
xmlParseExternalID
-
restriction
XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION
-XML_SCHEMAS_ELEM_BLOCK_RESTRICTION
-XML_SCHEMAS_ELEM_FINAL_RESTRICTION
-XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION
-XML_SCHEMAS_TYPE_BLOCK_RESTRICTION
-XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION
-XML_SCHEMAS_TYPE_FINAL_RESTRICTION
-
results
xmlXPathEqualValues
-xmlXPathNotEqualValues
-
retValue
xmlSchemaGetCanonValue
-
retrieve
xmlGetGlobalState
-xmlNanoFTPGet
-xmlNanoFTPGetSocket
-
retrieved
xmlHashAddEntry
-xmlHashAddEntry2
-xmlHashAddEntry3
-xmlHashUpdateEntry
-xmlHashUpdateEntry2
-xmlHashUpdateEntry3
-
retry
xmlValidGetValidElements
-
returning
xmlXPathStringFunction
-
reuse
xmlReconciliateNs
-xmlRegExecPushString
-xmlRegExecPushString2
-
reuses
htmlCtxtReadDoc
-htmlCtxtReadFd
-htmlCtxtReadFile
-htmlCtxtReadIO
-htmlCtxtReadMemory
-xmlCtxtReadDoc
-xmlCtxtReadFd
-xmlCtxtReadFile
-xmlCtxtReadIO
-xmlCtxtReadMemory
-xmlReaderNewDoc
-xmlReaderNewFd
-xmlReaderNewFile
-xmlReaderNewIO
-xmlReaderNewMemory
-xmlReaderNewWalker
-
reusing
xmlCleanupParser
-xmlXIncludeProcessNode
-
reverse
xmlListReverseSearch
-xmlListReverseWalk
-xmlXPathNextAncestor
-xmlXPathNextAncestorOrSelf
-xmlXPathNextPreceding
-xmlXPathNextPrecedingSibling
-
rewrite
xmlTextReaderGetRemainder
-
right
xmlAutomataNewCounterTrans
-xmlCheckFilename
-xmlParseCharData
-xmlSetListDoc
-xmlSetTreeDoc
-
role
xlinkSimpleLinkFunk
-
roles
xlinkExtendedLinkFunk
-xlinkExtendedLinkSetFunk
-
rollback
xmlScanName
-
root
externalSubset
-externalSubsetSAXFunc
-internalSubset
-internalSubsetSAXFunc
-xmlDocGetRootElement
-xmlDocSetRootElement
-xmlNewGlobalNs
-xmlParseDocTypeDecl
-xmlParseNamespace
-xmlPatternFromRoot
-xmlSAX2ExternalSubset
-xmlSAX2InternalSubset
-xmlShellPwd
-xmlStreamPush
-xmlStreamPushAttr
-xmlValidateRoot
-xmlXPathNewValueTree
-xmlXPathRoot
-
round
xmlXPathRoundFunction
-
routines
docbSAXParseDoc
-docbSAXParseFile
-htmlSAXParseFile
-xmlGcMemSetup
-xmlMemSetup
-xmlParserHandleReference
-xmlSAXParseDoc
-xmlSAXParseEntity
-xmlSAXParseFile
-xmlSAXParseFileWithData
-xmlSAXParseMemory
-xmlSAXParseMemoryWithData
-xmlSAXUserParseFile
-xmlSAXUserParseMemory
-
rule
xmlParseEntityRef
-xmlParseStartTag
-
rules
XML_CAST_FPTR
-XML_SCHEMAS_ANYATTR_STRICT
-XML_SCHEMAS_ANY_STRICT
-xmlXPathSubstringFunction
-
run
_xmlParserCtxt
-xmlByteConsumed
-
running
xmlKeepBlanksDefault
-
runtime
LIBXML_DEBUG_RUNTIME
-XML_MAX_NAMELEN
+xmlCtxtResetPush
+xmlParserInputBufferPush
+xmlStreamPop
+xmlXPathEvalExpr
+
pushed
xmlRegExecErrInfo
+xmlXPathFunction
+
pushing
xmlParsePEReference
+
put
xmlCatalogAdd
+
putative
xmlCheckUTF8
+
pwd
xmlShellPwd

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk23.html b/doc/APIchunk23.html index 08b5027f..5bd99db8 100644 --- a/doc/APIchunk23.html +++ b/doc/APIchunk23.html @@ -7,857 +7,636 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index s-s for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index s-s for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index q-r for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index q-r for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter s:

s390
XML_CAST_FPTR
-
safe
BAD_CAST
-xmlInitializeCatalog
-xmlLoadCatalog
-xmlLoadCatalogs
-
same
HTML_COMMENT_NODE
-HTML_ENTITY_REF_NODE
-HTML_PI_NODE
-HTML_PRESERVE_NODE
-HTML_TEXT_NODE
-IS_BLANK_CH
-checkNamespace
-xmlParseElementChildrenContentDecl
-xmlParseElementMixedContentDecl
-xmlParseMarkupDecl
-xmlParseStartTag
-xmlReplaceNode
-xmlStrEqual
-xmlStrncatNew
-xmlXPathCmpNodes
-xmlXPathIdFunction
-xmlXPathLangFunction
-xmlXPathNextAncestorOrSelf
-xmlXPathNextFollowing
-xmlXPathNextPreceding
-xmlXPathNormalizeFunction
-
save
htmlNodeDumpFileFormat
-xmlGcMemGet
-xmlMemGet
-xmlNanoHTTPFetch
-xmlShell
-xmlShellSave
-
saved
_htmlElemDesc
-xmlNanoHTTPFetch
-xmlNanoHTTPSave
-xmlSaveFormatFileEnc
-
saves
xmlNanoFTPRead
-xmlNanoHTTPRead
-xmlNanoHTTPSave
-xmlShellWrite
-
saving
LIBXML_OUTPUT_ENABLED
-LIBXML_WRITER_ENABLED
-xmlKeepBlanksDefault
-xmlOutputBufferCreateFd
-xmlOutputBufferCreateFile
-xmlOutputBufferCreateFilename
-xmlOutputBufferCreateIO
-xmlSaveClose
-xmlSaveDoc
-xmlSaveFlush
-xmlSaveSetAttrEscape
-xmlSaveSetEscape
-xmlSaveToFd
-xmlSaveToFilename
-xmlSaveToIO
-xmlSaveTree
-
sax
docbSAXParseDoc
-docbSAXParseFile
-htmlSAXParseDoc
-htmlSAXParseFile
-xmlSAXParseDoc
-xmlSAXParseEntity
-xmlSAXParseFile
-xmlSAXParseFileWithData
-xmlSAXParseMemory
-xmlSAXParseMemoryWithData
-
say
xmlParseElementChildrenContentDecl
-xmlParseMarkupDecl
-
says
xmlParseComment
-
scan
htmlEntityLookup
-htmlEntityValueLookup
-xmlXPathStringEvalNumber
-
scanner
xmlHashScan
-xmlHashScan3
-xmlHashScanFull
-xmlHashScanFull3
-xmlHashScanner
-xmlHashScannerFull
-
scanning
xmlHashScanner
-xmlHashScannerFull
-
scannner
xmlHashScanner
-xmlHashScannerFull
-
schemas
xmlRelaxNGNewDocParserCtxt
-xmlRelaxNGNewMemParserCtxt
-xmlSchemaGetFacetValueAsULong
-xmlSchemaGetValType
-xmlSchemaNewMemParserCtxt
-xmlSchemaValidateDoc
-xmlSchemaValidateFacet
-xmlSchemaValidateFacetWhtsp
-xmlSchemaValidateFile
-xmlSchemaValidateStream
-
scheme
_xmlURI
-xmlBufferSetAllocationScheme
-xmlGetBufferAllocationScheme
-
schemes
xmlParseCharEncoding
-
scope
_xmlXPathContext
-xmlSetNsProp
-xmlTextReaderConstXmlLang
-xmlTextReaderLookupNamespace
-xmlTextReaderXmlLang
-
scoping
xmlNewGlobalNs
-
script
htmlIsScriptAttribute
-
search
XML_SCHEMAS_ELEM_CIRCULAR
-_xmlXPathAxis
-xmlCharInRange
-xmlGetDtdAttrDesc
-xmlGetDtdElementDesc
-xmlGetDtdNotationDesc
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter q:

qualified
XML_SCHEMAS_QUALIF_ATTR
+XML_SCHEMAS_QUALIF_ELEM
xmlGetDtdQAttrDesc
-xmlGetDtdQElementDesc
-xmlListReverseSearch
-xmlListSearch
-xmlSearchNs
-xmlStrcasestr
-xmlStrchr
-xmlStrstr
-
searched
xmlDictCreateSub
-
section
HTML_PRESERVE_NODE
-xmlBuildURI
-xmlCatalogSetDefaultPrefer
-xmlParseCharData
-xmlParseCharEncoding
-xmlTextWriterEndCDATA
-xmlTextWriterStartCDATA
-
sections
xmlKeepBlanksDefault
-xmlNodeGetBase
-
seems
xmlNamespaceParseNCName
-xmlNamespaceParseNSDef
xmlNamespaceParseQName
-xmlScanName
-xmlValidateNotationDecl
-
selection
LIBXML_PATTERN_ENABLED
-
selects
xmlXPathIdFunction
-
self
xmlXPathNextSelf
-
semantic
xmlXPathNodeSetFreeNs
-
sense
xmlCreateEntitiesTable
-
separated
xmlLoadCatalogs
-
separately
xmlSetGenericErrorFunc
-xmlSetStructuredErrorFunc
-xmlValidateAttributeDecl
-xmlValidateOneAttribute
-xmlValidateOneElement
-xmlValidateOneNamespace
-
seq
xmlParseElementChildrenContentDecl
-
sequence
_xmlSchemaElement
-_xmlSchemaFacet
-_xmlSchemaType
-xmlCharEncOutFunc
-xmlClearNodeInfoSeq
-xmlCurrentChar
-xmlGetUTF8Char
-xmlInitNodeInfoSeq
-xmlParseAttValue
-xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlParseInNodeContext
-xmlParserAddNodeInfo
-xmlParserFindNodeInfoIndex
-xmlUTF8Strlen
-xmlUTF8Strsize
-xmlUTF8Strsub
-xmlXPathIdFunction
-
sequences
xmlCheckUTF8
-xmlParseAttValue
-xmlValidCtxtNormalizeAttributeValue
-xmlValidNormalizeAttributeValue
-xmlXPathNormalizeFunction
-
serialization
LIBXML_OUTPUT_ENABLED
-xmlSaveToFd
-xmlSaveToFilename
-xmlSaveToIO
-xmlShellCat
-xmlShellWrite
+xmlSplitQName
+xmlSplitQName2
+xmlSplitQName3
+xmlTextReaderConstName
+xmlTextReaderGetAttribute
+xmlTextReaderMoveToAttribute
+xmlTextReaderName
xmlValidatePopElement
xmlValidatePushElement
-
serializing
xmlSaveToFd
-xmlSaveToFilename
-xmlSaveToIO
-
server
_xmlURI
-xmlNanoFTPCheckResponse
-xmlNanoFTPCloseConnection
-xmlNanoFTPConnectTo
-xmlNanoFTPCwd
-xmlNanoFTPDele
-xmlNanoFTPGet
-xmlNanoFTPGetConnection
-xmlNanoFTPGetResponse
-xmlNanoFTPGetSocket
-xmlNanoFTPList
-xmlNanoFTPQuit
-
set:difference
xmlXPathDifference
-
set:distinct
xmlXPathDistinct
-xmlXPathDistinctSorted
-
set:has-same-node
xmlXPathHasSameNodes
-
set:intersection
xmlXPathIntersection
-
set:leading
xmlXPathLeading
-xmlXPathLeadingSorted
-xmlXPathNodeLeading
-xmlXPathNodeLeadingSorted
-
set:trailing
xmlXPathNodeTrailing
-xmlXPathNodeTrailingSorted
-xmlXPathTrailing
-xmlXPathTrailingSorted
-
sets
initxmlDefaultSAXHandler
-xmlGetUTF8Char
-xmlSAX2InitDefaultSAXHandler
-xmlSchemaValidateLengthFacet
-xmlSchemaValidateLengthFacetWhtsp
-xmlXPathDifference
-xmlXPathIntersection
-
setting
xmlSetGenericErrorFunc
-
setups
xmlParseEncodingDecl
-
sgmlsource
getSystemId
-xmlSAX2GetSystemId
-
shadowed
xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-
shall
_xmlParserCtxt
-
shared
xmlCatalogAdd
-xmlModuleFree
-xmlModuleOpen
-
shares
xmlXPathHasSameNodes
-
shell
DEBUG_MEMORY
-xmlShell
-xmlShellBase
-xmlShellCat
-xmlShellCmd
-xmlShellDir
-xmlShellDu
-xmlShellList
-xmlShellLoad
-xmlShellPwd
-xmlShellReadlineFunc
-xmlShellSave
-xmlShellValidate
-xmlShellWrite
-
shorten
xmlDebugDumpString
-
shorthand
xmlTextReaderConstPrefix
-xmlTextReaderPrefix
-
show
LIBXML_VERSION_EXTRA
-xlinkExtendedLinkFunk
-xmlMemDisplay
-xmlMemShow
-xmlNodeListGetRawString
-xmlNodeListGetString
-xmlShellDu
-
shown
ftpListCallback
-
sibling
_xmlAttr
-_xmlAttribute
-_xmlDoc
-_xmlDtd
-_xmlElement
-_xmlEntity
-_xmlNode
-xmlAddNextSibling
-xmlAddPrevSibling
-xmlSchemaValueAppend
-xmlSchemaValueGetNext
-xmlXPathNextPrecedingSibling
-
siblings
xmlAddSibling
-xmlFreeNodeList
-xmlFreePropList
-xmlXPathNextFollowingSibling
-xmlXPathNextPrecedingSibling
-
sign
xmlXPathStringFunction
-
signal
ATTRIBUTE_UNUSED
-_xmlParserCtxt
-
signature
xmlShellCmd
-xmlShellReadlineFunc
-
signs
xmlNewTextChild
-
similar
xmlGetNoNsProp
-xmlNewNs
-xmlShell
-xmlShellPwd
-xmlValidityErrorFunc
-xmlValidityWarningFunc
-xmlXPathNodeSetGetLength
-xmlXPathNodeSetItem
-
simple
XML_SCHEMAS_TYPE_ABSTRACT
-XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION
-XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION
-xlinkSimpleLinkFunk
-xmlAttrSerializeTxtContent
-xmlFreeMutex
-xmlHashScanner
-xmlIsRef
-xmlMutexLock
-xmlMutexUnlock
-xmlNewMutex
-xmlSchemaGetBuiltInListSimpleTypeItemType
-xmlSchemaNewStringValue
-xmlSchemaValidateListSimpleTypeFacet
-
simpleType
XML_SCHEMAS_TYPE_FINAL_DEFAULT
-XML_SCHEMAS_TYPE_FINAL_LIST
-XML_SCHEMAS_TYPE_FINAL_RESTRICTION
-XML_SCHEMAS_TYPE_FINAL_UNION
-XML_SCHEMAS_TYPE_VARIETY_ABSENT
-XML_SCHEMAS_TYPE_VARIETY_ATOMIC
-XML_SCHEMAS_TYPE_VARIETY_LIST
-XML_SCHEMAS_TYPE_VARIETY_UNION
-
simply
xmlSetGenericErrorFunc
-xmlSetStructuredErrorFunc
-
since
xmlBuildRelativeURI
-xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-xmlParseExternalID
-xmlRelaxNGNewDocParserCtxt
-
single
IS_DIGIT_CH
-xmlCurrentChar
-xmlParseAttValue
-xmlParseElementMixedContentDecl
-xmlValidCtxtNormalizeAttributeValue
-xmlValidNormalizeAttributeValue
-xmlValidateAttributeDecl
-xmlValidateElementDecl
-xmlValidateNotationDecl
-xmlValidateOneAttribute
-xmlValidateOneElement
-xmlValidateOneNamespace
-xmlXPathNewNodeSet
-xmlXPathNormalizeFunction
-xmlXPtrNewCollapsedRange
-xmlXPtrNewLocationSetNodes
-
single-byte
IS_CHAR_CH
-IS_EXTENDER_CH
-IS_PUBIDCHAR_CH
-
site1
xmlBuildRelativeURI
-
site2
xmlBuildRelativeURI
-
sizes
xmlGetBufferAllocationScheme
-xmlSetBufferAllocationScheme
-
skip
xmlSkipBlankChars
-
skipped
xmlParseElementChildrenContentDecl
-xmlParseElementMixedContentDecl
-xmlSkipBlankChars
-
smallest
xmlXPathCeilingFunction
-
socket
xmlCheckFilename
-xmlNanoFTPGetSocket
-
software
LIBXML_TEST_VERSION
-
solution
xmlNormalizeWindowsPath
-
some
XML_SKIP_IDS
-characters
-charactersSAXFunc
-ignorableWhitespace
-ignorableWhitespaceSAXFunc
-xmlBuildRelativeURI
-xmlGcMemSetup
-xmlHandleEntity
-xmlMemSetup
-xmlParseAttributeType
-xmlParserInputDeallocate
-xmlRelaxNGValidatePushCData
-xmlSAX2Characters
-xmlSAX2IgnorableWhitespace
-xmlTextReaderSetParserProp
-xmlValidatePushCData
-xmlXIncludeProcess
-xmlXIncludeProcessFlags
-xmlXIncludeProcessNode
-xmlXIncludeProcessTree
-xmlXIncludeProcessTreeFlags
-
somewhat
xmlCheckLanguageID
-
sorted
xmlParserAddNodeInfo
-xmlParserFindNodeInfoIndex
-xmlXPathDistinct
-xmlXPathDistinctSorted
-xmlXPathLeading
-xmlXPathLeadingSorted
-xmlXPathNodeLeading
-xmlXPathNodeLeadingSorted
-xmlXPathNodeTrailing
-xmlXPathNodeTrailingSorted
-xmlXPathTrailing
-xmlXPathTrailingSorted
-
source
_xmlXPathContext
-htmlCtxtReadIO
-htmlGetMetaEncoding
-htmlReadIO
-xlinkExtendedLinkFunk
-xmlCheckFilename
-xmlCopyError
-xmlCtxtReadIO
-xmlNewTextReader
-xmlReadIO
-xmlReaderForIO
-xmlReaderNewIO
-
sourceDoc
xmlDOMWrapAdoptNode
-
sourceforge
xmlXPathIsInf
-xmlXPathIsNaN
-
spaces
_xmlParserCtxt
-htmlDocContentDumpFormatOutput
-htmlDocContentDumpOutput
-htmlNodeDumpFileFormat
-htmlNodeDumpFormatOutput
-htmlNodeDumpOutput
-htmlSaveFileEnc
-htmlSaveFileFormat
-xmlDocDumpFormatMemory
-xmlDocDumpFormatMemoryEnc
-xmlDocFormatDump
-xmlKeepBlanksDefault
-xmlParseElementChildrenContentDecl
-xmlParseElementMixedContentDecl
-xmlSaveFormatFile
-xmlSaveFormatFileEnc
-xmlSaveFormatFileTo
-xmlSchemaCollapseString
-xmlValidateNCName
-xmlValidateNMToken
-xmlValidateName
-xmlValidateQName
-
span
xmlCurrentChar
-xmlStringCurrentChar
-
spec
xmlCatalogSetDefaultPrefer
-xmlParseComment
-
spec:
IS_BASECHAR
-IS_BLANK
-IS_BYTE_CHAR
-IS_CHAR
-IS_COMBINING
-IS_DIGIT
-IS_EXTENDER
-IS_IDEOGRAPHIC
-IS_LETTER
-IS_PUBIDCHAR
-
special
XML_SKIP_IDS
-XML_XML_ID
-XML_XML_NAMESPACE
-xmlNewChild
-xmlNewDocNode
-xmlNewDocNodeEatName
-xmlTextWriterWriteRawLen
-
specialized
xmlGcMemGet
-xmlGcMemSetup
-
specific
XML_CATALOG_PI
-_xmlValidCtxt
-_xmlXPathContext
-xmlNoNetExternalEntityLoader
-xmlParseNamespace
-xmlSchemaIsBuiltInTypeFacet
-
specification
XML_XML_NAMESPACE
-xmlTextReaderNormalization
-
specifications
xmlParseSDDecl
-
specify
XML_SCHEMAS_TYPE_BLOCK_DEFAULT
-xmlTextReaderLookupNamespace
-xmlTextReaderStandalone
-
specifying
xmlMallocAtomicLoc
-xmlMallocLoc
-xmlMemMalloc
-xmlMemRealloc
-xmlReallocLoc
-
speed
xmlXPathOrderDocElems
-
speedup
xmlTextReaderConstString
-
split
xmlXPathIdFunction
-
stacked
_xmlXPathParserContext
-xmlPushInput
-
stamps
xmlXPathOrderDocElems
-
standalone
_xmlDoc
-_xmlParserCtxt
-_xmlParserInput
-isStandalone
-xmlCurrentChar
+xmlXPathParseNCName
+
query
_xmlURI
+
quot
xmlParseEntityRef
xmlParseSDDecl
-xmlSAX2IsStandalone
-xmlTextReaderStandalone
-
standalone=
xmlParseEntityRef
-xmlParsePEReference
-xmlParserHandlePEReference
-
standalone?
isStandaloneSAXFunc
-
standard
docbParseDocument
-htmlParseDocument
-xmlKeepBlanksDefault
-xmlParseDocument
-xmlXPathSubstringFunction
-
start
_htmlElemDesc
-startDocument
-startDocumentSAXFunc
-startElementNsSAX2Func
-xmlByteConsumed
-xmlDOMWrapAdoptNode
-xmlParseStartTag
-xmlRelaxNGValidatePushElement
-xmlSAX2StartDocument
-xmlSAX2StartElementNs
-xmlTextReaderByteConsumed
-xmlValidatePushElement
-xmlXPtrNewLocationSetNodes
-xmlXPtrNewRange
-
start-tag
xmlParseElement
-xmlParseStartTag
-
started
xmlTextWriterWriteDTDExternalEntity
-
starting
xmlAutomataNewAllTrans
-xmlAutomataNewCountTrans
-xmlAutomataNewCountTrans2
-xmlAutomataNewCountedTrans
+xmlParserHandleReference
+
quotation
xmlTextReaderQuoteChar
+
quote
docbEncodeEntities
+htmlEncodeEntities
+xmlBufferWriteQuotedString
+
quoted
xmlBufferWriteQuotedString
+
quotes
xmlParseQuotedString
+

Letter r:

raise
XP_ERROR
+XP_ERROR0
+
raised
_xmlError
+xmlCheckHTTPInput
+xmlNanoFTPUpdateURL
+xmlStructuredErrorFunc
+xmlXPathCheckError
+
range
IS_BYTE_CHAR
xmlAutomataNewCounterTrans
-xmlAutomataNewEpsilon
-xmlAutomataNewOnceTrans
-xmlAutomataNewOnceTrans2
-xmlAutomataNewTransition
-xmlAutomataNewTransition2
-xmlByteConsumed
-xmlNewCharRef
-xmlNewTextWriterTree
-xmlSaveTree
-xmlSchemaValidateOneElement
-xmlXPathOrderDocElems
-xmlXPathSubstringFunction
+xmlBufferAdd
+xmlBufferAddHead
+xmlCharInRange
+xmlTextReaderNormalization
+xmlXPathNodeSetItem
+xmlXPtrLocationSetAdd
+xmlXPtrLocationSetDel
+xmlXPtrLocationSetRemove
xmlXPtrNewCollapsedRange
+xmlXPtrNewLocationSetNodes
xmlXPtrNewRange
xmlXPtrNewRangeNodeObject
xmlXPtrNewRangeNodePoint
xmlXPtrNewRangeNodes
xmlXPtrNewRangePointNode
xmlXPtrNewRangePoints
-
starts
xmlXPathStartsWithFunction
-
starts-with
xmlXPathStartsWithFunction
-
startup
setDocumentLocator
-setDocumentLocatorSAXFunc
-xmlInitializeCatalog
-xmlLoadCatalog
-xmlLoadCatalogs
-xmlSAX2SetDocumentLocator
-
stashed
xmlNanoHTTPAuthHeader
-
stat
xmlCheckFilename
-
stateful
xmlCharEncodingOutputFunc
-
states
_xmlValidCtxt
-
static
xmlXPathOrderDocElems
-
status
xmlTextReaderIsValid
-xmlTextReaderStandalone
-
stderr
xmlSetGenericErrorFunc
-
stdin
xmlParserInputBufferCreateFilename
-
stdout
htmlSaveFile
-xmlOutputBufferCreateFilename
-xmlSaveFile
-xmlSaveFormatFile
-xmlShell
-
step
xmlValidCtxtNormalizeAttributeValue
-xmlValidNormalizeAttributeValue
-xmlValidateDocumentFinal
-xmlValidateDtdFinal
-
steps
xmlNormalizeURIPath
-xmlValidateDocumentFinal
-
still
xmlModuleFree
-xmlNoNetExternalEntityLoader
-xmlParseNamespace
-xmlReconciliateNs
-
stop
xmlListWalker
-
stops
xmlTextReaderGetRemainder
-
storage
xmlUTF8Strsize
-
store
UTF8ToHtml
-UTF8Toisolat1
-docbEncodeEntities
-htmlEncodeEntities
-htmlParseEntityRef
-isolat1ToUTF8
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlC14NExecute
-xmlCharEncodingInputFunc
-xmlCharEncodingOutputFunc
-xmlGetFeature
-xmlInputReadCallback
-xmlOutputBufferWrite
-xmlOutputBufferWriteEscape
-xmlOutputBufferWriteString
-xmlParseAttribute
-xmlParseEntityValue
-xmlValidGetPotentialChildren
-xmlValidGetValidElements
-
stored
xmlParseElementContentDecl
+
range-to
xmlXPtrRangeToFunction
+
ranges
_xmlChRangeGroup
+xmlXPtrFreeLocationSet
+xmlXPtrLocationSetMerge
+
rangesets
xmlXPtrLocationSetMerge
+
rather
xmlTextReaderIsNamespaceDecl
+
ratio
xmlGetDocCompressMode
+xmlSetCompressMode
+xmlSetDocCompressMode
+
ration
xmlOutputBufferCreateFilename
+
raw
_xmlParserInputBuffer
+xmlNamespaceParseNCName
+xmlNamespaceParseNSDef
+xmlNamespaceParseQName
+xmlParseCDSect
xmlParserInputBufferGrow
-xmlParserInputBufferPush
-xmlParserInputBufferRead
-xmlSAXParseFileWithData
-xmlSAXParseMemoryWithData
-xmlXPathOrderDocElems
-
str
htmlParseEntityRef
-xmlBufferAdd
-
strcasecmp
xmlStrcasecmp
-
strcat
xmlStrcat
-
strchr
xmlStrchr
-
strcmp
xmlStrcmp
-
strdup
xmlCharStrdup
+xmlTextWriterWriteFormatRaw
+xmlTextWriterWriteRaw
+xmlTextWriterWriteVFormatRaw
+
re-entrant
xmlLockLibrary
+xmlNewRMutex
+xmlUnlockLibrary
+
reachable
xmlPatternMaxDepth
+
reached
xmlRegExecPushString
+xmlRegExecPushString2
+
read-only
xmlDictCreateSub
+
readable
xmlStrEqual
+
reader-
xmlTextReaderGetRemainder
+
reading
xmlSchemaValidateStream
+xmlShell
+
ready
INPUT_CHUNK
+xmlAutomataCompile
+
realloc
_xmlBuffer
xmlGcMemGet
xmlGcMemSetup
xmlMemGet
+xmlMemRealloc
xmlMemSetup
-xmlMemStrdupLoc
-xmlMemoryStrdup
-xmlStrdup
-xmlStrdupFunc
-
streamable
xmlPatternStreamable
-xmlSchemaValidateFile
-
streaming
xmlPatternGetStreamCtxt
-
streams
_xmlParserCtxt
-xmlSkipBlankChars
-
strict
XML_SCHEMAS_ANYATTR_STRICT
-XML_SCHEMAS_ANY_STRICT
+xmlReallocFunc
+xmlReallocLoc
+
reallocated
xmlReallocFunc
+xmlStrncat
+
really
HTML_COMMENT_NODE
+HTML_ENTITY_REF_NODE
+HTML_PI_NODE
+HTML_PRESERVE_NODE
+HTML_TEXT_NODE
+htmlEntityLookup
+htmlEntityValueLookup
+xmlBuildRelativeURI
+xmlCreateEntitiesTable
+
reasonable
xmlBuildRelativeURI
+
received
ftpDataCallback
+xmlNanoHTTPReturnCode
+
receives
xmlParseExternalID
+
receiving
characters
+ignorableWhitespace
xmlParseExternalID
-xmlXPathCompareValues
-
string--that
xmlNormalizeURIPath
-
string-length
xmlXPathStringLengthFunction
-
string?
xmlXPathNormalizeFunction
-xmlXPathStringLengthFunction
-
stringi
xmlXPathSubstringAfterFunction
-
strings
_xmlParserCtxt
-xmlDictCreateSub
-xmlGetFeaturesList
-xmlPatterncompile
-xmlRegExecErrInfo
-xmlRegExecNextValues
-xmlRegexpCompile
-xmlStreamPush
-xmlStreamPushAttr
-xmlStrncatNew
-
stripping
xmlXPathNormalizeFunction
-
strncasecmp
xmlStrncasecmp
-
strncat
xmlStrncat
-
strncmp
xmlStrncmp
-
strndup
xmlCharStrndup
-xmlStrndup
-xmlUTF8Strndup
-
strstr
xmlStrcasestr
-xmlStrstr
-
struct
xmlFreeMutex
-xmlFreeURI
-xmlNewMutex
-xmlParserFindNodeInfo
-xmlSchemaGetBuiltInType
-xmlSchemaNewNOTATIONValue
-xmlSchemaNewQNameValue
-xmlSchemaNewStringValue
-
structured
xmlSetStructuredErrorFunc
-
structures
xmlFreeDoc
-xmlFreeNs
-xmlFreeNsList
-xmlLoadACatalog
+xmlSAX2Characters
+xmlSAX2IgnorableWhitespace
+xmlValidGetValidElements
+
reclaim
xmlCleanupParser
+xmlFreeMutex
+xmlFreeRMutex
+
recognized
xmlParseCharEncoding
+
recommendation
xmlDetectCharEncoding
+
recommendation:
xmlValidateAttributeDecl
+xmlValidateElementDecl
+xmlValidateNotationDecl
+xmlValidateOneAttribute
+xmlValidateOneElement
+xmlValidateOneNamespace
+xmlValidateRoot
+
recomputed
xmlBufferAdd
+xmlBufferAddHead
+xmlDictExists
+xmlDictLookup
+
reconciliate
xmlReconciliateNs
+
record
xmlACatalogAdd
+xmlCatalogAdd
+xmlParserAddNodeInfo
+xmlParserFindNodeInfoIndex
+
recover
xmlParseBalancedChunkMemoryRecover
+
recovery
_xmlParserCtxt
+xmlSAXParseDoc
+xmlSAXParseFile
+xmlSAXParseFileWithData
+xmlSAXParseMemory
+xmlSAXParseMemoryWithData
+
recurse
xmlLoadACatalog
+xmlLoadCatalog
+xmlSearchNs
+xmlValidateRoot
+
recursive
htmlNodeDump
+htmlNodeDumpFile
+htmlNodeDumpFileFormat
+htmlNodeDumpFormatOutput
+htmlNodeDumpOutput
+htmlParseElement
+xmlCopyDoc
+xmlCopyEnumeration
+xmlCopyNode
+xmlCopyNodeList
+xmlDebugDumpDocument
+xmlDebugDumpDocumentHead
+xmlDebugDumpNode
+xmlDebugDumpNodeList
+xmlDebugDumpOneNode
+xmlDocCopyNode
+xmlDocCopyNodeList
+xmlElemDump
+xmlFreeEnumeration
+xmlFreeNode
+xmlFreeNodeList
xmlNewRMutex
-xmlRegFreeExecCtxt
-
struture
xmlRelaxNGParse
-xmlSchemaParse
-
stuff
_xmlXPathContext
-xmlParseNamespace
-
style
xmlSAXDefaultVersion
-
sub-elements
_htmlElemDesc
-
subelement
_htmlElemDesc
-htmlDefaultSubelement
-xmlNewDocElementContent
-xmlNewElementContent
-
subelements
_htmlElemDesc
-
subject
xmlParseSDDecl
-xmlRelaxNGParse
-xmlSchemaParse
-
sublanguage
xmlXPathLangFunction
-
submits
xmlRegisterHTTPPostCallbacks
-
subsequent
xmlIOHTTPOpenW
-xmlSetGenericErrorFunc
-xmlSetStructuredErrorFunc
-
subset?
hasExternalSubsetSAXFunc
-
subsets
xmlGetParameterEntity
-xmlValidateDtdFinal
-
substituion
XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION
-
substitute
xmlDOMWrapRemoveNode
-
substituted
XML_SUBSTITUTE_BOTH
-XML_SUBSTITUTE_NONE
-XML_SUBSTITUTE_PEREF
-XML_SUBSTITUTE_REF
+xmlNodeDump
+xmlNodeDumpOutput
+xmlParseElement
+xmlParsePEReference
+xmlParserHandlePEReference
+
recursively
xmlLoadACatalog
+xmlParseAttValue
+
redeclared
xmlReconciliateNs
+
redefinition
xmlErrMemory
+
redefinitions
_xmlSchemaType
+
redir
xmlNanoHTTPMethodRedir
+
redirected
xmlNanoHTTPMethodRedir
+xmlNanoHTTPOpenRedir
+xmlNanoHTTPRedir
+
redirection
xmlCheckHTTPInput
+xmlNanoHTTPRedir
+
reentrant
htmlInitAutoClose
+xmlEncodeEntitiesReentrant
+xmlEncodeSpecialChars
+xmlFreeRMutex
+xmlInitParser
+xmlNewRMutex
+xmlRMutexLock
+xmlRMutexUnlock
+
ref
XML_SCHEMAS_ATTR_INTERNAL_RESOLVED
+XML_SCHEMAS_ELEM_INTERNAL_RESOLVED
+_xmlEntity
+xmlAddRef
+xmlFreeRefTable
+xmlNewCharRef
+
referenced
_xmlSchemaAttributeGroup
+xmlLinkGetData
+xmlParseAttValue
+
references
XML_SCHEMAS_ATTR_INTERNAL_RESOLVED
+XML_SCHEMAS_ELEM_CIRCULAR
+XML_SCHEMAS_ELEM_INTERNAL_RESOLVED
+htmlParseEntityRef
+xmlGetRefs
+xmlLoadSGMLSuperCatalog
+xmlNewChild
+xmlNewDocNode
+xmlNewDocNodeEatName
xmlNodeBufGetContent
xmlNodeGetContent
-xmlParseEntityValue
-
substituting
xmlSubstituteEntitiesDefault
-
substitutionGroup
XML_SCHEMAS_ELEM_INTERNAL_RESOLVED
-
substitutions
XML_SCHEMAS_ELEM_BLOCK_EXTENSION
-xmlStringDecodeEntities
-xmlStringLenDecodeEntities
-xmlXIncludeProcess
-xmlXIncludeProcessFlags
-xmlXIncludeProcessNode
-xmlXIncludeProcessTree
-xmlXIncludeProcessTreeFlags
-
substitutions:
XML_SCHEMAS_ELEM_BLOCK_RESTRICTION
-XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION
-
substring
xmlNodeAddContent
-xmlNodeAddContentLen
-xmlStrsub
+xmlParseAttribute
+xmlParseCharRef
+xmlParseEntityRef
+xmlParseMarkupDecl
+xmlParsePEReference
+xmlParseReference
+xmlParseSDDecl
+xmlParserHandlePEReference
+xmlScanName
+xmlSubstituteEntitiesDefault
+
referencing
xmlGetDocEntity
+xmlGetDtdEntity
+xmlGetParameterEntity
+
referred
xmlParseAttribute
+xmlParseCharRef
+
refresh
xmlParserInputRead
+
refs
_xmlDoc
+_xmlParserCtxt
+
refuse
xmlNewNs
+
regexp
_xmlElement
+xmlAutomataCompile
+xmlRegExecErrInfo
+xmlRegExecNextValues
+xmlRegExecPushString
+xmlRegExecPushString2
+xmlRegFreeRegexp
+xmlRegNewExecCtxt
+xmlRegexpPrint
+
register
xmlXPathRegisterVariableLookup
+
registered
xmlCtxtGetLastError
+xmlCtxtResetLastError
+xmlFindCharEncodingHandler
+xmlGetCharEncodingHandler
+xmlGetLastError
+xmlPopInputCallbacks
+xmlRegisterInputCallbacks
+xmlRegisterOutputCallbacks
+xmlResetLastError
+xmlSearchNs
+xmlTextReaderGetErrorHandler
+xmlXPathRegisteredFuncsCleanup
+xmlXPathRegisteredNsCleanup
+xmlXPathRegisteredVariablesCleanup
+
registers
xmlInitCharEncodingHandlers
+xmlNewCharEncodingHandler
+
registration
XML_SKIP_IDS
+xmlOutputBufferCreateFilenameDefault
+xmlParserInputBufferCreateFilenameDefault
+xmlRegisterNodeDefault
+
regular
LIBXML_REGEXP_ENABLED
+xmlRegFreeExecCtxt
+xmlRegNewExecCtxt
+xmlRegexpCompile
+xmlRegexpExec
+xmlRegexpIsDeterminist
+xmlRegexpPrint
+xmlTextReaderIsNamespaceDecl
+
reinitialize
xmlClearNodeInfoSeq
+xmlClearParserCtxt
+
related
LIBXML_UNICODE_ENABLED
+htmlTagLookup
+xmlCleanupParser
+xmlCleanupThreads
+xmlInitThreads
+xmlNanoHTTPClose
+xmlValidCtxtNormalizeAttributeValue
+xmlValidNormalizeAttributeValue
+
relationships
_htmlElemDesc
+
relative
xmlBuildRelativeURI
+xmlByteConsumed
+xmlTextReaderByteConsumed
+xmlTextReaderGetAttributeNo
+xmlTextReaderMoveToAttributeNo
+xmlUTF8Strloc
xmlUTF8Strsub
-xmlXPathSubstringAfterFunction
-xmlXPathSubstringBeforeFunction
-xmlXPathSubstringFunction
-
substring-after
xmlXPathSubstringAfterFunction
-
substring-before
xmlXPathSubstringBeforeFunction
-
subtraction
xmlXPathSubValues
-
subtree
attribute
-attributeSAXFunc
+
relativeURI
xmlParseURI
+xmlParseURIReference
+
release
xmlClearNodeInfoSeq
+xmlClearParserCtxt
+xmlDecodeEntities
+xmlUnlockLibrary
+
releases
xmlTextReaderClose
+
reliable
xmlSaveToFilename
+
rely
xmlParseNamespace
+
remainder
xmlTextReaderGetRemainder
+
remaining
xmlCreatePushParserCtxt
+xmlValidityErrorFunc
+xmlValidityWarningFunc
+
remapped
xmlCharEncOutFunc
+
remote
xmlNanoFTPCwd
+
removal
xmlHashRemoveEntry
+xmlHashRemoveEntry2
+xmlHashRemoveEntry3
+
remove
xmlACatalogRemove
+xmlBufferShrink
+xmlCatalogRemove
+xmlDecodeEntities
+xmlEncodeEntities
+xmlHashRemoveEntry
+xmlHashRemoveEntry2
+xmlHashRemoveEntry3
+xmlParseNamespace
+xmlParserInputBufferGrow
+xmlXPathNodeSetRemove
+xmlXPtrLocationSetRemove
+
removed
inputPop
+namePop
+nodePop
+valuePop
+xmlACatalogRemove
+xmlBufferShrink
+xmlCatalogRemove
+xmlCheckLanguageID
+xmlDOMWrapRemoveNode
xmlFreeDocElementContent
xmlFreeElementContent
-xmlReconciliateNs
-xmlRelaxNGValidateFullElement
-xmlSaveTree
-xmlSchemaValidateOneElement
-xmlShellDu
-xmlShellWrite
-xmlTextReaderExpand
-xmlTextReaderNext
-xmlTextReaderNextSibling
-xmlValidateElement
-xmlXIncludeProcessNode
-xmlXIncludeProcessTree
-xmlXIncludeProcessTreeFlags
-
succeed
xmlNewTextWriter
-
succeeded
xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-xmlHashAddEntry
-xmlHashAddEntry2
-xmlHashAddEntry3
+xmlHandleEntity
xmlHashRemoveEntry
xmlHashRemoveEntry2
xmlHashRemoveEntry3
xmlHashUpdateEntry
xmlHashUpdateEntry2
xmlHashUpdateEntry3
-xmlSchemaValueAppend
-xmlXPathCompareValues
-
succeeds
xmlCheckFilename
-xmlNewTextWriterPushParser
-
successful
xmlACatalogAdd
-xmlACatalogRemove
-xmlBufferAdd
-xmlBufferAddHead
-xmlBufferCCat
-xmlBufferCat
+xmlNewGlobalNs
+xmlParseNamespace
+xmlParseQuotedString
+xmlXPathTranslateFunction
+
removes
xmlParserInputShrink
+
removing
xmlLoadSGMLSuperCatalog
+
rename
_xmlError
+
repeat
xmlXPathAxisFunc
+
replace
XML_SCHEMAS_FACET_REPLACE
+XML_SCHEMAS_TYPE_WHITESPACE_REPLACE
+_xmlParserCtxt
+xmlNodeListGetRawString
+xmlNodeListGetString
+xmlValidGetValidElements
+
replaced
xmlHashUpdateEntry
+xmlHashUpdateEntry2
+xmlHashUpdateEntry3
+xmlNewTextChild
+xmlSchemaSAXPlug
+xmlXPathTranslateFunction
+
replacement
xmlACatalogAdd
xmlCatalogAdd
-xmlCatalogConvert
-xmlCatalogRemove
-xmlConvertSGMLCatalog
-xmlGetLineNo
-xmlListPushBack
-xmlListPushFront
-xmlSaveSetAttrEscape
-xmlSaveSetEscape
-xmlTextReaderSetParserProp
-xmlUnsetNsProp
-xmlUnsetProp
-
successfully
xmlTextReaderNext
-xmlTextReaderNextSibling
-xmlTextReaderRead
-
succession
xmlAutomataNewCountTrans
-xmlAutomataNewCountTrans2
-xmlAutomataNewOnceTrans
-xmlAutomataNewOnceTrans2
-
successive
xmlAutomataNewCountTrans
-xmlAutomataNewCountTrans2
-xmlAutomataNewOnceTrans
-xmlAutomataNewOnceTrans2
-
such
xmlNewTextChild
-xmlParseEntityRef
-xmlValidityErrorFunc
-xmlValidityWarningFunc
-xmlXPathLangFunction
-xmlXPathNodeSetFreeNs
-xmlXPathRoundFunction
-
suggested
_htmlElemDesc
-
suitable
xmlNewIOInputStream
-xmlRegexpCompile
-
sum
xmlXPathSubstringFunction
-xmlXPathSumFunction
-
super
xmlLoadSGMLSuperCatalog
-
super-strict
xmlCheckUTF8
-
supplied
xmlGetRefs
-
supported
xmlDOMWrapRemoveNode
-xmlInitCharEncodingHandlers
-xmlNanoFTPGetConnection
+xmlEntityReferenceFunc
+xmlParseAttValue
+xmlParseAttribute
+xmlParseElementChildrenContentDecl
+xmlParseMarkupDecl
+
replaces
DEBUG_MEMORY
+
replacing
xmlEncodeEntitiesReentrant
+xmlEncodeSpecialChars
+xmlParseAttValue
+xmlValidCtxtNormalizeAttributeValue
+xmlValidNormalizeAttributeValue
+xmlXPathNormalizeFunction
+
reporting
INPUT_CHUNK
+_xmlXPathContext
+xmlStructuredErrorFunc
+
reports
docbCreatePushParserCtxt
+htmlCreatePushParserCtxt
+xmlCreatePushParserCtxt
+
repr
xmlSchemaValidateFacet
+xmlSchemaValidateFacetWhtsp
+xmlSchemaValidateLengthFacet
+xmlSchemaValidateLengthFacetWhtsp
+xmlSchemaValidateListSimpleTypeFacet
+
representation
_htmlElemDesc
xmlSchemaGetCanonValue
xmlSchemaGetCanonValueWhtsp
-xmlTextReaderNormalization
-
supposed
xmlIsMixedElement
-xmlNewChild
-xmlNewDocNode
-xmlNewDocNodeEatName
-xmlStrcat
-xmlStrdup
-
sure
xmlSaveClose
-xmlSaveFlush
-xmlURIEscape
-xmlXPathNodeSetAddUnique
-
surprising
xmlRegisterCharEncodingHandler
-
surrogate
IS_CHAR
-
switch
xmlKeepBlanksDefault
-xmlParseReference
-xmlPushInput
-
symbol
xmlModuleSymbol
-
synchronizing
xmlNewMutex
-xmlNewRMutex
-
syntax
xmlParseAttributeType
-
systematically
xmlIsID
+
representations
xmlNewTextChild
+xmlSchemaGetCanonValue
+
represented
xmlParseCharData
+xmlXPathStringFunction
+
represented:
_htmlElemDesc
+
representing
xmlMemBlocks
+xmlMemUsed
+
request
xmlIOHTTPOpenW
+xmlNanoHTTPMethod
+xmlNanoHTTPMethodRedir
+xmlNanoHTTPOpen
+xmlNanoHTTPOpenRedir
+xmlNanoHTTPReturnCode
+
requested
xmlExternalEntityLoader
+xmlIsID
+xmlMallocFunc
+xmlReallocFunc
+
requests
xmlRegisterHTTPPostCallbacks
+
required
XML_SCHEMAS_ATTR_USE_REQUIRED
+htmlRequiredAttrs
+xmlCatalogSetDebug
+xmlSchemaCollapseString
+xmlSchemaWhiteSpaceReplace
+xmlXPathStringFunction
+
requires
XML_SCHEMAS_QUALIF_ATTR
+XML_SCHEMAS_QUALIF_ELEM
+_htmlElemDesc
+xmlC14NDocSaveTo
+xmlC14NExecute
+xmlGetLineNo
+xmlRelaxNGValidatePushElement
+
requred
xmlC14NDocSave
+
reserved
xmlNewTextChild
+xmlURIEscapeStr
+
reset
initGenericErrorDefaultFunc
+xmlCtxtReadFd
+xmlNodeSetBase
+xmlNodeSetName
+xmlNodeSetSpacePreserve
+xmlReadFd
+xmlReaderForFd
+xmlReaderNewFd
+xmlSetGenericErrorFunc
+xmlSetNsProp
+xmlSetProp
+xmlSetStructuredErrorFunc
+xmlStreamPush
+xmlStreamPushAttr
+
resides
xmlTextReaderConstXmlLang
+xmlTextReaderXmlLang
+
resize
xmlBufferResize
+
resolution
resolveEntity
+resolveEntitySAXFunc
+xmlACatalogResolve
+xmlACatalogResolveURI
+xmlCatalogLocalResolve
+xmlCatalogLocalResolveURI
+xmlCatalogResolve
+xmlCatalogResolveURI
+xmlCatalogSetDefaultPrefer
+xmlNoNetExternalEntityLoader
+xmlSAX2ResolveEntity
+
resolveEntity
resolveEntity
+resolveEntitySAXFunc
+
resolved
XML_SCHEMAS_ATTR_INTERNAL_RESOLVED
+XML_SCHEMAS_ELEM_INTERNAL_RESOLVED
+xmlTextReaderLookupNamespace
+
resolver
xmlGetExternalEntityLoader
+xmlSetExternalEntityLoader
+
resources
xmlClearParserCtxt
+xmlFreeMutex
+xmlFreeRMutex
+xmlFreeTextReader
+xmlFreeTextWriter
+xmlOutputBufferClose
+xmlRelaxNGFreeParserCtxt
+xmlRelaxNGFreeValidCtxt
+xmlSchemaFreeParserCtxt
+xmlSchemaFreeValidCtxt
+xmlTextReaderClose
+xmlXIncludeSetFlags
+
respecting
xmlValidGetValidElements
+
response
xmlNanoFTPCheckResponse
+xmlNanoFTPGetResponse
+xmlNanoHTTPContentLength
+
responsible
xmlC14NDocDumpMemory
+xmlCanonicPath
+
restored
xmlSchemaSAXUnplug
+xmlTextReaderSetErrorHandler
+xmlTextReaderSetStructuredErrorHandler
+
restrict
xmlParseExternalID
+
restriction
XML_SCHEMAS_BLOCK_DEFAULT_RESTRICTION
+XML_SCHEMAS_ELEM_BLOCK_RESTRICTION
+XML_SCHEMAS_ELEM_FINAL_RESTRICTION
+XML_SCHEMAS_FINAL_DEFAULT_RESTRICTION
+XML_SCHEMAS_TYPE_BLOCK_RESTRICTION
+XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION
+XML_SCHEMAS_TYPE_FINAL_RESTRICTION
+
results
xmlXPathEqualValues
+xmlXPathNotEqualValues
+
retValue
xmlSchemaGetCanonValue
+
retrieve
xmlGetGlobalState
+xmlNanoFTPGet
+xmlNanoFTPGetSocket
+
retrieved
xmlHashAddEntry
+xmlHashAddEntry2
+xmlHashAddEntry3
+xmlHashUpdateEntry
+xmlHashUpdateEntry2
+xmlHashUpdateEntry3
+
retry
xmlValidGetValidElements
+
returning
xmlXPathStringFunction
+
reuse
xmlReconciliateNs
+xmlRegExecPushString
+xmlRegExecPushString2
+
reuses
htmlCtxtReadDoc
+htmlCtxtReadFd
+htmlCtxtReadFile
+htmlCtxtReadIO
+htmlCtxtReadMemory
+xmlCtxtReadDoc
+xmlCtxtReadFd
+xmlCtxtReadFile
+xmlCtxtReadIO
+xmlCtxtReadMemory
+xmlReaderNewDoc
+xmlReaderNewFd
+xmlReaderNewFile
+xmlReaderNewIO
+xmlReaderNewMemory
+xmlReaderNewWalker
+
reusing
xmlCleanupParser
+xmlXIncludeProcessNode
+
reverse
xmlListReverseSearch
+xmlListReverseWalk
+xmlXPathNextAncestor
+xmlXPathNextAncestorOrSelf
+xmlXPathNextPreceding
+xmlXPathNextPrecedingSibling
+
rewrite
xmlTextReaderGetRemainder
+
right
xmlAutomataNewCounterTrans
+xmlCheckFilename
+xmlParseCharData
+xmlSetListDoc
+xmlSetTreeDoc
+
role
xlinkSimpleLinkFunk
+
roles
xlinkExtendedLinkFunk
+xlinkExtendedLinkSetFunk
+
rollback
xmlScanName
+
root
externalSubset
+externalSubsetSAXFunc
+internalSubset
+internalSubsetSAXFunc
+xmlDocGetRootElement
+xmlDocSetRootElement
+xmlNewGlobalNs
+xmlParseDocTypeDecl
+xmlParseNamespace
+xmlPatternFromRoot
+xmlSAX2ExternalSubset
+xmlSAX2InternalSubset
+xmlShellPwd
+xmlStreamPush
+xmlStreamPushAttr
+xmlValidateRoot
+xmlXPathNewValueTree
+xmlXPathRoot
+
round
xmlXPathRoundFunction
+
routines
docbSAXParseDoc
+docbSAXParseFile
+htmlSAXParseFile
+xmlGcMemSetup
+xmlMemSetup
+xmlParserHandleReference
+xmlSAXParseDoc
+xmlSAXParseEntity
+xmlSAXParseFile
+xmlSAXParseFileWithData
+xmlSAXParseMemory
+xmlSAXParseMemoryWithData
+xmlSAXUserParseFile
+xmlSAXUserParseMemory
+
rule
xmlParseEntityRef
+xmlParseStartTag
+
rules
XML_CAST_FPTR
+XML_SCHEMAS_ANYATTR_STRICT
+XML_SCHEMAS_ANY_STRICT
+xmlXPathSubstringFunction
+
run
_xmlParserCtxt
+xmlByteConsumed
+
running
xmlKeepBlanksDefault
+
runtime
LIBXML_DEBUG_RUNTIME
+XML_MAX_NAMELEN

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk24.html b/doc/APIchunk24.html index 4e05ba0f..2d52d0d2 100644 --- a/doc/APIchunk24.html +++ b/doc/APIchunk24.html @@ -7,422 +7,860 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index t-t for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index t-t for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index s-s for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index s-s for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter t:

tag
_htmlElemDesc
-htmlAutoCloseTag
-htmlIsAutoClosed
-htmlTagLookup
-startElement
-startElementSAXFunc
-xmlNodeSetName
-xmlParseEndTag
-xmlParseStartTag
-xmlSAX2StartElement
-xmlTextWriterFullEndElement
-
tagged
isStandalone
-isStandaloneSAXFunc
-xmlNewNsProp
-xmlNewNsPropEatName
-xmlSAX2IsStandalone
-
tags
htmlAutoCloseTag
-htmlGetMetaEncoding
-htmlHandleOmittedElem
-htmlInitAutoClose
-htmlIsAutoClosed
-htmlSetMetaEncoding
-
take
xmlLockLibrary
-
takes
xmlSchemaValidateFacetWhtsp
-
tell
XML_COMPLETE_ATTRS
-XML_DETECT_IDS
-XML_SKIP_IDS
-_htmlElemDesc
-
tells
xmlTextReaderPreserve
-xmlTextReaderPreservePattern
-
temporary
_xmlValidCtxt
-_xmlXPathContext
-xmlIOHTTPOpenW
-
terminal
xmlRegExecErrInfo
-xmlRegExecNextValues
-
terminated
htmlCtxtReadDoc
-htmlReadDoc
-startElement
-startElementSAXFunc
-xmlBufferCCat
-xmlBufferCat
-xmlCtxtReadDoc
-xmlDocDumpMemory
-xmlGetNsList
-xmlOutputBufferWriteEscape
-xmlOutputBufferWriteString
-xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlReadDoc
-xmlReaderForDoc
-xmlReaderNewDoc
-xmlSAX2StartElement
-xmlStrdupFunc
-
termination
xmlStrcat
-xmlStrdup
-
terms
xmlBuildRelativeURI
-
test
xmlParserHandleReference
-xmlXPathEqualValues
-xmlXPathNotEqualValues
-
tested
_xmlParserInput
-
testing
xmlRegexpCompile
-
text-node
xmlIsBlankNode
-
textDecl?
xmlParseExternalSubset
-
than
xmlCheckUTF8
-xmlNewNs
-xmlParseAttribute
-xmlParseAttributeType
-xmlParseElementDecl
-xmlParseElementMixedContentDecl
-xmlParseSDDecl
-xmlParseStartTag
-xmlSetGenericErrorFunc
-xmlStrEqual
-xmlTextReaderIsNamespaceDecl
-xmlXPathCeilingFunction
-xmlXPathCompareValues
-xmlXPathFloorFunction
-xmlXPathSubstringFunction
-xmlXPathTranslateFunction
-
their
xmlCharEncOutFunc
-xmlEncodeEntities
-xmlEncodeEntitiesReentrant
-xmlLoadCatalogs
-xmlNewTextChild
-xmlNodeListGetRawString
-xmlNodeListGetString
-xmlParseEntityRef
-xmlXPathAddValues
-xmlXPathDivValues
-xmlXPathIdFunction
-xmlXPathModValues
-xmlXPathMultValues
-xmlXPathSubValues
-xmlXPathValueFlipSign
-
them
xmlNanoFTPRead
-xmlNanoHTTPRead
-xmlParseAttValue
-xmlParseAttributeType
-xmlRegExecErrInfo
-xmlRegExecNextValues
-
these
_htmlElemDesc
-xmlCheckUTF8
-xmlParseSDDecl
-
they
_htmlElemDesc
-xmlCreatePushParserCtxt
-xmlStrEqual
-xmlStrQEqual
-xmlStrcat
-xmlStrdup
-
third
xmlHashAddEntry3
-xmlHashLookup3
-xmlHashQLookup3
-xmlHashRemoveEntry3
-xmlHashScan3
-xmlHashScanFull3
-xmlHashScannerFull
-xmlHashUpdateEntry3
-xmlXPathSubstringFunction
-xmlXPathTranslateFunction
-
those
xmlCheckLanguageID
-xmlKeepBlanksDefault
-xmlParseSDDecl
-xmlSearchNs
-xmlXPathSubstringFunction
-
though
xmlDocDumpMemory
-xmlNoNetExternalEntityLoader
-
thread
LIBXML_THREAD_ENABLED
-xmlCleanupThreads
-xmlGetGlobalState
-xmlGetLastError
-xmlGetThreadId
-xmlInitThreads
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter s:

s390
XML_CAST_FPTR
+
safe
BAD_CAST
xmlInitializeCatalog
-xmlIsMainThread
xmlLoadCatalog
xmlLoadCatalogs
-xmlSetGenericErrorFunc
-xmlSetStructuredErrorFunc
-
through
xmlBuildRelativeURI
-xmlCreatePushParserCtxt
-xmlDecodeEntities
-xmlNormalizeURIPath
-
thumblers
xmlShellPwd
-
thus
xmlDOMWrapRemoveNode
-xmlNewRMutex
-xmlXPathNextAncestor
-xmlXPathNextAncestorOrSelf
-xmlXPathNextDescendantOrSelf
-
time
xmlXPathAxisFunc
-
title
xlinkSimpleLinkFunk
-
titles
xlinkExtendedLinkFunk
-xlinkExtendedLinkSetFunk
-
todo:
_xmlError
-
token
xmlAutomataNewCountTrans
-xmlAutomataNewCountTrans2
-xmlAutomataNewOnceTrans
-xmlAutomataNewOnceTrans2
-xmlFreeMutex
-xmlMutexLock
-xmlMutexUnlock
-xmlNewMutex
-xmlRegExecPushString
-xmlRegExecPushString2
-
token_r
xmlNewRMutex
-xmlRMutexLock
-xmlRMutexUnlock
-
tokens
xmlParseEnumerationType
-xmlXPathIdFunction
-
too
DEBUG_MEMORY
-htmlNodeDump
-htmlNodeDumpFile
-htmlNodeDumpFileFormat
-htmlNodeDumpFormatOutput
-htmlNodeDumpOutput
-xmlCopyDoc
-xmlElemDump
-xmlFreeNode
-xmlFreeNodeList
-xmlFreeProp
-xmlFreePropList
-xmlGetDocEntity
-xmlNodeDump
-xmlNodeDumpOutput
+
same
HTML_COMMENT_NODE
+HTML_ENTITY_REF_NODE
+HTML_PI_NODE
+HTML_PRESERVE_NODE
+HTML_TEXT_NODE
+IS_BLANK_CH
+checkNamespace
+xmlParseElementChildrenContentDecl
xmlParseElementMixedContentDecl
-xmlRemoveProp
-
top
CAST_TO_BOOLEAN
-CAST_TO_NUMBER
-CAST_TO_STRING
-CHECK_TYPE
-CHECK_TYPE0
-XML_SCHEMAS_ELEM_TOPLEVEL
-inputPop
-inputPush
-namePop
-namePush
-nodePop
-nodePush
-valuePop
-valuePush
-xmlNamespaceParseNCName
-xmlNamespaceParseNSDef
-xmlNamespaceParseQName
-xmlPopInputCallbacks
-xmlPushInput
-xmlReconciliateNs
-xmlSetTreeDoc
-
total
_xmlOutputBuffer
-xmlGetFeaturesList
-xmlUTF8Strsub
-
touch
_xmlParserCtxt
-
track
xmlEntityReferenceFunc
-
tracking
xmlParserPrintFileContext
-
trailing
xmlParseAttValue
-xmlValidCtxtNormalizeAttributeValue
-xmlValidNormalizeAttributeValue
-xmlXPathNodeTrailing
-xmlXPathNodeTrailingSorted
-xmlXPathNormalizeFunction
-xmlXPathTrailing
-xmlXPathTrailingSorted
-
trancoding
xmlSaveFileTo
-xmlSaveFormatFileTo
-
transaction
xmlNanoHTTPSave
-
transcoding
UTF8ToHtml
-UTF8Toisolat1
-docbEncodeEntities
-htmlEncodeEntities
-xmlCharEncFirstLine
-xmlCharEncInFunc
-xmlCharEncOutFunc
-xmlCharEncodingInputFunc
-xmlCharEncodingOutputFunc
-xmlOutputBufferWrite
-xmlOutputBufferWriteEscape
-xmlOutputBufferWriteString
-xmlParserInputBufferGrow
-xmlParserInputBufferPush
-xmlParserInputBufferRead
-
transfered
xmlParsePI
-
transformation
xmlCharEncCloseFunc
-xmlCharEncFirstLine
-xmlCharEncInFunc
-xmlCharEncOutFunc
-
transformed
xmlRelaxNGDumpTree
-
transitions
xmlAutomataNewAllTrans
-xmlRegExecErrInfo
-xmlRegExecNextValues
-
translate
xmlXPathTranslateFunction
-
translation
xmlURIUnescapeString
-
transmit
errorSAXFunc
-fatalErrorSAXFunc
-warningSAXFunc
-xmlParserError
-xmlParserValidityError
-xmlParserValidityWarning
-xmlParserWarning
-
transport
xmlNanoFTPClose
-
traversal
xmlXPathAxisFunc
-xmlXPathNextAncestor
+xmlParseMarkupDecl
+xmlParseStartTag
+xmlReplaceNode
+xmlStrEqual
+xmlStrncatNew
+xmlXPathCmpNodes
+xmlXPathIdFunction
+xmlXPathLangFunction
xmlXPathNextAncestorOrSelf
-xmlXPathNextAttribute
-xmlXPathNextChild
-xmlXPathNextDescendant
-xmlXPathNextDescendantOrSelf
xmlXPathNextFollowing
-xmlXPathNextFollowingSibling
-xmlXPathNextNamespace
-xmlXPathNextParent
xmlXPathNextPreceding
-xmlXPathNextPrecedingSibling
-xmlXPathNextSelf
-xmlXPtrNewContext
-
traverse
xmlXPathAxisFunc
-
treaming
_xmlParserCtxt
-
treated
xmlParseAttValue
-
tries
INPUT_CHUNK
-xlinkIsLink
-xmlCleanupParser
-xmlNanoFTPRead
+xmlXPathNormalizeFunction
+
save
htmlNodeDumpFileFormat
+xmlGcMemGet
+xmlMemGet
+xmlNanoHTTPFetch
+xmlShell
+xmlShellSave
+
saved
_htmlElemDesc
+xmlNanoHTTPFetch
+xmlNanoHTTPSave
+xmlSaveFormatFileEnc
+
saves
xmlNanoFTPRead
xmlNanoHTTPRead
-xmlParserInputGrow
+xmlNanoHTTPSave
+xmlShellWrite
+
saving
LIBXML_OUTPUT_ENABLED
+LIBXML_WRITER_ENABLED
+xmlKeepBlanksDefault
+xmlOutputBufferCreateFd
+xmlOutputBufferCreateFile
+xmlOutputBufferCreateFilename
+xmlOutputBufferCreateIO
+xmlSaveClose
+xmlSaveDoc
+xmlSaveFlush
+xmlSaveSetAttrEscape
+xmlSaveSetEscape
+xmlSaveToFd
+xmlSaveToFilename
+xmlSaveToIO
+xmlSaveTree
+
sax
docbSAXParseDoc
+docbSAXParseFile
+htmlSAXParseDoc
+htmlSAXParseFile
xmlSAXParseDoc
+xmlSAXParseEntity
xmlSAXParseFile
xmlSAXParseFileWithData
xmlSAXParseMemory
xmlSAXParseMemoryWithData
-
trio
WITHOUT_TRIO
-WITH_TRIO
-xmlXPathIsInf
-xmlXPathIsNaN
-
troubles
_xmlParserInput
+
say
xmlParseElementChildrenContentDecl
+xmlParseMarkupDecl
+
says
xmlParseComment
+
scan
htmlEntityLookup
+htmlEntityValueLookup
+xmlXPathStringEvalNumber
+
scanner
xmlHashScan
+xmlHashScan3
+xmlHashScanFull
+xmlHashScanFull3
+xmlHashScanner
+xmlHashScannerFull
+
scanning
xmlHashScanner
+xmlHashScannerFull
+
scannner
xmlHashScanner
+xmlHashScannerFull
+
schemas
xmlRelaxNGNewDocParserCtxt
+xmlRelaxNGNewMemParserCtxt
+xmlSchemaGetFacetValueAsULong
+xmlSchemaGetValType
+xmlSchemaNewMemParserCtxt
+xmlSchemaValidateDoc
+xmlSchemaValidateFacet
+xmlSchemaValidateFacetWhtsp
+xmlSchemaValidateFile
+xmlSchemaValidateStream
+xmlTextReaderSchemaValidate
+
scheme
_xmlURI
+xmlBufferSetAllocationScheme
+xmlGetBufferAllocationScheme
+
schemes
xmlParseCharEncoding
+
scope
_xmlXPathContext
+xmlSetNsProp
+xmlTextReaderConstXmlLang
+xmlTextReaderLookupNamespace
+xmlTextReaderXmlLang
+
scoping
xmlNewGlobalNs
+
script
htmlIsScriptAttribute
+
search
XML_SCHEMAS_ELEM_CIRCULAR
+_xmlXPathAxis
+xmlCharInRange
+xmlGetDtdAttrDesc
+xmlGetDtdElementDesc
+xmlGetDtdNotationDesc
+xmlGetDtdQAttrDesc
+xmlGetDtdQElementDesc
+xmlListReverseSearch
+xmlListSearch
xmlSearchNs
-
try
CAST_TO_BOOLEAN
-CAST_TO_NUMBER
-CAST_TO_STRING
-UTF8ToHtml
-UTF8Toisolat1
+xmlStrcasestr
+xmlStrchr
+xmlStrstr
+
searched
xmlDictCreateSub
+
section
HTML_PRESERVE_NODE
+xmlBuildURI
+xmlCatalogSetDefaultPrefer
+xmlParseCharData
+xmlParseCharEncoding
+xmlTextWriterEndCDATA
+xmlTextWriterStartCDATA
+
sections
xmlKeepBlanksDefault
+xmlNodeGetBase
+
seems
xmlNamespaceParseNCName
+xmlNamespaceParseNSDef
+xmlNamespaceParseQName
+xmlScanName
+xmlValidateNotationDecl
+
selection
LIBXML_PATTERN_ENABLED
+
selects
xmlXPathIdFunction
+
self
xmlXPathNextSelf
+
semantic
xmlXPathNodeSetFreeNs
+
sense
xmlCreateEntitiesTable
+
separated
xmlLoadCatalogs
+
separately
xmlSetGenericErrorFunc
+xmlSetStructuredErrorFunc
+xmlValidateAttributeDecl
+xmlValidateOneAttribute
+xmlValidateOneElement
+xmlValidateOneNamespace
+
seq
xmlParseElementChildrenContentDecl
+
sequence
_xmlSchemaElement
+_xmlSchemaFacet
+_xmlSchemaType
+xmlCharEncOutFunc
+xmlClearNodeInfoSeq
+xmlCurrentChar
+xmlGetUTF8Char
+xmlInitNodeInfoSeq
+xmlParseAttValue
+xmlParseBalancedChunkMemory
+xmlParseBalancedChunkMemoryRecover
+xmlParseInNodeContext
+xmlParserAddNodeInfo
+xmlParserFindNodeInfoIndex
+xmlUTF8Strlen
+xmlUTF8Strsize
+xmlUTF8Strsub
+xmlXPathIdFunction
+
sequences
xmlCheckUTF8
+xmlParseAttValue
+xmlValidCtxtNormalizeAttributeValue
+xmlValidNormalizeAttributeValue
+xmlXPathNormalizeFunction
+
serialization
LIBXML_OUTPUT_ENABLED
+xmlSaveToFd
+xmlSaveToFilename
+xmlSaveToIO
+xmlShellCat
+xmlShellWrite
+xmlValidatePopElement
+xmlValidatePushElement
+
serializing
xmlSaveToFd
+xmlSaveToFilename
+xmlSaveToIO
+
server
_xmlURI
+xmlNanoFTPCheckResponse
+xmlNanoFTPCloseConnection
+xmlNanoFTPConnectTo
+xmlNanoFTPCwd
+xmlNanoFTPDele
+xmlNanoFTPGet
+xmlNanoFTPGetConnection
+xmlNanoFTPGetResponse
+xmlNanoFTPGetSocket
+xmlNanoFTPList
+xmlNanoFTPQuit
+
set:difference
xmlXPathDifference
+
set:distinct
xmlXPathDistinct
+xmlXPathDistinctSorted
+
set:has-same-node
xmlXPathHasSameNodes
+
set:intersection
xmlXPathIntersection
+
set:leading
xmlXPathLeading
+xmlXPathLeadingSorted
+xmlXPathNodeLeading
+xmlXPathNodeLeadingSorted
+
set:trailing
xmlXPathNodeTrailing
+xmlXPathNodeTrailingSorted
+xmlXPathTrailing
+xmlXPathTrailingSorted
+
sets
initxmlDefaultSAXHandler
+xmlGetUTF8Char
+xmlSAX2InitDefaultSAXHandler
+xmlSchemaValidateLengthFacet
+xmlSchemaValidateLengthFacetWhtsp
+xmlXPathDifference
+xmlXPathIntersection
+
setting
xmlSetGenericErrorFunc
+
setups
xmlParseEncodingDecl
+
sgmlsource
getSystemId
+xmlSAX2GetSystemId
+
shadowed
xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
+
shall
_xmlParserCtxt
+
shared
xmlCatalogAdd
+xmlModuleFree
+xmlModuleOpen
+
shares
xmlXPathHasSameNodes
+
shell
DEBUG_MEMORY
+xmlShell
+xmlShellBase
+xmlShellCat
+xmlShellCmd
+xmlShellDir
+xmlShellDu
+xmlShellList
+xmlShellLoad
+xmlShellPwd
+xmlShellReadlineFunc
+xmlShellSave
+xmlShellValidate
+xmlShellWrite
+
shorten
xmlDebugDumpString
+
shorthand
xmlTextReaderConstPrefix
+xmlTextReaderPrefix
+
show
LIBXML_VERSION_EXTRA
+xlinkExtendedLinkFunk
+xmlMemDisplay
+xmlMemShow
+xmlNodeListGetRawString
+xmlNodeListGetString
+xmlShellDu
+
shown
ftpListCallback
+
sibling
_xmlAttr
+_xmlAttribute
+_xmlDoc
+_xmlDtd
+_xmlElement
+_xmlEntity
+_xmlNode
+xmlAddNextSibling
+xmlAddPrevSibling
+xmlSchemaValueAppend
+xmlSchemaValueGetNext
+xmlXPathNextPrecedingSibling
+
siblings
xmlAddSibling
+xmlFreeNodeList
+xmlFreePropList
+xmlXPathNextFollowingSibling
+xmlXPathNextPrecedingSibling
+
sign
xmlXPathStringFunction
+
signal
ATTRIBUTE_UNUSED
_xmlParserCtxt
+
signature
xmlShellCmd
+xmlShellReadlineFunc
+
signs
xmlNewTextChild
+
similar
xmlGetNoNsProp
+xmlNewNs
+xmlShell
+xmlShellPwd
+xmlValidityErrorFunc
+xmlValidityWarningFunc
+xmlXPathNodeSetGetLength
+xmlXPathNodeSetItem
+
simple
XML_SCHEMAS_TYPE_ABSTRACT
+XML_SCHEMAS_TYPE_DERIVATION_METHOD_EXTENSION
+XML_SCHEMAS_TYPE_DERIVATION_METHOD_RESTRICTION
+xlinkSimpleLinkFunk
+xmlAttrSerializeTxtContent
+xmlFreeMutex
+xmlHashScanner
+xmlIsRef
+xmlMutexLock
+xmlMutexUnlock
+xmlNewMutex
+xmlSchemaGetBuiltInListSimpleTypeItemType
+xmlSchemaNewStringValue
+xmlSchemaValidateListSimpleTypeFacet
+
simpleType
XML_SCHEMAS_TYPE_FINAL_DEFAULT
+XML_SCHEMAS_TYPE_FINAL_LIST
+XML_SCHEMAS_TYPE_FINAL_RESTRICTION
+XML_SCHEMAS_TYPE_FINAL_UNION
+XML_SCHEMAS_TYPE_VARIETY_ABSENT
+XML_SCHEMAS_TYPE_VARIETY_ATOMIC
+XML_SCHEMAS_TYPE_VARIETY_LIST
+XML_SCHEMAS_TYPE_VARIETY_UNION
+
simply
xmlSetGenericErrorFunc
+xmlSetStructuredErrorFunc
+
since
xmlBuildRelativeURI
+xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
+xmlParseExternalID
+xmlRelaxNGNewDocParserCtxt
+
single
IS_DIGIT_CH
+xmlCurrentChar
+xmlParseAttValue
+xmlParseElementMixedContentDecl
+xmlValidCtxtNormalizeAttributeValue
+xmlValidNormalizeAttributeValue
+xmlValidateAttributeDecl
+xmlValidateElementDecl
+xmlValidateNotationDecl
+xmlValidateOneAttribute
+xmlValidateOneElement
+xmlValidateOneNamespace
+xmlXPathNewNodeSet
+xmlXPathNormalizeFunction
+xmlXPtrNewCollapsedRange
+xmlXPtrNewLocationSetNodes
+
single-byte
IS_CHAR_CH
+IS_EXTENDER_CH
+IS_PUBIDCHAR_CH
+
site1
xmlBuildRelativeURI
+
site2
xmlBuildRelativeURI
+
sizes
xmlGetBufferAllocationScheme
+xmlSetBufferAllocationScheme
+
skip
xmlSkipBlankChars
+
skipped
xmlParseElementChildrenContentDecl
+xmlParseElementMixedContentDecl
+xmlSkipBlankChars
+
smallest
xmlXPathCeilingFunction
+
socket
xmlCheckFilename
+xmlNanoFTPGetSocket
+
software
LIBXML_TEST_VERSION
+
solution
xmlNormalizeWindowsPath
+
some
XML_SKIP_IDS
+characters
+charactersSAXFunc
+ignorableWhitespace
+ignorableWhitespaceSAXFunc
+xmlBuildRelativeURI
+xmlGcMemSetup
+xmlHandleEntity
+xmlMemSetup
+xmlParseAttributeType
+xmlParserInputDeallocate
+xmlRelaxNGValidatePushCData
+xmlSAX2Characters
+xmlSAX2IgnorableWhitespace
+xmlTextReaderSetParserProp
+xmlValidatePushCData
+xmlXIncludeProcess
+xmlXIncludeProcessFlags
+xmlXIncludeProcessNode
+xmlXIncludeProcessTree
+xmlXIncludeProcessTreeFlags
+
somewhat
xmlCheckLanguageID
+
sorted
xmlParserAddNodeInfo
+xmlParserFindNodeInfoIndex
+xmlXPathDistinct
+xmlXPathDistinctSorted
+xmlXPathLeading
+xmlXPathLeadingSorted
+xmlXPathNodeLeading
+xmlXPathNodeLeadingSorted
+xmlXPathNodeTrailing
+xmlXPathNodeTrailingSorted
+xmlXPathTrailing
+xmlXPathTrailingSorted
+
source
_xmlXPathContext
+htmlCtxtReadIO
+htmlGetMetaEncoding
+htmlReadIO
+xlinkExtendedLinkFunk
+xmlCheckFilename
+xmlCopyError
+xmlCtxtReadIO
+xmlNewTextReader
+xmlReadIO
+xmlReaderForIO
+xmlReaderNewIO
+
sourceDoc
xmlDOMWrapAdoptNode
+
sourceforge
xmlXPathIsInf
+xmlXPathIsNaN
+
spaces
_xmlParserCtxt
+htmlDocContentDumpFormatOutput
+htmlDocContentDumpOutput
+htmlNodeDumpFileFormat
+htmlNodeDumpFormatOutput
+htmlNodeDumpOutput
+htmlSaveFileEnc
+htmlSaveFileFormat
+xmlDocDumpFormatMemory
+xmlDocDumpFormatMemoryEnc
+xmlDocFormatDump
+xmlKeepBlanksDefault
+xmlParseElementChildrenContentDecl
+xmlParseElementMixedContentDecl
+xmlSaveFormatFile
+xmlSaveFormatFileEnc
+xmlSaveFormatFileTo
+xmlSchemaCollapseString
+xmlValidateNCName
+xmlValidateNMToken
+xmlValidateName
+xmlValidateQName
+
span
xmlCurrentChar
+xmlStringCurrentChar
+
spec
xmlCatalogSetDefaultPrefer
+xmlParseComment
+
spec:
IS_BASECHAR
+IS_BLANK
+IS_BYTE_CHAR
+IS_CHAR
+IS_COMBINING
+IS_DIGIT
+IS_EXTENDER
+IS_IDEOGRAPHIC
+IS_LETTER
+IS_PUBIDCHAR
+
special
XML_SKIP_IDS
+XML_XML_ID
+XML_XML_NAMESPACE
+xmlNewChild
+xmlNewDocNode
+xmlNewDocNodeEatName
+xmlTextWriterWriteRawLen
+
specialized
xmlGcMemGet
+xmlGcMemSetup
+
specific
XML_CATALOG_PI
+_xmlValidCtxt
+_xmlXPathContext
+xmlNoNetExternalEntityLoader
+xmlParseNamespace
+xmlSchemaIsBuiltInTypeFacet
+
specification
XML_XML_NAMESPACE
+xmlTextReaderNormalization
+
specifications
xmlParseSDDecl
+
specify
XML_SCHEMAS_TYPE_BLOCK_DEFAULT
+xmlTextReaderLookupNamespace
+xmlTextReaderStandalone
+
specifying
xmlMallocAtomicLoc
+xmlMallocLoc
+xmlMemMalloc
+xmlMemRealloc
+xmlReallocLoc
+
speed
xmlXPathOrderDocElems
+
speedup
xmlTextReaderConstString
+
split
xmlXPathIdFunction
+
stacked
_xmlXPathParserContext
+xmlPushInput
+
stamps
xmlXPathOrderDocElems
+
standalone
_xmlDoc
+_xmlParserCtxt
+_xmlParserInput
+isStandalone
+xmlCurrentChar
+xmlParseSDDecl
+xmlSAX2IsStandalone
+xmlTextReaderStandalone
+
standalone=
xmlParseEntityRef
+xmlParsePEReference
+xmlParserHandlePEReference
+
standalone?
isStandaloneSAXFunc
+
standard
docbParseDocument
+htmlParseDocument
+xmlKeepBlanksDefault
+xmlParseDocument
+xmlXPathSubstringFunction
+
start
_htmlElemDesc
+startDocument
+startDocumentSAXFunc
+startElementNsSAX2Func
+xmlByteConsumed
+xmlDOMWrapAdoptNode
+xmlParseStartTag
+xmlRelaxNGValidatePushElement
+xmlSAX2StartDocument
+xmlSAX2StartElementNs
+xmlTextReaderByteConsumed
+xmlValidatePushElement
+xmlXPtrNewLocationSetNodes
+xmlXPtrNewRange
+
start-tag
xmlParseElement
+xmlParseStartTag
+
started
xmlTextWriterWriteDTDExternalEntity
+
starting
xmlAutomataNewAllTrans
+xmlAutomataNewCountTrans
+xmlAutomataNewCountTrans2
+xmlAutomataNewCountedTrans
+xmlAutomataNewCounterTrans
+xmlAutomataNewEpsilon
+xmlAutomataNewOnceTrans
+xmlAutomataNewOnceTrans2
+xmlAutomataNewTransition
+xmlAutomataNewTransition2
+xmlByteConsumed
+xmlNewCharRef
+xmlNewTextWriterTree
+xmlSaveTree
+xmlSchemaValidateOneElement
+xmlXPathOrderDocElems
+xmlXPathSubstringFunction
+xmlXPtrNewCollapsedRange
+xmlXPtrNewRange
+xmlXPtrNewRangeNodeObject
+xmlXPtrNewRangeNodePoint
+xmlXPtrNewRangeNodes
+xmlXPtrNewRangePointNode
+xmlXPtrNewRangePoints
+
starts
xmlXPathStartsWithFunction
+
starts-with
xmlXPathStartsWithFunction
+
startup
setDocumentLocator
+setDocumentLocatorSAXFunc
+xmlInitializeCatalog
+xmlLoadCatalog
+xmlLoadCatalogs
+xmlSAX2SetDocumentLocator
+
stashed
xmlNanoHTTPAuthHeader
+
stat
xmlCheckFilename
+
stateful
xmlCharEncodingOutputFunc
+
states
_xmlValidCtxt
+
static
xmlXPathOrderDocElems
+
status
xmlTextReaderIsValid
+xmlTextReaderStandalone
+
stderr
xmlSetGenericErrorFunc
+
stdin
xmlParserInputBufferCreateFilename
+
stdout
htmlSaveFile
+xmlOutputBufferCreateFilename
+xmlSaveFile
+xmlSaveFormatFile
+xmlShell
+
step
xmlValidCtxtNormalizeAttributeValue
+xmlValidNormalizeAttributeValue
+xmlValidateDocumentFinal
+xmlValidateDtdFinal
+
steps
xmlNormalizeURIPath
+xmlValidateDocumentFinal
+
still
xmlModuleFree
+xmlNoNetExternalEntityLoader
+xmlParseNamespace
+xmlReconciliateNs
+
stop
xmlListWalker
+
stops
xmlTextReaderGetRemainder
+
storage
xmlUTF8Strsize
+
store
UTF8ToHtml
+UTF8Toisolat1
docbEncodeEntities
htmlEncodeEntities
-htmlNodeDumpFileFormat
+htmlParseEntityRef
isolat1ToUTF8
-xlinkIsLink
+xmlC14NDocSave
+xmlC14NDocSaveTo
+xmlC14NExecute
xmlCharEncodingInputFunc
xmlCharEncodingOutputFunc
-xmlFileOpen
-xmlKeepBlanksDefault
-xmlNanoHTTPFetch
-xmlNanoHTTPMethod
-xmlNanoHTTPMethodRedir
-xmlNanoHTTPOpen
-xmlNanoHTTPOpenRedir
-xmlParserInputRead
+xmlGetFeature
+xmlInputReadCallback
+xmlOutputBufferWrite
+xmlOutputBufferWriteEscape
+xmlOutputBufferWriteString
+xmlParseAttribute
+xmlParseEntityValue
+xmlValidGetPotentialChildren
+xmlValidGetValidElements
+
stored
xmlParseElementContentDecl
+xmlParserInputBufferGrow
+xmlParserInputBufferPush
+xmlParserInputBufferRead
+xmlSAXParseFileWithData
+xmlSAXParseMemoryWithData
+xmlXPathOrderDocElems
+
str
htmlParseEntityRef
+xmlBufferAdd
+
strcasecmp
xmlStrcasecmp
+
strcat
xmlStrcat
+
strchr
xmlStrchr
+
strcmp
xmlStrcmp
+
strdup
xmlCharStrdup
+xmlGcMemGet
+xmlGcMemSetup
+xmlMemGet
+xmlMemSetup
+xmlMemStrdupLoc
+xmlMemoryStrdup
+xmlStrdup
+xmlStrdupFunc
+
streamable
xmlPatternStreamable
+xmlSchemaValidateFile
+
streaming
xmlPatternGetStreamCtxt
+
streams
_xmlParserCtxt
+xmlSkipBlankChars
+
strict
XML_SCHEMAS_ANYATTR_STRICT
+XML_SCHEMAS_ANY_STRICT
+xmlParseExternalID
+xmlXPathCompareValues
+
string--that
xmlNormalizeURIPath
+
string-length
xmlXPathStringLengthFunction
+
string?
xmlXPathNormalizeFunction
+xmlXPathStringLengthFunction
+
stringi
xmlXPathSubstringAfterFunction
+
strings
_xmlParserCtxt
+xmlDictCreateSub
+xmlGetFeaturesList
+xmlPatterncompile
+xmlRegExecErrInfo
+xmlRegExecNextValues
+xmlRegexpCompile
+xmlStreamPush
+xmlStreamPushAttr
+xmlStrncatNew
+
stripping
xmlXPathNormalizeFunction
+
strncasecmp
xmlStrncasecmp
+
strncat
xmlStrncat
+
strncmp
xmlStrncmp
+
strndup
xmlCharStrndup
+xmlStrndup
+xmlUTF8Strndup
+
strstr
xmlStrcasestr
+xmlStrstr
+
struct
xmlFreeMutex
+xmlFreeURI
+xmlNewMutex
+xmlParserFindNodeInfo
+xmlSchemaGetBuiltInType
+xmlSchemaNewNOTATIONValue
+xmlSchemaNewQNameValue
+xmlSchemaNewStringValue
+
structured
xmlSetStructuredErrorFunc
+
structures
xmlFreeDoc
+xmlFreeNs
+xmlFreeNsList
+xmlLoadACatalog
+xmlNewRMutex
+xmlRegFreeExecCtxt
+
struture
xmlRelaxNGParse
+xmlSchemaParse
+
stuff
_xmlXPathContext
+xmlParseNamespace
+
style
xmlSAXDefaultVersion
+
sub-elements
_htmlElemDesc
+
subelement
_htmlElemDesc
+htmlDefaultSubelement
+xmlNewDocElementContent
+xmlNewElementContent
+
subelements
_htmlElemDesc
+
subject
xmlParseSDDecl
+xmlRelaxNGParse
+xmlSchemaParse
+
sublanguage
xmlXPathLangFunction
+
submits
xmlRegisterHTTPPostCallbacks
+
subsequent
xmlIOHTTPOpenW
+xmlSetGenericErrorFunc
+xmlSetStructuredErrorFunc
+
subset?
hasExternalSubsetSAXFunc
+
subsets
xmlGetParameterEntity
+xmlValidateDtdFinal
+
substituion
XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION
+
substitute
xmlDOMWrapRemoveNode
+
substituted
XML_SUBSTITUTE_BOTH
+XML_SUBSTITUTE_NONE
+XML_SUBSTITUTE_PEREF
+XML_SUBSTITUTE_REF
+xmlNodeBufGetContent
+xmlNodeGetContent
+xmlParseEntityValue
+
substituting
xmlSubstituteEntitiesDefault
+
substitutionGroup
XML_SCHEMAS_ELEM_INTERNAL_RESOLVED
+
substitutions
XML_SCHEMAS_ELEM_BLOCK_EXTENSION
+xmlStringDecodeEntities
+xmlStringLenDecodeEntities
+xmlXIncludeProcess
+xmlXIncludeProcessFlags
+xmlXIncludeProcessNode
+xmlXIncludeProcessTree
+xmlXIncludeProcessTreeFlags
+
substitutions:
XML_SCHEMAS_ELEM_BLOCK_RESTRICTION
+XML_SCHEMAS_ELEM_BLOCK_SUBSTITUTION
+
substring
xmlNodeAddContent
+xmlNodeAddContentLen
+xmlStrsub
+xmlUTF8Strsub
+xmlXPathSubstringAfterFunction
+xmlXPathSubstringBeforeFunction
+xmlXPathSubstringFunction
+
substring-after
xmlXPathSubstringAfterFunction
+
substring-before
xmlXPathSubstringBeforeFunction
+
subtraction
xmlXPathSubValues
+
subtree
attribute
+attributeSAXFunc
+xmlFreeDocElementContent
+xmlFreeElementContent
xmlReconciliateNs
-xmlURIEscape
-xmlValidateRoot
-
ttribute
xmlTextReaderReadAttributeValue
-
tune
xmlBufferSetAllocationScheme
-
tuple
xmlHashAddEntry2
+xmlRelaxNGValidateFullElement
+xmlSaveTree
+xmlSchemaValidateOneElement
+xmlShellDu
+xmlShellWrite
+xmlTextReaderExpand
+xmlTextReaderNext
+xmlTextReaderNextSibling
+xmlValidateElement
+xmlXIncludeProcessNode
+xmlXIncludeProcessTree
+xmlXIncludeProcessTreeFlags
+
succeed
xmlNewTextWriter
+
succeeded
xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
+xmlHashAddEntry
+xmlHashAddEntry2
xmlHashAddEntry3
-xmlHashLookup2
-xmlHashLookup3
-xmlHashQLookup2
-xmlHashQLookup3
xmlHashRemoveEntry
xmlHashRemoveEntry2
xmlHashRemoveEntry3
-xmlHashScan3
-xmlHashScanFull3
+xmlHashUpdateEntry
xmlHashUpdateEntry2
xmlHashUpdateEntry3
-
tuples
xmlHashAddEntry2
-
turn
xmlBoolToText
-
turned
xmlGetNoNsProp
-xmlGetNsProp
-xmlGetProp
-xmlHasNsProp
-xmlHasProp
-xmlLineNumbersDefault
-
two
_xmlParserCtxt
-xmlStrncatNew
-xmlTextMerge
-xmlUTF8Charcmp
-xmlXPathCmpNodes
-xmlXPathDifference
-xmlXPathNodeSetMerge
+xmlSchemaValueAppend
+xmlXPathCompareValues
+
succeeds
xmlCheckFilename
+xmlNewTextWriterPushParser
+
successful
xmlACatalogAdd
+xmlACatalogRemove
+xmlBufferAdd
+xmlBufferAddHead
+xmlBufferCCat
+xmlBufferCat
+xmlCatalogAdd
+xmlCatalogConvert
+xmlCatalogRemove
+xmlConvertSGMLCatalog
+xmlGetLineNo
+xmlListPushBack
+xmlListPushFront
+xmlSaveSetAttrEscape
+xmlSaveSetEscape
+xmlTextReaderSetParserProp
+xmlUnsetNsProp
+xmlUnsetProp
+
successfully
xmlTextReaderNext
+xmlTextReaderNextSibling
+xmlTextReaderRead
+
succession
xmlAutomataNewCountTrans
+xmlAutomataNewCountTrans2
+xmlAutomataNewOnceTrans
+xmlAutomataNewOnceTrans2
+
successive
xmlAutomataNewCountTrans
+xmlAutomataNewCountTrans2
+xmlAutomataNewOnceTrans
+xmlAutomataNewOnceTrans2
+
such
xmlNewTextChild
+xmlParseEntityRef
+xmlValidityErrorFunc
+xmlValidityWarningFunc
+xmlXPathLangFunction
+xmlXPathNodeSetFreeNs
xmlXPathRoundFunction
-xmlXPtrLocationSetMerge
-xmlXPtrNewLocationSetNodes
-
two-character
xmlCurrentChar
-
typ
_xmlSchemaTypeLink
-
typefixed
XML_SCHEMAS_TYPE_INTERNAL_RESOLVED
-
types
XML_SCHEMAS_FACET_COLLAPSE
-_xmlXPathContext
-xmlExternalEntityLoader
-xmlParseSDDecl
+
suggested
_htmlElemDesc
+
suitable
xmlNewIOInputStream
+xmlRegexpCompile
+
sum
xmlXPathSubstringFunction
+xmlXPathSumFunction
+
super
xmlLoadSGMLSuperCatalog
+
super-strict
xmlCheckUTF8
+
supplied
xmlGetRefs
+
supported
xmlDOMWrapRemoveNode
+xmlInitCharEncodingHandlers
+xmlNanoFTPGetConnection
xmlSchemaGetCanonValue
-xmlSchemaNewStringValue
-xmlSchemaValidateFacetWhtsp
-
typo
xmlParseTextDecl
+xmlSchemaGetCanonValueWhtsp
+xmlTextReaderNormalization
+
supposed
xmlIsMixedElement
+xmlNewChild
+xmlNewDocNode
+xmlNewDocNodeEatName
+xmlStrcat
+xmlStrdup
+
sure
xmlSaveClose
+xmlSaveFlush
+xmlURIEscape
+xmlXPathNodeSetAddUnique
+
surprising
xmlRegisterCharEncodingHandler
+
surrogate
IS_CHAR
+
switch
xmlKeepBlanksDefault
+xmlParseReference
+xmlPushInput
+
symbol
xmlModuleSymbol
+
synchronizing
xmlNewMutex
+xmlNewRMutex
+
syntax
xmlParseAttributeType
+
systematically
xmlIsID

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk25.html b/doc/APIchunk25.html index e902b291..e958d91a 100644 --- a/doc/APIchunk25.html +++ b/doc/APIchunk25.html @@ -7,283 +7,424 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index u-v for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index u-v for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index t-t for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index t-t for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter u:

ugly
_xmlParserCtxt
-htmlEntityLookup
-htmlEntityValueLookup
-
unary
xmlXPathValueFlipSign
-
unclean
_xmlURI
-
uncompressed
xmlC14NDocSave
-xmlGetCompressMode
-xmlGetDocCompressMode
-xmlSetCompressMode
-xmlSetDocCompressMode
-
undefined
xmlPatterncompile
-
under
xmlBuildRelativeURI
-xmlSearchNs
-xmlSetTreeDoc
-xmlShellDu
-xmlShellWrite
-xmlValidateElement
-
underlying
xmlTextReaderClose
-xmlTextReaderCurrentNode
-
unescape
xmlURIUnescapeString
-
unescaped
xmlFileOpen
-xmlURIUnescapeString
-
unicode
htmlEntityValueLookup
-xmlIsLetter
-
unimplemented
htmlCtxtUseOptions
-xmlCtxtUseOptions
-
union
XML_SCHEMAS_FINAL_DEFAULT_UNION
-XML_SCHEMAS_TYPE_FINAL_UNION
-XML_SCHEMAS_TYPE_VARIETY_ATOMIC
-XML_SCHEMAS_TYPE_VARIETY_UNION
-xmlXPathIdFunction
-
unique
_xmlParserInput
-_xmlSchema
-xmlXPathIdFunction
-
uniquely
xmlParseAttributeType
-xmlXPathStringFunction
-
uniqueness
xmlValidateAttributeDecl
-xmlValidateOneAttribute
-xmlValidateOneNamespace
-
units
xmlUTF8Strsub
-
unknown
XML_SCHEMAS_ANYATTR_SKIP
-XML_SCHEMAS_ANY_SKIP
-XML_SCHEMAS_FACET_UNKNOWN
-htmlCtxtUseOptions
-xmlCtxtUseOptions
-xmlUCSIsBlock
-xmlUCSIsCat
-
unless
htmlSAXParseDoc
-htmlSAXParseFile
-xmlGetNoNsProp
-xmlGetNsProp
-xmlGetProp
-xmlHasNsProp
-xmlHasProp
-xmlXPathNextNamespace
-
unlink
xmlFreeNode
-
unlinked
xmlAddNextSibling
-xmlAddPrevSibling
-xmlAddSibling
-xmlReplaceNode
-
unload
xmlModuleClose
-xmlModuleFree
-
unloaded
xmlModuleClose
-
unlock
xmlMutexUnlock
-xmlRMutexUnlock
-
unparsed
_xmlEntity
-unparsedEntityDecl
-unparsedEntityDeclSAXFunc
-xmlLoadExternalEntity
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter t:

tag
_htmlElemDesc
+htmlAutoCloseTag
+htmlIsAutoClosed
+htmlTagLookup
+startElement
+startElementSAXFunc
+xmlNodeSetName
+xmlParseEndTag
+xmlParseStartTag
+xmlSAX2StartElement
+xmlTextWriterFullEndElement
+
tagged
isStandalone
+isStandaloneSAXFunc
+xmlNewNsProp
+xmlNewNsPropEatName
+xmlSAX2IsStandalone
+
tags
htmlAutoCloseTag
+htmlGetMetaEncoding
+htmlHandleOmittedElem
+htmlInitAutoClose
+htmlIsAutoClosed
+htmlSetMetaEncoding
+
take
xmlLockLibrary
+
takes
xmlSchemaValidateFacetWhtsp
+
tell
XML_COMPLETE_ATTRS
+XML_DETECT_IDS
+XML_SKIP_IDS
+_htmlElemDesc
+
tells
xmlTextReaderPreserve
+xmlTextReaderPreservePattern
+
temporary
_xmlValidCtxt
+_xmlXPathContext
+xmlIOHTTPOpenW
+
terminal
xmlRegExecErrInfo
+xmlRegExecNextValues
+
terminated
htmlCtxtReadDoc
+htmlReadDoc
+startElement
+startElementSAXFunc
+xmlBufferCCat
+xmlBufferCat
+xmlCtxtReadDoc
+xmlDocDumpMemory
+xmlGetNsList
+xmlOutputBufferWriteEscape
+xmlOutputBufferWriteString
+xmlParseBalancedChunkMemory
+xmlParseBalancedChunkMemoryRecover
+xmlReadDoc
+xmlReaderForDoc
+xmlReaderNewDoc
+xmlSAX2StartElement
+xmlStrdupFunc
+
termination
xmlStrcat
+xmlStrdup
+
terms
xmlBuildRelativeURI
+
test
xmlParserHandleReference
+xmlXPathEqualValues
+xmlXPathNotEqualValues
+
tested
_xmlParserInput
+
testing
xmlRegexpCompile
+
text-node
xmlIsBlankNode
+
textDecl?
xmlParseExternalSubset
+
than
xmlCheckUTF8
+xmlNewNs
+xmlParseAttribute
xmlParseAttributeType
+xmlParseElementDecl
+xmlParseElementMixedContentDecl
+xmlParseSDDecl
+xmlParseStartTag
+xmlSetGenericErrorFunc
+xmlStrEqual
+xmlTextReaderIsNamespaceDecl
+xmlXPathCeilingFunction
+xmlXPathCompareValues
+xmlXPathFloorFunction
+xmlXPathSubstringFunction
+xmlXPathTranslateFunction
+
their
xmlCharEncOutFunc
+xmlEncodeEntities
+xmlEncodeEntitiesReentrant
+xmlLoadCatalogs
+xmlNewTextChild
+xmlNodeListGetRawString
+xmlNodeListGetString
xmlParseEntityRef
-xmlParserHandleReference
-xmlSAX2UnparsedEntityDecl
-
unpredictable
UTF8ToHtml
+xmlXPathAddValues
+xmlXPathDivValues
+xmlXPathIdFunction
+xmlXPathModValues
+xmlXPathMultValues
+xmlXPathSubValues
+xmlXPathValueFlipSign
+
them
xmlNanoFTPRead
+xmlNanoHTTPRead
+xmlParseAttValue
+xmlParseAttributeType
+xmlRegExecErrInfo
+xmlRegExecNextValues
+
these
_htmlElemDesc
+xmlCheckUTF8
+xmlParseSDDecl
+
they
_htmlElemDesc
+xmlCreatePushParserCtxt
+xmlStrEqual
+xmlStrQEqual
+xmlStrcat
+xmlStrdup
+
third
xmlHashAddEntry3
+xmlHashLookup3
+xmlHashQLookup3
+xmlHashRemoveEntry3
+xmlHashScan3
+xmlHashScanFull3
+xmlHashScannerFull
+xmlHashUpdateEntry3
+xmlXPathSubstringFunction
+xmlXPathTranslateFunction
+
those
xmlCheckLanguageID
+xmlKeepBlanksDefault
+xmlParseSDDecl
+xmlSearchNs
+xmlXPathSubstringFunction
+
though
xmlDocDumpMemory
+xmlNoNetExternalEntityLoader
+
thread
LIBXML_THREAD_ENABLED
+xmlCleanupThreads
+xmlGetGlobalState
+xmlGetLastError
+xmlGetThreadId
+xmlInitThreads
+xmlInitializeCatalog
+xmlIsMainThread
+xmlLoadCatalog
+xmlLoadCatalogs
+xmlSetGenericErrorFunc
+xmlSetStructuredErrorFunc
+
through
xmlBuildRelativeURI
+xmlCreatePushParserCtxt
+xmlDecodeEntities
+xmlNormalizeURIPath
+
thumblers
xmlShellPwd
+
thus
xmlDOMWrapRemoveNode
+xmlNewRMutex
+xmlXPathNextAncestor
+xmlXPathNextAncestorOrSelf
+xmlXPathNextDescendantOrSelf
+
time
xmlXPathAxisFunc
+
title
xlinkSimpleLinkFunk
+
titles
xlinkExtendedLinkFunk
+xlinkExtendedLinkSetFunk
+
todo:
_xmlError
+
token
xmlAutomataNewCountTrans
+xmlAutomataNewCountTrans2
+xmlAutomataNewOnceTrans
+xmlAutomataNewOnceTrans2
+xmlFreeMutex
+xmlMutexLock
+xmlMutexUnlock
+xmlNewMutex
+xmlRegExecPushString
+xmlRegExecPushString2
+
token_r
xmlNewRMutex
+xmlRMutexLock
+xmlRMutexUnlock
+
tokens
xmlParseEnumerationType
+xmlXPathIdFunction
+
too
DEBUG_MEMORY
+htmlNodeDump
+htmlNodeDumpFile
+htmlNodeDumpFileFormat
+htmlNodeDumpFormatOutput
+htmlNodeDumpOutput
+xmlCopyDoc
+xmlElemDump
+xmlFreeNode
+xmlFreeNodeList
+xmlFreeProp
+xmlFreePropList
+xmlGetDocEntity
+xmlNodeDump
+xmlNodeDumpOutput
+xmlParseElementMixedContentDecl
+xmlRemoveProp
+
top
CAST_TO_BOOLEAN
+CAST_TO_NUMBER
+CAST_TO_STRING
+CHECK_TYPE
+CHECK_TYPE0
+XML_SCHEMAS_ELEM_TOPLEVEL
+inputPop
+inputPush
+namePop
+namePush
+nodePop
+nodePush
+valuePop
+valuePush
+xmlNamespaceParseNCName
+xmlNamespaceParseNSDef
+xmlNamespaceParseQName
+xmlPopInputCallbacks
+xmlPushInput
+xmlReconciliateNs
+xmlSetTreeDoc
+
total
_xmlOutputBuffer
+xmlGetFeaturesList
+xmlUTF8Strsub
+
touch
_xmlParserCtxt
+
track
xmlEntityReferenceFunc
+
tracking
xmlParserPrintFileContext
+
trailing
xmlParseAttValue
+xmlValidCtxtNormalizeAttributeValue
+xmlValidNormalizeAttributeValue
+xmlXPathNodeTrailing
+xmlXPathNodeTrailingSorted
+xmlXPathNormalizeFunction
+xmlXPathTrailing
+xmlXPathTrailingSorted
+
trancoding
xmlSaveFileTo
+xmlSaveFormatFileTo
+
transaction
xmlNanoHTTPSave
+
transcoding
UTF8ToHtml
UTF8Toisolat1
docbEncodeEntities
htmlEncodeEntities
-isolat1ToUTF8
-
unpredictiable
xmlCharEncodingInputFunc
-xmlCharEncodingOutputFunc
-
unregisters
xmlCleanupCharEncodingHandlers
-xmlXPathRegisterFunc
-xmlXPathRegisterFuncNS
-xmlXPathRegisterNs
-xmlXPathRegisterVariable
-xmlXPathRegisterVariableNS
-
unsafe
xmlSprintfElementContent
-
unsigned
c
-xmlURIUnescapeString
-
until
xmlBufferCreateStatic
-xmlParserInputBufferCreateStatic
-xmlSearchNs
-xmlSearchNsByHref
-xmlTextReaderExpand
-xmlTextReaderRelaxNGSetSchema
-xmlXPathAxisFunc
-
unused
ATTRIBUTE_UNUSED
-_xmlEntity
-_xmlSAXHandler
-_xmlSAXHandlerV1
-_xmlSchema
-_xmlXPathContext
-xmlDOMWrapReconcileNamespaces
-xmlDOMWrapRemoveNode
-xmlSchemaValidateFile
-xmlShellBase
-xmlShellCat
-xmlShellDir
-xmlShellDu
-xmlShellList
-xmlShellLoad
-xmlShellPwd
-xmlShellSave
-xmlShellValidate
-xmlShellWrite
-
update
xmlCheckHTTPInput
-xmlNanoFTPUpdateURL
-xmlSetListDoc
-xmlSetTreeDoc
-xmlSplitQName3
-xmlValidCtxtNormalizeAttributeValue
-
updated
xmlCatalogAddLocal
-xmlGetFeaturesList
-xmlNamespaceParseQName
-xmlRegExecErrInfo
-xmlRegExecNextValues
-xmlSplitQName
-xmlSplitQName2
-
upon
checkNamespace
-xlinkNodeDetectFunc
-
upper
xmlIsRef
-
uri
xmlNormalizeWindowsPath
-
usage
xmlGetBufferAllocationScheme
-xmlSetBufferAllocationScheme
-
used:
XML_DEFAULT_VERSION
-
useful
xmlGcMemGet
-xmlGcMemSetup
-xmlNewRMutex
-xmlParserInputBufferCreateStatic
-
useless
setDocumentLocator
-setDocumentLocatorSAXFunc
-xmlSAX2SetDocumentLocator
-
userData
xmlValidityErrorFunc
-xmlValidityWarningFunc
-
users
_xmlSchema
-
uses
htmlNodeStatus
-
usually
c
-xmlInitCharEncodingHandlers
-xmlSchemaGetPredefinedType
-xmlTextReaderGetParserProp
-xmlTextReaderSetParserProp
-xmlValidityErrorFunc
-xmlValidityWarningFunc
-
utf8
xmlCharEncFirstLine
+xmlCharEncFirstLine
xmlCharEncInFunc
xmlCharEncOutFunc
-

Letter v:

val1
xmlXPtrLocationSetMerge
-
validated
xmlCharInRange
-xmlSchemaValidateLengthFacet
-xmlSchemaValidateLengthFacetWhtsp
-
validates
xmlSchemaValPredefTypeNode
-xmlSchemaValPredefTypeNodeNoNorm
-xmlSchemaValidatePredefinedType
-xmlValidateDocument
-xmlValidateNCName
-xmlValidateNMToken
-xmlValidateName
-xmlValidateQName
-
validating
_xmlAttr
-_xmlElement
-_xmlValidCtxt
-xmlKeepBlanksDefault
-xmlRelaxNGValidatePushElement
-xmlSetGenericErrorFunc
-xmlSetStructuredErrorFunc
-
validity
_xmlParserCtxt
-_xmlValidCtxt
-xlinkIsLink
-xmlGenericErrorFunc
-xmlParseAttValue
+xmlCharEncodingInputFunc
+xmlCharEncodingOutputFunc
+xmlOutputBufferWrite
+xmlOutputBufferWriteEscape
+xmlOutputBufferWriteString
+xmlParserInputBufferGrow
+xmlParserInputBufferPush
+xmlParserInputBufferRead
+
transfered
xmlParsePI
+
transformation
xmlCharEncCloseFunc
+xmlCharEncFirstLine
+xmlCharEncInFunc
+xmlCharEncOutFunc
+
transformed
xmlRelaxNGDumpTree
+
transitions
xmlAutomataNewAllTrans
+xmlRegExecErrInfo
+xmlRegExecNextValues
+
translate
xmlXPathTranslateFunction
+
translation
xmlURIUnescapeString
+
transmit
errorSAXFunc
+fatalErrorSAXFunc
+warningSAXFunc
+xmlParserError
xmlParserValidityError
xmlParserValidityWarning
-xmlTextReaderIsValid
-xmlURIEscape
-xmlURIUnescapeString
-xmlValidGetValidElements
-xmlValidateDocumentFinal
-xmlValidateNotationDecl
-xmlValidityErrorFunc
-xmlValidityWarningFunc
-
value:
xmlCheckUTF8
-
values:
xmlSetCompressMode
-xmlSetDocCompressMode
-xmlValidCtxtNormalizeAttributeValue
-xmlValidNormalizeAttributeValue
-
varags
xmlGenericErrorFunc
-
vararg
xmlValidityErrorFunc
-xmlValidityWarningFunc
-
variables
_xmlXPathContext
-xmlNanoFTPProxy
-xmlXPathRegisteredNsCleanup
-xmlXPathRegisteredVariablesCleanup
-
variant
xmlDetectCharEncoding
-
variety
XML_SCHEMAS_TYPE_VARIETY_ABSENT
-XML_SCHEMAS_TYPE_VARIETY_ATOMIC
-XML_SCHEMAS_TYPE_VARIETY_LIST
-XML_SCHEMAS_TYPE_VARIETY_UNION
-
very
_htmlElemDesc
-_xmlParserInput
-xmlCharEncFirstLine
-
via
xmlNanoHTTPFetch
+xmlParserWarning
+
transport
xmlNanoFTPClose
+
traversal
xmlXPathAxisFunc
+xmlXPathNextAncestor
+xmlXPathNextAncestorOrSelf
+xmlXPathNextAttribute
+xmlXPathNextChild
+xmlXPathNextDescendant
+xmlXPathNextDescendantOrSelf
+xmlXPathNextFollowing
+xmlXPathNextFollowingSibling
+xmlXPathNextNamespace
+xmlXPathNextParent
+xmlXPathNextPreceding
+xmlXPathNextPrecedingSibling
+xmlXPathNextSelf
+xmlXPtrNewContext
+
traverse
xmlXPathAxisFunc
+
treaming
_xmlParserCtxt
+
treated
xmlParseAttValue
+
tries
INPUT_CHUNK
+xlinkIsLink
+xmlCleanupParser
+xmlNanoFTPRead
+xmlNanoHTTPRead
+xmlParserInputGrow
+xmlSAXParseDoc
+xmlSAXParseFile
+xmlSAXParseFileWithData
+xmlSAXParseMemory
+xmlSAXParseMemoryWithData
+
trio
WITHOUT_TRIO
+WITH_TRIO
+xmlXPathIsInf
+xmlXPathIsNaN
+
troubles
_xmlParserInput
+xmlSearchNs
+
try
CAST_TO_BOOLEAN
+CAST_TO_NUMBER
+CAST_TO_STRING
+UTF8ToHtml
+UTF8Toisolat1
+_xmlParserCtxt
+docbEncodeEntities
+htmlEncodeEntities
+htmlNodeDumpFileFormat
+isolat1ToUTF8
+xlinkIsLink
+xmlCharEncodingInputFunc
+xmlCharEncodingOutputFunc
+xmlFileOpen
+xmlKeepBlanksDefault
+xmlNanoHTTPFetch
xmlNanoHTTPMethod
xmlNanoHTTPMethodRedir
xmlNanoHTTPOpen
xmlNanoHTTPOpenRedir
-
view
xmlShell
-
violated
XML_CAST_FPTR
-
visible
xmlC14NExecute
-
void
XML_CAST_FPTR
-xmlSAXParseFileWithData
-xmlSAXParseMemoryWithData
+xmlParserInputRead
+xmlReconciliateNs
+xmlURIEscape
+xmlValidateRoot
+
ttribute
xmlTextReaderReadAttributeValue
+
tune
xmlBufferSetAllocationScheme
+
tuple
xmlHashAddEntry2
+xmlHashAddEntry3
+xmlHashLookup2
+xmlHashLookup3
+xmlHashQLookup2
+xmlHashQLookup3
+xmlHashRemoveEntry
+xmlHashRemoveEntry2
+xmlHashRemoveEntry3
+xmlHashScan3
+xmlHashScanFull3
+xmlHashUpdateEntry2
+xmlHashUpdateEntry3
+
tuples
xmlHashAddEntry2
+
turn
xmlBoolToText
+
turned
xmlGetNoNsProp
+xmlGetNsProp
+xmlGetProp
+xmlHasNsProp
+xmlHasProp
+xmlLineNumbersDefault
+
two
_xmlParserCtxt
+xmlStrncatNew
+xmlTextMerge
+xmlUTF8Charcmp
+xmlXPathCmpNodes
+xmlXPathDifference
+xmlXPathNodeSetMerge
+xmlXPathRoundFunction
+xmlXPtrLocationSetMerge
+xmlXPtrNewLocationSetNodes
+
two-character
xmlCurrentChar
+
typ
_xmlSchemaTypeLink
+
typefixed
XML_SCHEMAS_TYPE_INTERNAL_RESOLVED
+
types
XML_SCHEMAS_FACET_COLLAPSE
+_xmlXPathContext
+xmlExternalEntityLoader
+xmlParseSDDecl
+xmlSchemaGetCanonValue
+xmlSchemaNewStringValue
+xmlSchemaValidateFacetWhtsp
+
typo
xmlParseTextDecl

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk26.html b/doc/APIchunk26.html index 48ab9792..814dec73 100644 --- a/doc/APIchunk26.html +++ b/doc/APIchunk26.html @@ -7,311 +7,287 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index w-w for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index w-w for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index u-v for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index u-v for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter w:

walker
xmlListReverseWalk
-xmlListWalk
-xmlListWalker
-
walking
_xmlXPathContext
-_xmlXPathParserContext
-xmlListWalker
-
want
xmlCharEncFirstLine
-xmlCharEncInFunc
-xmlCharEncOutFunc
-
warn
xmlCheckVersion
-
warning
XML_CAST_FPTR
-_xmlValidCtxt
-docbCreatePushParserCtxt
-htmlCreatePushParserCtxt
-initxmlDefaultSAXHandler
-warningSAXFunc
-xmlCreatePushParserCtxt
-xmlEncodeEntities
-xmlParserValidityWarning
-xmlParserWarning
-xmlRelaxNGGetParserErrors
-xmlRelaxNGGetValidErrors
-xmlRelaxNGSetParserErrors
-xmlRelaxNGSetValidErrors
-xmlSAX2InitDefaultSAXHandler
-xmlSchemaGetParserErrors
-xmlSchemaGetValidErrors
-xmlSchemaSetParserErrors
-xmlSchemaSetValidErrors
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter u:

ugly
_xmlParserCtxt
+htmlEntityLookup
+htmlEntityValueLookup
+
unary
xmlXPathValueFlipSign
+
unclean
_xmlURI
+
uncompressed
xmlC14NDocSave
+xmlGetCompressMode
+xmlGetDocCompressMode
+xmlSetCompressMode
+xmlSetDocCompressMode
+
undefined
xmlPatterncompile
+
under
xmlBuildRelativeURI
xmlSearchNs
-xmlTextReaderSetErrorHandler
-xmlTextReaderSetStructuredErrorHandler
-xmlValidityWarningFunc
-
warnings
_xmlParserCtxt
-xmlPedanticParserDefault
-xmlTextReaderSetErrorHandler
-xmlTextReaderSetStructuredErrorHandler
-
way
HTML_COMMENT_NODE
-HTML_ENTITY_REF_NODE
-HTML_PI_NODE
-HTML_PRESERVE_NODE
-HTML_TEXT_NODE
-_xmlDoc
-xmlBoolToText
-xmlKeepBlanksDefault
-xmlNewGlobalNs
-
ways:
xmlValidGetValidElements
-
well
_xmlParserCtxt
-htmlSAXParseDoc
-htmlSAXParseFile
-startElementNsSAX2Func
-xmlCopyDoc
-xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlParseCtxtExternalEntity
-xmlParseExternalEntity
-xmlParseInNodeContext
-xmlSAX2StartElementNs
-xmlSchemaNewStringValue
-
well-balanced
xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlParseInNodeContext
-
well-formed
xmlParseCtxtExternalEntity
-xmlParseEntityRef
-xmlParseExtParsedEnt
-xmlParseExternalEntity
-xmlParserHandleReference
-xmlValidateDtdFinal
-
well-formedness
xmlCtxtResetLastError
-xmlParseEntityRef
-xmlResetLastError
-
wellformed
xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-xmlParseFile
-
were
_xmlParserCtxt
-xmlCheckLanguageID
-xmlKeepBlanksDefault
-xmlMemShow
-xmlXIncludeProcess
-xmlXIncludeProcessFlags
-xmlXIncludeProcessNode
-xmlXIncludeProcessTree
-xmlXIncludeProcessTreeFlags
-
wether
_xmlNodeSet
-
what
xmlCatalogGetDefaults
-xmlCatalogSetDefaults
-xmlParseNamespace
-xmlTextReaderGetRemainder
-xmlTextWriterWriteRawLen
-
where
_htmlElemDesc
-xmlCopyProp
-xmlCopyPropList
-xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-xmlFileRead
-xmlIOFTPRead
-xmlIOHTTPRead
-xmlNanoHTTPFetch
-xmlNanoHTTPSave
-xmlNewNs
-xmlParseMarkupDecl
-xmlParseSDDecl
-
while
xmlInitCharEncodingHandlers
-xmlParseAttributeType
-xmlParseEnumeratedType
-xmlParseEnumerationType
-xmlParseNotationType
-xmlSetGenericErrorFunc
-xmlSetStructuredErrorFunc
-xmlTextReaderNext
-xmlTextReaderNextSibling
-xmlValidGetValidElements
-
white
xmlKeepBlanksDefault
-xmlParseSDDecl
-xmlSchemaCollapseString
-xmlTextReaderNormalization
-xmlXPathNormalizeFunction
-
whitespace
xmlIsBlankNode
-xmlParseAttValue
-xmlSchemaCompareValuesWhtsp
-xmlSchemaGetCanonValueWhtsp
-xmlSchemaValidateFacetWhtsp
-xmlSchemaValidateLengthFacetWhtsp
+xmlSetTreeDoc
+xmlShellDu
+xmlShellWrite
+xmlValidateElement
+
underlying
xmlTextReaderClose
+xmlTextReaderCurrentNode
+
unescape
xmlURIUnescapeString
+
unescaped
xmlFileOpen
+xmlURIUnescapeString
+
unicode
htmlEntityValueLookup
+xmlIsLetter
+
unimplemented
htmlCtxtUseOptions
+xmlCtxtUseOptions
+
union
XML_SCHEMAS_FINAL_DEFAULT_UNION
+XML_SCHEMAS_TYPE_FINAL_UNION
+XML_SCHEMAS_TYPE_VARIETY_ATOMIC
+XML_SCHEMAS_TYPE_VARIETY_UNION
xmlXPathIdFunction
-xmlXPathNormalizeFunction
-
whitespace-facet
XML_SCHEMAS_TYPE_WHITESPACE_COLLAPSE
-XML_SCHEMAS_TYPE_WHITESPACE_PRESERVE
-XML_SCHEMAS_TYPE_WHITESPACE_REPLACE
-
whitespace-separated
xmlXPathIdFunction
-
whitespaces
ignorableWhitespace
-ignorableWhitespaceSAXFunc
-xmlSAX2IgnorableWhitespace
-
whole
xmlFreeDocElementContent
-xmlFreeElementContent
-
whose
xmlAutomataNewCountTrans
-xmlAutomataNewCountTrans2
-xmlAutomataNewOnceTrans
-xmlAutomataNewOnceTrans2
-xmlTextReaderLookupNamespace
-
wierd
xmlBuildRelativeURI
-
wildcard
XML_SCHEMAS_ATTRGROUP_GLOBAL
-XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED
-XML_SCHEMAS_TYPE_OWNED_ATTR_WILDCARD
-XML_SCHEMAS_WILDCARD_COMPLETE
-xmlSchemaFreeWildcard
-
wildcards
XML_SCHEMAS_ANY_LAX
-XML_SCHEMAS_ANY_STRICT
-XML_SCHEMAS_ATTR_USE_PROHIBITED
-
with_ns
_xmlNodeSet
-
within
_xmlValidCtxt
-xmlAutomataNewCounterTrans
-xmlGetUTF8Char
-xmlNewDocComment
-xmlNewDocNode
-xmlNewDocNodeEatName
-xmlNewDocRawNode
-xmlNewDocText
-xmlNodeGetBase
-xmlParseCharData
-xmlParseComment
-xmlParseCtxtExternalEntity
-xmlParseInNodeContext
-xmlParseMarkupDecl
-xmlParseSDDecl
-xmlParserFindNodeInfo
-xmlParserHandlePEReference
-xmlParserPrintFileContext
-xmlReconciliateNs
-xmlSAXParseFileWithData
-xmlSAXParseMemoryWithData
-xmlSchemaCopyValue
-xmlSearchNs
-xmlTextReaderConstXmlLang
-xmlTextReaderXmlLang
-xmlTextWriterWriteBase64
-xmlTextWriterWriteBinHex
-xmlValidGetValidElements
-xmlXPathIntersection
-
without
XML_CAST_FPTR
-_xmlEntity
-entityDecl
-entityDeclSAXFunc
-htmlNewDocNoDtD
-xmlNewGlobalNs
-xmlParseEntityRef
-xmlParsePEReference
-xmlParseSDDecl
-xmlParserHandlePEReference
-xmlSAX2EntityDecl
-xmlScanName
+
unique
_xmlParserInput
+_xmlSchema
+xmlXPathIdFunction
+
uniquely
xmlParseAttributeType
+xmlXPathStringFunction
+
uniqueness
xmlValidateAttributeDecl
xmlValidateOneAttribute
xmlValidateOneNamespace
-
won
_xmlParserCtxt
-xmlBufferCreateStatic
-xmlLoadSGMLSuperCatalog
-xmlParseAttValue
-
word
_htmlElemDesc
-
words
xmlXPathNormalizeFunction
-xmlXPathStringLengthFunction
-
work
xmlNodeGetBase
-xmlPatternStreamable
-xmlRemoveProp
-xmlSAXParseDoc
-xmlSAXParseFile
-xmlSAXParseFileWithData
-xmlSAXParseMemory
-xmlSAXParseMemoryWithData
-
worked
xmlNanoFTPCwd
-xmlNanoFTPDele
-
works
xmlShellDu
-
worry
XML_SCHEMAS_ANY_LAX
-
worthwhile
xmlBuildRelativeURI
-
would
_xmlError
-htmlAutoCloseTag
-xmlTextReaderGetRemainder
-
wrapper
xmlDOMWrapReconcileNamespaces
-xmlDOMWrapRemoveNode
-
wraps
xmlTextReaderByteConsumed
-
write
xmlFileRead
-xmlFindCharEncodingHandler
-xmlGetCharEncodingHandler
-xmlIOFTPRead
-xmlIOHTTPRead
-xmlNewCharEncodingHandler
-xmlOutputBufferCreateIO
-xmlOutputWriteCallback
-xmlSaveToIO
-xmlShellWrite
-
writer
xmlFreeTextWriter
-xmlNewTextWriter
-xmlNewTextWriterPushParser
-
writes
xmlBufferWriteQuotedString
-xmlOutputBufferWrite
-xmlOutputBufferWriteEscape
-xmlOutputBufferWriteString
-
writing
xmlOutputBufferCreateFilename
-
wrt
xmlDOMWrapRemoveNode
-
www
XINCLUDE_NS
-XINCLUDE_OLD_NS
-getSystemId
-xmlC14NDocDumpMemory
-xmlC14NDocSave
-xmlC14NDocSaveTo
-xmlC14NExecute
-xmlGetCharEncodingName
-xmlParserHandlePEReference
+
units
xmlUTF8Strsub
+
unknown
XML_SCHEMAS_ANYATTR_SKIP
+XML_SCHEMAS_ANY_SKIP
+XML_SCHEMAS_FACET_UNKNOWN
+htmlCtxtUseOptions
+xmlCtxtUseOptions
+xmlUCSIsBlock
+xmlUCSIsCat
+
unless
htmlSAXParseDoc
+htmlSAXParseFile
+xmlGetNoNsProp
+xmlGetNsProp
+xmlGetProp
+xmlHasNsProp
+xmlHasProp
+xmlXPathNextNamespace
+
unlink
xmlFreeNode
+
unlinked
xmlAddNextSibling
+xmlAddPrevSibling
+xmlAddSibling
+xmlReplaceNode
+
unload
xmlModuleClose
+xmlModuleFree
+
unloaded
xmlModuleClose
+
unlock
xmlMutexUnlock
+xmlRMutexUnlock
+
unparsed
_xmlEntity
+unparsedEntityDecl
+unparsedEntityDeclSAXFunc
+xmlLoadExternalEntity
+xmlParseAttributeType
+xmlParseEntityRef
xmlParserHandleReference
-xmlSAX2GetSystemId
+xmlSAX2UnparsedEntityDecl
+
unplug
xmlSchemaSAXPlug
+
unpredictable
UTF8ToHtml
+UTF8Toisolat1
+docbEncodeEntities
+htmlEncodeEntities
+isolat1ToUTF8
+
unpredictiable
xmlCharEncodingInputFunc
+xmlCharEncodingOutputFunc
+
unregisters
xmlCleanupCharEncodingHandlers
+xmlXPathRegisterFunc
+xmlXPathRegisterFuncNS
+xmlXPathRegisterNs
+xmlXPathRegisterVariable
+xmlXPathRegisterVariableNS
+
unsafe
xmlSprintfElementContent
+
unsigned
c
+xmlURIUnescapeString
+
until
xmlBufferCreateStatic
+xmlParserInputBufferCreateStatic
+xmlSearchNs
+xmlSearchNsByHref
+xmlTextReaderExpand
+xmlTextReaderRelaxNGSetSchema
+xmlTextReaderSetSchema
+xmlXPathAxisFunc
+
unused
ATTRIBUTE_UNUSED
+_xmlEntity
+_xmlSAXHandler
+_xmlSAXHandlerV1
+_xmlSchema
+_xmlXPathContext
+xmlDOMWrapReconcileNamespaces
+xmlDOMWrapRemoveNode
+xmlSchemaValidateFile
+xmlShellBase
+xmlShellCat
+xmlShellDir
+xmlShellDu
+xmlShellList
+xmlShellLoad
+xmlShellPwd
+xmlShellSave
+xmlShellValidate
+xmlShellWrite
+
update
xmlCheckHTTPInput
+xmlNanoFTPUpdateURL
+xmlSetListDoc
+xmlSetTreeDoc
+xmlSplitQName3
+xmlValidCtxtNormalizeAttributeValue
+
updated
xmlCatalogAddLocal
+xmlGetFeaturesList
+xmlNamespaceParseQName
+xmlRegExecErrInfo
+xmlRegExecNextValues
+xmlSplitQName
+xmlSplitQName2
+
upon
checkNamespace
+xlinkNodeDetectFunc
+
upper
xmlIsRef
+
uri
xmlNormalizeWindowsPath
+
usage
xmlGetBufferAllocationScheme
+xmlSetBufferAllocationScheme
+
used:
XML_DEFAULT_VERSION
+
useful
xmlGcMemGet
+xmlGcMemSetup
+xmlNewRMutex
+xmlParserInputBufferCreateStatic
+
useless
setDocumentLocator
+setDocumentLocatorSAXFunc
+xmlSAX2SetDocumentLocator
+
userData
xmlValidityErrorFunc
+xmlValidityWarningFunc
+
users
_xmlSchema
+
uses
htmlNodeStatus
+
usually
c
+xmlInitCharEncodingHandlers
xmlSchemaGetPredefinedType
+xmlTextReaderGetParserProp
+xmlTextReaderSetParserProp
+xmlValidityErrorFunc
+xmlValidityWarningFunc
+
utf8
xmlCharEncFirstLine
+xmlCharEncInFunc
+xmlCharEncOutFunc
+

Letter v:

val1
xmlXPtrLocationSetMerge
+
validated
xmlCharInRange
+xmlSchemaValidateLengthFacet
+xmlSchemaValidateLengthFacetWhtsp
+
validates
xmlSchemaValPredefTypeNode
+xmlSchemaValPredefTypeNodeNoNorm
+xmlSchemaValidatePredefinedType
+xmlValidateDocument
+xmlValidateNCName
+xmlValidateNMToken
+xmlValidateName
+xmlValidateQName
+
validating
_xmlAttr
+_xmlElement
+_xmlValidCtxt
+xmlKeepBlanksDefault
+xmlRelaxNGValidatePushElement
+xmlSetGenericErrorFunc
+xmlSetStructuredErrorFunc
+
validity
_xmlParserCtxt
+_xmlValidCtxt
+xlinkIsLink
+xmlGenericErrorFunc
+xmlParseAttValue
+xmlParserValidityError
+xmlParserValidityWarning
+xmlTextReaderIsValid
+xmlURIEscape
+xmlURIUnescapeString
+xmlValidGetValidElements
+xmlValidateDocumentFinal
+xmlValidateNotationDecl
+xmlValidityErrorFunc
+xmlValidityWarningFunc
+
value:
xmlCheckUTF8
+
values:
xmlSetCompressMode
+xmlSetDocCompressMode
+xmlValidCtxtNormalizeAttributeValue
+xmlValidNormalizeAttributeValue
+
varags
xmlGenericErrorFunc
+
vararg
xmlValidityErrorFunc
+xmlValidityWarningFunc
+
variables
_xmlXPathContext
+xmlNanoFTPProxy
+xmlXPathRegisteredNsCleanup
+xmlXPathRegisteredVariablesCleanup
+
variant
xmlDetectCharEncoding
+
variety
XML_SCHEMAS_TYPE_VARIETY_ABSENT
+XML_SCHEMAS_TYPE_VARIETY_ATOMIC
+XML_SCHEMAS_TYPE_VARIETY_LIST
+XML_SCHEMAS_TYPE_VARIETY_UNION
+
very
_htmlElemDesc
+_xmlParserInput
+xmlCharEncFirstLine
+
via
xmlNanoHTTPFetch
+xmlNanoHTTPMethod
+xmlNanoHTTPMethodRedir
+xmlNanoHTTPOpen
+xmlNanoHTTPOpenRedir
+
view
xmlShell
+
violated
XML_CAST_FPTR
+
visible
xmlC14NExecute
+
void
XML_CAST_FPTR
+xmlSAXParseFileWithData
+xmlSAXParseMemoryWithData

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk3.html b/doc/APIchunk3.html index 3e5abb3e..2b955580 100644 --- a/doc/APIchunk3.html +++ b/doc/APIchunk3.html @@ -13,29 +13,30 @@ A:link, A:visited, A:active { text-decoration: underline } F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Letter F:

FALSE
xmlTextWriterStartDTDEntity
xmlTextWriterWriteDTDEntity
xmlTextWriterWriteDTDExternalEntity
@@ -304,27 +305,28 @@ A:link, A:visited, A:active { text-decoration: underline } F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk4.html b/doc/APIchunk4.html index a70e08f8..52d47503 100644 --- a/doc/APIchunk4.html +++ b/doc/APIchunk4.html @@ -13,29 +13,30 @@ A:link, A:visited, A:active { text-decoration: underline } F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Letter J:

Jan
_htmlElemDesc
Java
xmlCheckUTF8

Letter K:

Kanbun
xmlUCSIsKanbun
@@ -326,27 +327,28 @@ A:link, A:visited, A:active { text-decoration: underline } F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk5.html b/doc/APIchunk5.html index abf5f623..05ab344e 100644 --- a/doc/APIchunk5.html +++ b/doc/APIchunk5.html @@ -13,29 +13,30 @@ A:link, A:visited, A:active { text-decoration: underline } F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Letter O:

OBSOLETE:
xmlHandleEntity
ONCE
_xmlElementContent
OPT
_xmlElementContent
@@ -143,6 +144,7 @@ A:link, A:visited, A:active { text-decoration: underline }
People
xmlEncodeEntities
PhoneticExtensions
xmlUCSIsPhoneticExtensions
Please
xmlNormalizeWindowsPath
+
Plug
xmlSchemaSAXPlug
Pointer
xmlCheckUTF8
Points
xmlXPtrNewRangePoints
Pop
xmlRelaxNGValidatePopElement
@@ -252,27 +254,28 @@ A:link, A:visited, A:active { text-decoration: underline } F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk6.html b/doc/APIchunk6.html index ed049bdf..b2179c00 100644 --- a/doc/APIchunk6.html +++ b/doc/APIchunk6.html @@ -7,35 +7,36 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index Q-S for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index Q-S for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index Q-R for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index Q-R for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Letter Q:

QName
xmlBuildQName
xmlDictQLookup
xmlHashQLookup
@@ -86,6 +87,8 @@ A:link, A:visited, A:active { text-decoration: underline } xmlTextReaderGetParserProp
xmlTextReaderRelaxNGSetSchema
xmlTextReaderRelaxNGValidate
+xmlTextReaderSchemaValidate
+xmlTextReaderSetSchema
Reader
xmlTextReaderPreserve
xmlTextReaderPreservePattern
Readers
xmlTextReaderNextSibling
@@ -175,6 +178,7 @@ A:link, A:visited, A:active { text-decoration: underline } xmlRelaxParserSetFlag
xmlTextReaderRelaxNGSetSchema
xmlTextReaderRelaxNGValidate
+xmlTextReaderSchemaValidate
RelaxNGs
xmlRelaxNGNewDocParserCtxt
xmlRelaxNGNewMemParserCtxt
xmlRelaxNGNewParserCtxt
@@ -236,290 +240,34 @@ A:link, A:visited, A:active { text-decoration: underline }
Root
xmlParseDocTypeDecl
xmlValidateRoot
Runic
xmlUCSIsRunic
-

Letter S:

SAX1
LIBXML_SAX1_ENABLED
-
SAX2
XML_SAX2_MAGIC
-endElementNsSAX2Func
-initdocbDefaultSAXHandler
-inithtmlDefaultSAXHandler
-initxmlDefaultSAXHandler
-startElementNsSAX2Func
-xmlDefaultSAXHandlerInit
-xmlSAX2EndElementNs
-xmlSAX2InitDefaultSAXHandler
-xmlSAX2InitDocbDefaultSAXHandler
-xmlSAX2InitHtmlDefaultSAXHandler
-xmlSAX2StartElementNs
-
SAX::substituteEntities
xmlSubstituteEntitiesDefault
-
SDDecl
xmlParseSDDecl
-
SDDecl?
xmlParseXMLDecl
-
SEQ
_xmlElementContent
-
SGML
LIBXML_DOCB_ENABLED
-docbCreateFileParserCtxt
-docbCreatePushParserCtxt
-docbEncodeEntities
-docbFreeParserCtxt
-docbParseDoc
-docbParseDocument
-docbParseFile
-docbSAXParseDoc
-docbSAXParseFile
-xmlCatalogConvert
-xmlCatalogIsEmpty
-xmlConvertSGMLCatalog
-xmlLoadACatalog
-xmlLoadCatalog
-xmlLoadSGMLSuperCatalog
-xmlNewCatalog
-xmlParseComment
-
SGMLSOURCE
getPublicId
-xmlSAX2GetPublicId
-
SITE
xmlNanoFTPProxy
-
STag
htmlParseElement
-xmlParseElement
-xmlParseStartTag
-
SYSTEM
_xmlDtd
-_xmlEntity
-_xmlParserCtxt
-externalSubset
-externalSubsetSAXFunc
-internalSubset
-internalSubsetSAXFunc
-xmlParseExternalID
-xmlParseNotationDecl
-xmlSAX2ExternalSubset
-xmlSAX2InternalSubset
-
Same
IS_PUBIDCHAR_CH
-
Save
xmlCopyError
-xmlSaveDoc
-xmlSaveTree
-xmlSaveUri
-
Scan
xmlHashCopy
-xmlHashScan
-xmlHashScan3
-xmlHashScanFull
-xmlHashScanFull3
-
Schema
xmlSchemaDump
-xmlSchemaFree
-xmlSchemaFreeFacet
-xmlSchemaFreeType
-xmlSchemaGetBuiltInListSimpleTypeItemType
-xmlSchemaGetCanonValue
-xmlSchemaParse
-
Schemas
LIBXML_SCHEMAS_ENABLED
-xmlRegexpCompile
-xmlRelaxNGCleanupTypes
-xmlSchemaCleanupTypes
-xmlSchemaFreeValue
-xmlSchemaGetPredefinedType
-xmlSchemaInitTypes
-xmlSchemaNewDocParserCtxt
-xmlSchemaNewMemParserCtxt
-xmlSchemaNewParserCtxt
-xmlSchemaNewValidCtxt
-
Script
htmlIsScriptAttribute
-
Search
xmlFindCharEncodingHandler
-xmlGetCharEncodingHandler
-xmlGetDtdAttrDesc
-xmlGetDtdElementDesc
-xmlGetDtdNotationDesc
-xmlGetDtdQAttrDesc
-xmlGetDtdQElementDesc
-xmlGetID
-xmlGetLastChild
-xmlGetNoNsProp
-xmlGetNsList
-xmlGetNsProp
-xmlGetProp
-xmlHasNsProp
-xmlHasProp
-xmlIsMixedElement
-xmlListReverseSearch
-xmlListSearch
-xmlSearchNs
-xmlSearchNsByHref
-xmlXPathFunctionLookup
-xmlXPathFunctionLookupNS
-xmlXPathNsLookup
-xmlXPathVariableLookup
-xmlXPathVariableLookupNS
-
Searches
xmlNodeGetBase
-xmlNodeGetLang
-xmlNodeGetSpacePreserve
-
Second
xmlCheckLanguageID
-
Section
xmlGetCharEncodingName
-xmlNormalizeURIPath
-
See
xmlLinkGetData
-xmlParseNotationDecl
-xmlTextReaderByteConsumed
-
Seems
xmlParseTextDecl
-
Semi
xmlRelaxParserSetFlag
-
Send
xmlNanoFTPQuit
-
Serialize
xmlAttrSerializeTxtContent
-
Set
htmlHandleOmittedElem
-initGenericErrorDefaultFunc
-setNamespace
-xlinkSetDefaultDetect
-xlinkSetDefaultHandler
-xmlDocSetRootElement
-xmlInitializePredefinedEntities
-xmlKeepBlanksDefault
-xmlLineNumbersDefault
-xmlNodeSetBase
-xmlNodeSetLang
-xmlNodeSetName
-xmlNodeSetSpacePreserve
-xmlPedanticParserDefault
-xmlRelaxNGSetParserErrors
-xmlRelaxNGSetValidErrors
-xmlSAXDefaultVersion
-xmlSaveSetAttrEscape
-xmlSaveSetEscape
-xmlSchemaSetParserErrors
-xmlSchemaSetValidErrors
-xmlSetBufferAllocationScheme
-xmlSetEntityReferenceFunc
-xmlSetNsProp
-xmlSetProp
-xmlSubstituteEntitiesDefault
-xmlTextWriterSetIndent
-xmlTextWriterSetIndentString
-xmlXIncludeSetFlags
-xmlXPtrEvalRangePredicate
-
Sets
htmlSetMetaEncoding
-xmlBufferSetAllocationScheme
-xmlSchemaSetValidOptions
-xmlXPathDifference
-xmlXPathDistinct
-xmlXPathDistinctSorted
-xmlXPathHasSameNodes
-xmlXPathIntersection
-xmlXPathLeading
-xmlXPathLeadingSorted
-xmlXPathNodeLeading
-xmlXPathNodeLeadingSorted
-xmlXPathNodeTrailing
-xmlXPathNodeTrailingSorted
-xmlXPathTrailing
-xmlXPathTrailingSorted
-
Setup
xmlNanoFTPProxy
-xmlReaderNewDoc
-xmlReaderNewFd
-xmlReaderNewIO
-xmlReaderNewMemory
-xmlReaderNewWalker
-xmlSetupParserForBuffer
-
Shavian
xmlUCSIsShavian
-
Shell
xmlShellReadlineFunc
-
Shema
xmlRelaxNGParse
-xmlSchemaParse
-
Should
_xmlParserCtxt
-xmlGcMemSetup
-xmlMemSetup
-xmlNanoFTPScanProxy
-xmlNanoHTTPScanProxy
-xmlStrEqual
-xmlStringGetNodeList
-xmlStringLenGetNodeList
-
Show
xmlShellPwd
-
Signature
xmlFreeFunc
-xmlGenericErrorFunc
-xmlMallocFunc
-xmlReallocFunc
-xmlStrdupFunc
-xmlStructuredErrorFunc
-
Similarly
xmlParseEntityRef
-
Simply
xmlCreateURI
-
Since
xmlStrcat
-xmlStrdup
-xmlTextReaderNormalization
-
Sinhala
xmlUCSIsSinhala
-
Skip
XML_SCHEMAS_ANYATTR_SKIP
-XML_SCHEMAS_ANY_SKIP
-xmlNextChar
-xmlParseComment
-xmlTextReaderNext
-xmlTextReaderNextSibling
-
Skips
MOVETO_ENDTAG
-MOVETO_STARTTAG
-SKIP_EOL
-
SmallFormVariants
xmlUCSIsSmallFormVariants
-
Some
_htmlElemDesc
-xmlBuildRelativeURI
-xmlSchemaGetCanonValue
-
Sort
xmlListSort
-xmlXPathNodeSetSort
-
SpacingModifierLetters
xmlUCSIsSpacingModifierLetters
-
Spec
xmlParseStartTag
-
Special
XML_CTXT_FINISH_DTD_0
-XML_CTXT_FINISH_DTD_1
-XML_SAX2_MAGIC
-
Specials
xmlUCSIsSpecials
-
Speed
_xmlParserCtxt
-
Standalone
xmlParseSDDecl
-xmlValidCtxtNormalizeAttributeValue
-
Start
xmlNanoFTPOpen
-xmlTextWriterStartAttribute
-xmlTextWriterStartAttributeNS
-xmlTextWriterStartCDATA
-xmlTextWriterStartComment
-xmlTextWriterStartDTD
-xmlTextWriterStartDTDAttlist
-xmlTextWriterStartDTDElement
-xmlTextWriterStartDTDEntity
-xmlTextWriterStartDocument
-xmlTextWriterStartElement
-xmlTextWriterStartElementNS
-xmlTextWriterStartPI
-
StringType
xmlParseAttributeType
-
Strings
xmlXPathStringLengthFunction
-xmlXPathSubstringFunction
-
Subcode
xmlCheckLanguageID
-
Subset
xmlParseMarkupDecl
-
Super
xmlLoadSGMLSuperCatalog
-
SuperscriptsandSubscripts
xmlUCSIsSuperscriptsandSubscripts
-
SupplementalArrows-A
xmlUCSIsSupplementalArrowsA
-
SupplementalArrows-B
xmlUCSIsSupplementalArrowsB
-
SupplementalMathematicalOperators
xmlUCSIsSupplementalMathematicalOperators
-
SupplementaryPrivateUseArea-A
xmlUCSIsSupplementaryPrivateUseAreaA
-
SupplementaryPrivateUseArea-B
xmlUCSIsSupplementaryPrivateUseAreaB
-
Syriac
xmlUCSIsSyriac
-
System
_xmlNotation
-xmlExternalEntityLoader
-xmlNoNetExternalEntityLoader
-xmlParseCtxtExternalEntity
-xmlParseExternalEntity
-xmlTextReaderNodeType
-
SystemLiteral
xmlNamespaceParseNSDef
-xmlParseExternalID
-xmlParseNotationDecl
-xmlParseSystemLiteral

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk7.html b/doc/APIchunk7.html index 20c5ff89..825348dc 100644 --- a/doc/APIchunk7.html +++ b/doc/APIchunk7.html @@ -7,283 +7,323 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index T-U for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index T-U for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index S-S for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index S-S for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter T:

TEXT
xmlAddChild
-xmlAddChildList
-xmlAddPrevSibling
-xmlAddSibling
-xmlNewTextChild
-xmlNodeBufGetContent
-xmlNodeGetContent
-
TEXTs
xmlNewChild
-xmlNodeListGetRawString
-xmlNodeListGetString
-xmlStringGetNodeList
-xmlStringLenGetNodeList
-
TODO
xmlParseElementChildrenContentDecl
-xmlParseSDDecl
-
TODO:
htmlEntityLookup
-htmlEntityValueLookup
-htmlNodeDumpFileFormat
-xmlDecodeEntities
-xmlEncodeEntities
-xmlLoadExternalEntity
-xmlModuleOpen
-xmlNamespaceParseNCName
-xmlNamespaceParseNSDef
-xmlNamespaceParseQName
-xmlNewTextWriterMemory
-xmlNewTextWriterPushParser
-xmlOutputBufferCreateFilename
-xmlParseNamespace
-xmlParseQuotedString
-xmlParserHandleReference
-xmlParserInputBufferGrow
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter S:

SAX1
LIBXML_SAX1_ENABLED
+
SAX2
XML_SAX2_MAGIC
+endElementNsSAX2Func
+initdocbDefaultSAXHandler
+inithtmlDefaultSAXHandler
+initxmlDefaultSAXHandler
+startElementNsSAX2Func
+xmlDefaultSAXHandlerInit
+xmlSAX2EndElementNs
+xmlSAX2InitDefaultSAXHandler
+xmlSAX2InitDocbDefaultSAXHandler
+xmlSAX2InitHtmlDefaultSAXHandler
+xmlSAX2StartElementNs
+xmlSchemaValidateStream
+
SAX::substituteEntities
xmlSubstituteEntitiesDefault
+
SDDecl
xmlParseSDDecl
+
SDDecl?
xmlParseXMLDecl
+
SEQ
_xmlElementContent
+
SGML
LIBXML_DOCB_ENABLED
+docbCreateFileParserCtxt
+docbCreatePushParserCtxt
+docbEncodeEntities
+docbFreeParserCtxt
+docbParseDoc
+docbParseDocument
+docbParseFile
+docbSAXParseDoc
+docbSAXParseFile
+xmlCatalogConvert
+xmlCatalogIsEmpty
+xmlConvertSGMLCatalog
+xmlLoadACatalog
+xmlLoadCatalog
+xmlLoadSGMLSuperCatalog
+xmlNewCatalog
+xmlParseComment
+
SGMLSOURCE
getPublicId
+xmlSAX2GetPublicId
+
SITE
xmlNanoFTPProxy
+
STag
htmlParseElement
+xmlParseElement
+xmlParseStartTag
+
SYSTEM
_xmlDtd
+_xmlEntity
+_xmlParserCtxt
+externalSubset
+externalSubsetSAXFunc
+internalSubset
+internalSubsetSAXFunc
+xmlParseExternalID
+xmlParseNotationDecl
+xmlSAX2ExternalSubset
+xmlSAX2InternalSubset
+
Same
IS_PUBIDCHAR_CH
+
Save
xmlCopyError
xmlSaveDoc
xmlSaveTree
-xmlScanName
-xmlSchemaGetCanonValue
-xmlTextWriterWriteRawLen
-xmlXPathNextAttribute
-
TRUE
xmlTextWriterStartDTDEntity
-xmlTextWriterWriteDTDEntity
-xmlTextWriterWriteDTDExternalEntity
-xmlTextWriterWriteDTDInternalEntity
-xmlTextWriterWriteFormatDTDInternalEntity
-xmlTextWriterWriteVFormatDTDInternalEntity
-
Tagalog
xmlUCSIsTagalog
-
Tagbanwa
xmlUCSIsTagbanwa
-
Tags
xmlUCSIsTags
-
TaiLe
xmlUCSIsTaiLe
-
TaiXuanJingSymbols
xmlUCSIsTaiXuanJingSymbols
-
Take
UTF8ToHtml
-UTF8Toisolat1
-docbEncodeEntities
-htmlEncodeEntities
-isolat1ToUTF8
-xmlCharEncodingInputFunc
-xmlCharEncodingOutputFunc
-
Takes
xmlStringDecodeEntities
-xmlStringLenDecodeEntities
-
Tamil
xmlUCSIsTamil
-
Telugu
xmlUCSIsTelugu
-
Test
xmlPatternMatch
-
Text
xmlNodeIsText
-xmlTextReaderReadAttributeValue
-xmlTextReaderReadString
-
TextDecl
xmlParseTextDecl
-
TextDecl?
xmlParseCtxtExternalEntity
-xmlParseEntity
-xmlParseExtParsedEnt
-xmlParseExternalEntity
-xmlSAXParseEntity
-
Thaana
xmlUCSIsThaana
-
Thai
xmlUCSIsThai
-
That
xmlAutomataNewAllTrans
-xmlParseElementChildrenContentDecl
-xmlParseMarkupDecl
-
Then
xmlValidateOneElement
-
Those
_xmlParserCtxt
-
Thus:
xmlXPathSubstringFunction
-
Tibetan
xmlUCSIsTibetan
-
Token
xmlParseAttributeType
-xmlValidateAttributeValue
-xmlValidateNmtokenValue
-xmlValidateNmtokensValue
-xmlValidateOneAttribute
-xmlValidateOneNamespace
-
TokenizedType
xmlParseAttributeType
-
Traversal
xmlXPathNextAncestor
-xmlXPathNextAncestorOrSelf
-xmlXPathNextAttribute
-xmlXPathNextChild
-xmlXPathNextDescendant
-xmlXPathNextDescendantOrSelf
-xmlXPathNextFollowing
-xmlXPathNextFollowingSibling
-xmlXPathNextNamespace
-xmlXPathNextParent
-xmlXPathNextPreceding
-xmlXPathNextPrecedingSibling
-xmlXPathNextSelf
-
Tree
xmlXPathNewValueTree
-
Tree:-
xmlParseNamespace
-
Trickery:
xmlScanName
-
Tries
xmlNanoFTPConnect
-xmlNanoFTPConnectTo
-xmlNanoFTPCwd
-xmlNanoFTPDele
-
True
xmlBoolToText
-
Try
xmlACatalogResolvePublic
-xmlACatalogResolveSystem
-xmlCatalogGetPublic
-xmlCatalogGetSystem
-xmlCatalogResolvePublic
-xmlCatalogResolveSystem
-xmlIsXHTML
-xmlNanoFTPGetConnection
-xmlValidateAttributeDecl
-xmlValidateDocument
-xmlValidateDtd
-xmlValidateElement
-xmlValidateElementDecl
-xmlValidateNotationDecl
-xmlValidateOneAttribute
-xmlValidateOneElement
-xmlValidateOneNamespace
-xmlValidateRoot
-
Type
xmlParseAttribute
-xmlParseAttributeType
-xmlParseDocTypeDecl
-xmlParseElement
-xmlParseElementDecl
+xmlSaveUri
+
Scan
xmlHashCopy
+xmlHashScan
+xmlHashScan3
+xmlHashScanFull
+xmlHashScanFull3
+
Schema
xmlSchemaDump
+xmlSchemaFree
+xmlSchemaFreeFacet
xmlSchemaFreeType
-xmlValidateElementDecl
-xmlValidateOneAttribute
-xmlValidateOneNamespace
-xmlValidateRoot
-
Types
xmlGetBufferAllocationScheme
-xmlParseElementMixedContentDecl
-xmlSetBufferAllocationScheme
-xmlValidateElementDecl
-

Letter U:

UCS4
xmlUTF8Charcmp
-
UNICODE
_htmlEntityDesc
-c
-
UNIX
xmlShell
-
UNUSED:
ignorableWhitespace
-ignorableWhitespaceSAXFunc
-xmlSAX2IgnorableWhitespace
-
URI-reference
xmlParseURI
-xmlParseURIReference
-
URN
globalNamespace
-namespaceDecl
-
USER
xmlNanoFTPProxy
-
UTF16
xmlCharEncOutFunc
-
UTF4
xmlDetectCharEncoding
-
UTF8
_xmlBuffer
-p
-xmlCharEncOutFunc
-xmlGetUTF8Char
-xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlSplitQName
-xmlUTF8Charcmp
-xmlUTF8Size
-xmlUTF8Strlen
-xmlUTF8Strloc
-xmlUTF8Strndup
-xmlUTF8Strpos
-xmlUTF8Strsize
-
Ugaritic
xmlUCSIsUgaritic
-
Unescaping
xmlURIUnescapeString
-
Unicode
IS_CHAR
-LIBXML_UNICODE_ENABLED
-
UnifiedCanadianAboriginalSyllabics
xmlUCSIsUnifiedCanadianAboriginalSyllabics
-
Unique
xmlParseElementDecl
-xmlParseStartTag
-xmlValidateElementDecl
-xmlXPathIdFunction
-
Unix
xmlShellList
-
Unlink
xmlRemoveProp
-xmlReplaceNode
-xmlUnlinkNode
-
Unlinks
xmlDOMWrapRemoveNode
-
Unregisters
xmlCleanupEncodingAliases
-xmlDelEncodingAlias
-
Update
xmlNanoFTPUpdateURL
-
Upgrade
xmlKeepBlanksDefault
-
Use
XML_COMPLETE_ATTRS
-XML_DETECT_IDS
-_xmlParserCtxt
-xmlCopyNodeList
+xmlSchemaGetBuiltInListSimpleTypeItemType
+xmlSchemaGetCanonValue
+xmlSchemaParse
+xmlTextReaderSetSchema
+
Schemas
LIBXML_SCHEMAS_ENABLED
+xmlRegexpCompile
+xmlRelaxNGCleanupTypes
+xmlSchemaCleanupTypes
+xmlSchemaFreeValue
+xmlSchemaGetPredefinedType
+xmlSchemaInitTypes
+xmlSchemaNewDocParserCtxt
+xmlSchemaNewMemParserCtxt
+xmlSchemaNewParserCtxt
+xmlSchemaNewValidCtxt
+
Script
htmlIsScriptAttribute
+
Search
xmlFindCharEncodingHandler
+xmlGetCharEncodingHandler
+xmlGetDtdAttrDesc
+xmlGetDtdElementDesc
+xmlGetDtdNotationDesc
+xmlGetDtdQAttrDesc
+xmlGetDtdQElementDesc
+xmlGetID
+xmlGetLastChild
+xmlGetNoNsProp
+xmlGetNsList
+xmlGetNsProp
xmlGetProp
-xmlIsBaseChar
-xmlIsBlank
-xmlIsChar
-xmlIsCombining
-xmlIsDigit
-xmlIsExtender
-xmlIsIdeographic
-xmlIsPubidChar
-xmlNewDocNode
-xmlNewDocNodeEatName
-xmlNewNodeEatName
-xmlNewPI
-xmlNewTextChild
-xmlPatternGetStreamCtxt
-xmlTextReaderRelaxNGSetSchema
-xmlTextReaderRelaxNGValidate
-
Used
XML_SCHEMAS_ANY_LAX
-XML_SCHEMAS_ANY_STRICT
-XML_SCHEMAS_ATTR_USE_PROHIBITED
-XML_SKIP_IDS
-xmlCatalogGetDefaults
-xmlCatalogSetDebug
-xmlCatalogSetDefaults
-xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
+xmlHasNsProp
+xmlHasProp
+xmlIsMixedElement
+xmlListReverseSearch
+xmlListSearch
+xmlSearchNs
+xmlSearchNsByHref
+xmlXPathFunctionLookup
+xmlXPathFunctionLookupNS
+xmlXPathNsLookup
+xmlXPathVariableLookup
+xmlXPathVariableLookupNS
+
Searches
xmlNodeGetBase
+xmlNodeGetLang
+xmlNodeGetSpacePreserve
+
Second
xmlCheckLanguageID
+
Section
xmlGetCharEncodingName
+xmlNormalizeURIPath
+
See
xmlLinkGetData
+xmlParseNotationDecl
+xmlTextReaderByteConsumed
+
Seems
xmlParseTextDecl
+
Semi
xmlRelaxParserSetFlag
+
Send
xmlNanoFTPQuit
+
Serialize
xmlAttrSerializeTxtContent
+
Set
htmlHandleOmittedElem
+initGenericErrorDefaultFunc
+setNamespace
+xlinkSetDefaultDetect
+xlinkSetDefaultHandler
+xmlDocSetRootElement
+xmlInitializePredefinedEntities
+xmlKeepBlanksDefault
+xmlLineNumbersDefault
+xmlNodeSetBase
+xmlNodeSetLang
+xmlNodeSetName
+xmlNodeSetSpacePreserve
+xmlPedanticParserDefault
+xmlRelaxNGSetParserErrors
+xmlRelaxNGSetValidErrors
+xmlSAXDefaultVersion
+xmlSaveSetAttrEscape
+xmlSaveSetEscape
+xmlSchemaSetParserErrors
+xmlSchemaSetValidErrors
+xmlSetBufferAllocationScheme
+xmlSetEntityReferenceFunc
+xmlSetNsProp
+xmlSetProp
+xmlSubstituteEntitiesDefault
+xmlTextWriterSetIndent
+xmlTextWriterSetIndentString
+xmlXIncludeSetFlags
+xmlXPtrEvalRangePredicate
+
Sets
htmlSetMetaEncoding
+xmlBufferSetAllocationScheme
+xmlSchemaSetValidOptions
+xmlXPathDifference
+xmlXPathDistinct
+xmlXPathDistinctSorted
+xmlXPathHasSameNodes
+xmlXPathIntersection
+xmlXPathLeading
+xmlXPathLeadingSorted
+xmlXPathNodeLeading
+xmlXPathNodeLeadingSorted
+xmlXPathNodeTrailing
+xmlXPathNodeTrailingSorted
+xmlXPathTrailing
+xmlXPathTrailingSorted
+
Setup
xmlNanoFTPProxy
+xmlReaderNewDoc
+xmlReaderNewFd
+xmlReaderNewIO
+xmlReaderNewMemory
+xmlReaderNewWalker
+xmlSetupParserForBuffer
+
Shavian
xmlUCSIsShavian
+
Shell
xmlShellReadlineFunc
+
Shema
xmlRelaxNGParse
+xmlSchemaParse
+
Should
_xmlParserCtxt
+xmlGcMemSetup
+xmlMemSetup
+xmlNanoFTPScanProxy
+xmlNanoHTTPScanProxy
+xmlStrEqual
+xmlStringGetNodeList
+xmlStringLenGetNodeList
+
Show
xmlShellPwd
+
Signature
xmlFreeFunc
+xmlGenericErrorFunc
+xmlMallocFunc
+xmlReallocFunc
+xmlStrdupFunc
+xmlStructuredErrorFunc
+
Similarly
xmlParseEntityRef
+
Simply
xmlCreateURI
+
Since
xmlStrcat
+xmlStrdup
+xmlTextReaderNormalization
+
Sinhala
xmlUCSIsSinhala
+
Skip
XML_SCHEMAS_ANYATTR_SKIP
+XML_SCHEMAS_ANY_SKIP
+xmlNextChar
+xmlParseComment
+xmlTextReaderNext
+xmlTextReaderNextSibling
+
Skips
MOVETO_ENDTAG
+MOVETO_STARTTAG
+SKIP_EOL
+
SmallFormVariants
xmlUCSIsSmallFormVariants
+
Some
_htmlElemDesc
+xmlBuildRelativeURI
+xmlSchemaGetCanonValue
+
Sort
xmlListSort
+xmlXPathNodeSetSort
+
SpacingModifierLetters
xmlUCSIsSpacingModifierLetters
+
Spec
xmlParseStartTag
+
Special
XML_CTXT_FINISH_DTD_0
+XML_CTXT_FINISH_DTD_1
+XML_SAX2_MAGIC
+
Specials
xmlUCSIsSpecials
+
Speed
_xmlParserCtxt
+
Standalone
xmlParseSDDecl
+xmlValidCtxtNormalizeAttributeValue
+
Start
xmlNanoFTPOpen
+xmlTextWriterStartAttribute
+xmlTextWriterStartAttributeNS
+xmlTextWriterStartCDATA
+xmlTextWriterStartComment
+xmlTextWriterStartDTD
+xmlTextWriterStartDTDAttlist
+xmlTextWriterStartDTDElement
+xmlTextWriterStartDTDEntity
+xmlTextWriterStartDocument
+xmlTextWriterStartElement
+xmlTextWriterStartElementNS
+xmlTextWriterStartPI
+
StringType
xmlParseAttributeType
+
Strings
xmlXPathStringLengthFunction
+xmlXPathSubstringFunction
+
Subcode
xmlCheckLanguageID
+
Subset
xmlParseMarkupDecl
+
Super
xmlLoadSGMLSuperCatalog
+
SuperscriptsandSubscripts
xmlUCSIsSuperscriptsandSubscripts
+
SupplementalArrows-A
xmlUCSIsSupplementalArrowsA
+
SupplementalArrows-B
xmlUCSIsSupplementalArrowsB
+
SupplementalMathematicalOperators
xmlUCSIsSupplementalMathematicalOperators
+
SupplementaryPrivateUseArea-A
xmlUCSIsSupplementaryPrivateUseAreaA
+
SupplementaryPrivateUseArea-B
xmlUCSIsSupplementaryPrivateUseAreaB
+
Syriac
xmlUCSIsSyriac
+
System
_xmlNotation
+xmlExternalEntityLoader
+xmlNoNetExternalEntityLoader
+xmlParseCtxtExternalEntity
xmlParseExternalEntity
-xmlScanName
-
User
xmlSAXParseFileWithData
-xmlSAXParseMemoryWithData
-
UserCode
xmlCheckLanguageID
-
Uses
xmlNewNode
-xmlURIEscape
+xmlTextReaderNodeType
+
SystemLiteral
xmlNamespaceParseNSDef
+xmlParseExternalID
+xmlParseNotationDecl
+xmlParseSystemLiteral

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk8.html b/doc/APIchunk8.html index d87da06f..22ea3f85 100644 --- a/doc/APIchunk8.html +++ b/doc/APIchunk8.html @@ -7,264 +7,288 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index V-Z for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index V-Z for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index T-U for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index T-U for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter V:

Valid
xmlValidateOneElement
-
Validate
XML_SCHEMAS_ANY_LAX
-xmlRelaxNGValidateDoc
-xmlRelaxNGValidateFullElement
-xmlSchemaValidateDoc
-xmlSchemaValidateOneElement
-xmlSchemaValidateStream
-xmlShellValidate
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter T:

TEXT
xmlAddChild
+xmlAddChildList
+xmlAddPrevSibling
+xmlAddSibling
+xmlNewTextChild
+xmlNodeBufGetContent
+xmlNodeGetContent
+
TEXTs
xmlNewChild
+xmlNodeListGetRawString
+xmlNodeListGetString
+xmlStringGetNodeList
+xmlStringLenGetNodeList
+
TODO
xmlParseElementChildrenContentDecl
+xmlParseSDDecl
+
TODO:
htmlEntityLookup
+htmlEntityValueLookup
+htmlNodeDumpFileFormat
+xmlDecodeEntities
+xmlEncodeEntities
+xmlLoadExternalEntity
+xmlModuleOpen
+xmlNamespaceParseNCName
+xmlNamespaceParseNSDef
+xmlNamespaceParseQName
+xmlNewTextWriterMemory
+xmlNewTextWriterPushParser
+xmlOutputBufferCreateFilename
+xmlParseNamespace
+xmlParseQuotedString
+xmlParserHandleReference
+xmlParserInputBufferGrow
+xmlSaveDoc
+xmlSaveTree
+xmlScanName
+xmlSchemaGetCanonValue
+xmlTextWriterWriteRawLen
+xmlXPathNextAttribute
+
TRUE
xmlTextWriterStartDTDEntity
+xmlTextWriterWriteDTDEntity
+xmlTextWriterWriteDTDExternalEntity
+xmlTextWriterWriteDTDInternalEntity
+xmlTextWriterWriteFormatDTDInternalEntity
+xmlTextWriterWriteVFormatDTDInternalEntity
+
Tagalog
xmlUCSIsTagalog
+
Tagbanwa
xmlUCSIsTagbanwa
+
Tags
xmlUCSIsTags
+
TaiLe
xmlUCSIsTaiLe
+
TaiXuanJingSymbols
xmlUCSIsTaiXuanJingSymbols
+
Take
UTF8ToHtml
+UTF8Toisolat1
+docbEncodeEntities
+htmlEncodeEntities
+isolat1ToUTF8
+xmlCharEncodingInputFunc
+xmlCharEncodingOutputFunc
+
Takes
xmlStringDecodeEntities
+xmlStringLenDecodeEntities
+
Tamil
xmlUCSIsTamil
+
Telugu
xmlUCSIsTelugu
+
Test
xmlPatternMatch
+
Text
xmlNodeIsText
+xmlTextReaderReadAttributeValue
+xmlTextReaderReadString
+
TextDecl
xmlParseTextDecl
+
TextDecl?
xmlParseCtxtExternalEntity
+xmlParseEntity
+xmlParseExtParsedEnt
+xmlParseExternalEntity
+xmlSAXParseEntity
+
Thaana
xmlUCSIsThaana
+
Thai
xmlUCSIsThai
+
That
xmlAutomataNewAllTrans
+xmlParseElementChildrenContentDecl
+xmlParseMarkupDecl
+
Then
xmlValidateOneElement
+
Those
_xmlParserCtxt
+
Thus:
xmlXPathSubstringFunction
+
Tibetan
xmlUCSIsTibetan
+
Token
xmlParseAttributeType
xmlValidateAttributeValue
-xmlValidateNameValue
-xmlValidateNamesValue
xmlValidateNmtokenValue
xmlValidateNmtokensValue
-xmlValidateNotationUse
-
Validity
xmlParseAttributeType
-
Value
xmlParseAttribute
xmlValidateOneAttribute
xmlValidateOneNamespace
-xmlXPathNewValueTree
-
Values
xmlCatalogSetDefaultPrefer
-xmlParseAttribute
-xmlParseAttributeType
-xmlParseDefaultDecl
-xmlParseEnumerationType
-xmlParseNotationType
-xmlValidateAttributeValue
-
Variable
xmlXPathVariableLookup
-xmlXPathVariableLookupNS
-
VariationSelectors
xmlUCSIsVariationSelectors
-
VariationSelectorsSupplement
xmlUCSIsVariationSelectorsSupplement
-
VersionInfo
xmlParseVersionInfo
-xmlParseXMLDecl
-
VersionInfo?
xmlParseTextDecl
-
VersionNum
xmlParseVersionInfo
-xmlParseVersionNum
-

Letter W:

WARNING
xmlRelaxNGParse
-xmlSchemaParse
-
WARNING:
xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-xmlDOMWrapRemoveNode
-xmlSchemaGetCanonValue
-xmlSchemaNewStringValue
-
WFC:
xmlParseAttribute
-xmlParseCharRef
-xmlParseDefaultDecl
-xmlParseElement
-xmlParseEntityRef
-xmlParseMarkupDecl
-xmlParsePEReference
-xmlParseStartTag
-xmlParserHandlePEReference
-xmlParserHandleReference
-
WWW-Authenticate
xmlNanoHTTPAuthHeader
-
Walk
xmlListReverseWalk
-xmlListWalk
-
Warning
xmlSaveFileTo
-xmlSaveFormatFileTo
-
Was
_xmlParserInput
-
Well
xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlParseEntity
-xmlParseInNodeContext
-xmlRecoverDoc
-xmlRecoverFile
-xmlRecoverMemory
-xmlSAXParseDoc
-xmlSAXParseEntity
-xmlSAXParseFile
-xmlSAXParseFileWithData
-xmlSAXParseMemory
-xmlSAXParseMemoryWithData
-
What
_xmlError
-notationDecl
-notationDeclSAXFunc
-unparsedEntityDecl
-unparsedEntityDeclSAXFunc
-xmlSAX2NotationDecl
-xmlSAX2UnparsedEntityDecl
-
When
xmlHandleEntity
-xmlXPathCompareValues
-xmlXPathIdFunction
-
Wherever
xmlCurrentChar
-
Whitespace
xmlXPathNormalizeFunction
-
Will
xmlSaveFile
-xmlSaveFormatFile
-
With
xmlParseAttribute
-xmlParseEndTag
-xmlParseStartTag
-
Working
xmlParseNamespace
-
Wrap
xmlXPathWrapNodeSet
-xmlXPtrWrapLocationSet
-
Wrapper
xmlFileOpen
-
Wraps
xmlXPathWrapCString
-xmlXPathWrapExternal
-xmlXPathWrapString
-
Writes
xmlTextWriterFullEndElement
-

Letter X:

XHTML
xmlIsXHTML
-
XInclude
LIBXML_XINCLUDE_ENABLED
-XINCLUDE_NS
-XINCLUDE_OLD_NS
-xmlXIncludeFreeContext
-xmlXIncludeNewContext
-xmlXIncludeProcess
-xmlXIncludeProcessFlags
-xmlXIncludeProcessNode
-xmlXIncludeProcessTree
-xmlXIncludeProcessTreeFlags
-xmlXIncludeSetFlags
-
XLINK_TYPE_NONE
xlinkIsLink
-
XML-1
xmlDetectCharEncoding
+
TokenizedType
xmlParseAttributeType
+
Traversal
xmlXPathNextAncestor
+xmlXPathNextAncestorOrSelf
+xmlXPathNextAttribute
+xmlXPathNextChild
+xmlXPathNextDescendant
+xmlXPathNextDescendantOrSelf
+xmlXPathNextFollowing
+xmlXPathNextFollowingSibling
+xmlXPathNextNamespace
+xmlXPathNextParent
+xmlXPathNextPreceding
+xmlXPathNextPrecedingSibling
+xmlXPathNextSelf
+
Tree
xmlXPathNewValueTree
+
Tree:-
xmlParseNamespace
+
Trickery:
xmlScanName
+
Tries
xmlNanoFTPConnect
+xmlNanoFTPConnectTo
+xmlNanoFTPCwd
+xmlNanoFTPDele
+
True
xmlBoolToText
+
Try
xmlACatalogResolvePublic
+xmlACatalogResolveSystem
+xmlCatalogGetPublic
+xmlCatalogGetSystem
+xmlCatalogResolvePublic
+xmlCatalogResolveSystem
+xmlIsXHTML
+xmlNanoFTPGetConnection
xmlValidateAttributeDecl
+xmlValidateDocument
+xmlValidateDtd
+xmlValidateElement
xmlValidateElementDecl
xmlValidateNotationDecl
xmlValidateOneAttribute
xmlValidateOneElement
xmlValidateOneNamespace
xmlValidateRoot
-
XML-Schema
xmlSchemaGetValidErrors
-
XMLDecl
xmlParseXMLDecl
-
XMLDecl?
xmlParseDocument
-
XMLSchema
xmlSchemaGetPredefinedType
-
XML_ATTRIBUTE_DECL
_xmlAttribute
-
XML_ATTRIBUTE_ENUMERATION
xmlParseEnumeratedType
-
XML_ATTRIBUTE_FIXED
xmlParseDefaultDecl
-
XML_ATTRIBUTE_IMPLIED
xmlParseDefaultDecl
-
XML_ATTRIBUTE_NODE
_xmlAttr
-
XML_ATTRIBUTE_NONE
xmlParseDefaultDecl
-
XML_ATTRIBUTE_NOTATION
xmlParseEnumeratedType
-
XML_ATTRIBUTE_REQUIRED
xmlParseDefaultDecl
-
XML_BUFFER_ALLOC_DOUBLEIT
xmlGetBufferAllocationScheme
+
Type
xmlParseAttribute
+xmlParseAttributeType
+xmlParseDocTypeDecl
+xmlParseElement
+xmlParseElementDecl
+xmlSchemaFreeType
+xmlValidateElementDecl
+xmlValidateOneAttribute
+xmlValidateOneNamespace
+xmlValidateRoot
+
Types
xmlGetBufferAllocationScheme
+xmlParseElementMixedContentDecl
xmlSetBufferAllocationScheme
-
XML_BUFFER_ALLOC_EXACT
xmlGetBufferAllocationScheme
-xmlSetBufferAllocationScheme
-
XML_CAST_FPTR
XML_CAST_FPTR
-
XML_CATA_PREFER_PUBLIC
xmlCatalogSetDefaultPrefer
-
XML_CATA_PREFER_SYSTEM
xmlCatalogSetDefaultPrefer
-
XML_CHAR_ENCODING_
xmlDetectCharEncoding
-xmlParseCharEncoding
-
XML_CHAR_ENCODING_NONE
xmlParseCharEncoding
-xmlParserInputBufferCreateFilename
-
XML_DOCUMENT_NODE
_xmlDoc
-
XML_DTD_NODE
_xmlDtd
-
XML_ELEMENT_DECL
_xmlElement
-
XML_ELEMENT_TYPE_xxx
xmlParseElementContentDecl
-
XML_ENTITY_DECL
_xmlEntity
-
XML_ERR_OK
xmlParseInNodeContext
-
XML_SCHEMAS_ELEM_GLOBAL
XML_SCHEMAS_ELEM_TOPLEVEL
-
XML_SCHEMAS_STRING
xmlSchemaNewStringValue
-
XML_SUBSTITUTE_PEREF
xmlDecodeEntities
-xmlStringDecodeEntities
-xmlStringLenDecodeEntities
-
XML_SUBSTITUTE_REF
xmlDecodeEntities
-xmlStringDecodeEntities
-xmlStringLenDecodeEntities
-
XML_xxx_yyy_ENTITY
xmlAddDocEntity
-xmlAddDtdEntity
-
XMl-Schema
xmlSchemaGetParserErrors
-
XPATH
xmlXPathFreeCompExpr
-
XPATH_INVALID_ARITY
xmlXPathSetArityError
-
XPATH_INVALID_TYPE
xmlXPathSetTypeError
-
XPointer
LIBXML_XPTR_ENABLED
-_xmlXPathContext
-_xmlXPathParserContext
-xmlXPtrBuildNodeList
-xmlXPtrEval
-xmlXPtrEvalRangePredicate
-xmlXPtrNewContext
-xmlXPtrRangeToFunction
-
XSLT
_xmlNode
-_xmlXPathContext
-xmlFreePattern
-xmlFreePatternList
-xmlXPathNewValueTree
-xmlXPathStackIsNodeSet
-
Xinclude
XINCLUDE_NS
-XINCLUDE_OLD_NS
-
Xml
xmlTextReaderNodeType
-
XmlNodeType
xmlTextReaderNodeType
-

Letter Y:

YES
htmlNodeStatus
-
YiRadicals
xmlUCSIsYiRadicals
-
YiSyllables
xmlUCSIsYiSyllables
-
YijingHexagramSymbols
xmlUCSIsYijingHexagramSymbols
-

Letter Z:

ZLIB
docbCreateFileParserCtxt
-docbParseFile
-docbSAXParseFile
-htmlCreateFileParserCtxt
-htmlParseFile
-htmlSAXParseFile
-xmlCreateEntityParserCtxt
-xmlCreateFileParserCtxt
-xmlCreateURLParserCtxt
-xmlGetCompressMode
-xmlGetDocCompressMode
-xmlOutputBufferCreateFilename
-xmlParseFile
-xmlParserInputBufferCreateFilename
-xmlRecoverFile
-xmlSAXParseFile
-xmlSAXParseFileWithData
-xmlSAXUserParseFile
-xmlSetCompressMode
-xmlSetDocCompressMode
+xmlValidateElementDecl
+

Letter U:

UCS4
xmlUTF8Charcmp
+
UNICODE
_htmlEntityDesc
+c
+
UNIX
xmlShell
+
UNUSED:
ignorableWhitespace
+ignorableWhitespaceSAXFunc
+xmlSAX2IgnorableWhitespace
+
URI-reference
xmlParseURI
+xmlParseURIReference
+
URN
globalNamespace
+namespaceDecl
+
USER
xmlNanoFTPProxy
+
UTF16
xmlCharEncOutFunc
+
UTF4
xmlDetectCharEncoding
+
UTF8
_xmlBuffer
+p
+xmlCharEncOutFunc
+xmlGetUTF8Char
+xmlParseBalancedChunkMemory
+xmlParseBalancedChunkMemoryRecover
+xmlSplitQName
+xmlUTF8Charcmp
+xmlUTF8Size
+xmlUTF8Strlen
+xmlUTF8Strloc
+xmlUTF8Strndup
+xmlUTF8Strpos
+xmlUTF8Strsize
+
Ugaritic
xmlUCSIsUgaritic
+
Unescaping
xmlURIUnescapeString
+
Unicode
IS_CHAR
+LIBXML_UNICODE_ENABLED
+
UnifiedCanadianAboriginalSyllabics
xmlUCSIsUnifiedCanadianAboriginalSyllabics
+
Unique
xmlParseElementDecl
+xmlParseStartTag
+xmlValidateElementDecl
+xmlXPathIdFunction
+
Unix
xmlShellList
+
Unlink
xmlRemoveProp
+xmlReplaceNode
+xmlUnlinkNode
+
Unlinks
xmlDOMWrapRemoveNode
+
Unplug
xmlSchemaSAXUnplug
+
Unregisters
xmlCleanupEncodingAliases
+xmlDelEncodingAlias
+
Update
xmlNanoFTPUpdateURL
+
Upgrade
xmlKeepBlanksDefault
+
Use
XML_COMPLETE_ATTRS
+XML_DETECT_IDS
+_xmlParserCtxt
+xmlCopyNodeList
+xmlGetProp
+xmlIsBaseChar
+xmlIsBlank
+xmlIsChar
+xmlIsCombining
+xmlIsDigit
+xmlIsExtender
+xmlIsIdeographic
+xmlIsPubidChar
+xmlNewDocNode
+xmlNewDocNodeEatName
+xmlNewNodeEatName
+xmlNewPI
+xmlNewTextChild
+xmlPatternGetStreamCtxt
+xmlTextReaderRelaxNGSetSchema
+xmlTextReaderRelaxNGValidate
+xmlTextReaderSchemaValidate
+xmlTextReaderSetSchema
+
Used
XML_SCHEMAS_ANY_LAX
+XML_SCHEMAS_ANY_STRICT
+XML_SCHEMAS_ATTR_USE_PROHIBITED
+XML_SKIP_IDS
+xmlCatalogGetDefaults
+xmlCatalogSetDebug
+xmlCatalogSetDefaults
+xmlParseBalancedChunkMemory
+xmlParseBalancedChunkMemoryRecover
+xmlParseExternalEntity
+xmlScanName
+
User
xmlSAXParseFileWithData
+xmlSAXParseMemoryWithData
+
UserCode
xmlCheckLanguageID
+
Uses
xmlNewNode
+xmlURIEscape

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIchunk9.html b/doc/APIchunk9.html index b20d8e79..98df8eb2 100644 --- a/doc/APIchunk9.html +++ b/doc/APIchunk9.html @@ -7,556 +7,269 @@ H1 {font-family: Verdana,Arial,Helvetica} H2 {font-family: Verdana,Arial,Helvetica} H3 {font-family: Verdana,Arial,Helvetica} A:link, A:visited, A:active { text-decoration: underline } -API Alphabetic Index a-a for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index a-a for libxml2

Developer Menu
API Indexes
Related links

A-B +API Alphabetic Index V-Z for libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

The XML C parser and toolkit of Gnome

API Alphabetic Index V-Z for libxml2

Developer Menu
API Indexes
Related links

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z -

Letter a:

a-z
xmlCheckLanguageID
-xmlURIEscapeStr
-
a-zA-Z
IS_ASCII_LETTER
-
a-zA-Z0-9
IS_PUBIDCHAR
-
a-zA-Z0-9_
xmlParseVersionNum
-
a@b
xmlNanoFTPProxy
-
abc
xmlXPathTranslateFunction
-
abc-
xmlXPathTranslateFunction
-
able
xmlEntityReferenceFunc
-xmlFindCharEncodingHandler
-xmlGetCharEncodingHandler
-xmlParserInputBufferGrow
-xmlXPathOrderDocElems
-
about
_xmlParserCtxt
-xmlDebugDumpString
-xmlShellDir
-xmlTextWriterWriteRawLen
-
above
xmlParseMarkupDecl
-xmlXPathSubstringFunction
-
absent
XML_SCHEMAS_ELEM_BLOCK_ABSENT
-XML_SCHEMAS_ELEM_BLOCK_EXTENSION
-XML_SCHEMAS_ELEM_FINAL_ABSENT
-XML_SCHEMAS_TYPE_VARIETY_ABSENT
-
absoluteURI
xmlParseURI
-xmlParseURIReference
-
abstract
XML_SCHEMAS_ELEM_ABSTRACT
-XML_SCHEMAS_TYPE_ABSTRACT
-
accept
xmlGetNoNsProp
-xmlIsMixedElement
-
acceptable
xmlRegExecErrInfo
-xmlRegExecNextValues
-
accepted
IS_BYTE_CHAR
-xmlCatalogGetDefaults
-xmlCatalogSetDefaultPrefer
-xmlCatalogSetDefaults
-xmlRegExecErrInfo
-xmlRegExecNextValues
-xmlTextReaderNormalization
-
accepting
xmlTextReaderNormalization
-
access
xmlGcMemGet
-xmlGcMemSetup
-xmlMemGet
-xmlMemSetup
-xmlNewMutex
-xmlNewRMutex
-
accessed
xmlTextReaderCurrentDoc
-xmlTextReaderCurrentNode
-
accesses
xmlCreateURLParserCtxt
-xmlNoNetExternalEntityLoader
-
accommodate
xmlBufferResize
-
according
xmlBuildURI
-xmlDetectCharEncoding
-xmlSAXVersion
-xmlSchemaValidateFacetWhtsp
-xmlURIEscape
-xmlXPathCompareValues
-
accordingly
xmlParseCharEncoding
-xmlParserHandlePEReference
-xmlParserHandleReference
-xmlValidCtxtNormalizeAttributeValue
-
account
xmlSchemaValidateFacetWhtsp
-
act
xmlStreamPush
-xmlStreamPushAttr
-
activate
xmlTextReaderSetParserProp
-
activated
DEBUG_MEMORY
-xmlAutomataNewAllTrans
-xmlAutomataNewCountTrans
-xmlAutomataNewCountTrans2
-xmlAutomataNewOnceTrans
-xmlAutomataNewOnceTrans2
-xmlAutomataNewTransition
-xmlAutomataNewTransition2
-xmlTextReaderRelaxNGSetSchema
-xmlTextReaderRelaxNGValidate
-
activation
xmlGetLineNo
-
acts
xmlGetProp
-
actual
xmlGetUTF8Char
-xmlSchemaValidateLengthFacet
-xmlSchemaValidateLengthFacetWhtsp
-xmlXPathFreeNodeSet
-xmlXPtrFreeLocationSet
-
actually
_xmlDoc
-_xmlParserCtxt
-setDocumentLocator
-setDocumentLocatorSAXFunc
-xmlAddEncodingAlias
-xmlCurrentChar
-xmlDelEncodingAlias
-xmlGetEncodingAlias
-xmlNewCharEncodingHandler
-xmlParseCharEncoding
-xmlParseNotationDecl
-xmlSAX2SetDocumentLocator
-xmlStringCurrentChar
-xmlTextReaderByteConsumed
-xmlXPathOrderDocElems
-
actuate
xlinkExtendedLinkFunk
-
add
xmlACatalogAdd
-xmlBufferAdd
-xmlBufferAddHead
-xmlBufferCat
-xmlBufferWriteCHAR
-xmlBufferWriteChar
-xmlBufferWriteQuotedString
-xmlCatalogAdd
-xmlListPushBack
-xmlListPushFront
-xmlXPathAddValues
-xmlXPathNodeSetAdd
-xmlXPathNodeSetAddNs
-xmlXPathNodeSetAddUnique
-xmlXPtrLocationSetAdd
-
added
attribute
-attributeSAXFunc
-htmlDocContentDumpFormatOutput
-htmlDocContentDumpOutput
-htmlNodeDump
-htmlNodeDumpFile
-htmlNodeDumpFileFormat
-htmlNodeDumpFormatOutput
-htmlNodeDumpOutput
-htmlSaveFileEnc
-htmlSaveFileFormat
-xmlAddChild
-xmlAddNextSibling
-xmlAddPrevSibling
-xmlDocDumpFormatMemory
-xmlDocDumpFormatMemoryEnc
-xmlDocFormatDump
-xmlNewChild
-xmlNewTextChild
-xmlSaveFormatFile
-xmlSaveFormatFileEnc
-xmlSaveFormatFileTo
-xmlStrcat
-xmlStrncat
-xmlXPathNodeSetMerge
-xmlXPtrLocationSetMerge
-
adding
xmlLoadSGMLSuperCatalog
-xmlNanoHTTPMethod
-xmlNanoHTTPMethodRedir
-
addition
xmlHashAddEntry
-xmlHashAddEntry2
-xmlHashAddEntry3
-xmlHashUpdateEntry
-xmlHashUpdateEntry2
-xmlHashUpdateEntry3
-xmlXPathSubstringFunction
-
additional
xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-
address
xmlModuleSymbol
-xmlNewTextWriterDoc
-
adds
xmlAutomataNewAllTrans
-xmlAutomataNewCountTrans
-xmlAutomataNewCountTrans2
-xmlAutomataNewCountedTrans
-xmlAutomataNewCounterTrans
-xmlAutomataNewEpsilon
-xmlAutomataNewOnceTrans
-xmlAutomataNewOnceTrans2
-xmlAutomataNewTransition
-xmlAutomataNewTransition2
-xmlBufferWriteCHAR
-
adequate
xmlStringDecodeEntities
-xmlStringLenDecodeEntities
-
adjacent
xmlAddChild
-xmlAddChildList
-xmlAddPrevSibling
-xmlAddSibling
-
affect
xmlKeepBlanksDefault
-
affiliation
_xmlSchemaElement
-
afraid
xmlEncodeEntities
-
after
UTF8ToHtml
-UTF8Toisolat1
-docbEncodeEntities
-htmlEncodeEntities
-isolat1ToUTF8
-xmlAutomataCompile
-xmlCharEncodingInputFunc
-xmlCharEncodingOutputFunc
-xmlNanoFTPCheckResponse
-xmlNanoFTPFreeCtxt
-xmlNanoFTPGetResponse
-xmlReconciliateNs
-xmlSaveFileTo
-xmlSaveFormatFileTo
-xmlValidGetValidElements
-xmlXPathNextFollowing
-xmlXPathStringFunction
-
again
xmlCreatePushParserCtxt
-
against
LIBXML_TEST_VERSION
-XML_SCHEMAS_ELEM_INTERNAL_CHECKED
-checkNamespace
-xmlCheckVersion
-xmlRegexpCompile
-xmlRegexpExec
-xmlSchemaValidateFacet
-xmlSchemaValidateFacetWhtsp
-xmlSchemaValidateLengthFacet
-xmlSchemaValidateLengthFacetWhtsp
-xmlSchemaValidateListSimpleTypeFacet
+Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z +

Letter V:

Valid
xmlValidateOneElement
+
Validate
XML_SCHEMAS_ANY_LAX
+xmlRelaxNGValidateDoc
+xmlRelaxNGValidateFullElement
+xmlSchemaValidateDoc
+xmlSchemaValidateOneElement
+xmlSchemaValidateStream
xmlShellValidate
-xmlValidateDtd
-
aggregate
xmlNodeBufGetContent
-xmlNodeGetContent
-
alias
xmlAddEncodingAlias
-xmlDelEncodingAlias
-xmlGetEncodingAlias
-
aliases
xmlCleanupCharEncodingHandlers
-xmlCleanupEncodingAliases
-
aliasing
XML_CAST_FPTR
-xmlSearchNsByHref
-
allocate
_xmlDoc
-xmlBufferGrow
-xmlBuildQName
-xmlMallocAtomicLoc
-xmlMallocLoc
-xmlMemMalloc
-xmlMemRealloc
-xmlNewMutex
-xmlNewRMutex
-xmlReallocLoc
-xmlXPathObjectCopy
-
allocation
xmlBufferSetAllocationScheme
-xmlGetBufferAllocationScheme
-xmlMallocAtomicLoc
-xmlMallocLoc
-xmlMemMalloc
-xmlMemRealloc
-xmlMemStrdupLoc
-xmlMemoryStrdup
-xmlNormalizeURIPath
-xmlReallocLoc
-xmlSetBufferAllocationScheme
-xmlTextReaderGetRemainder
-
allocations
xmlGcMemGet
-xmlGcMemSetup
-xmlMemSetup
-xmlParserInputDeallocate
-
allocator
DEBUG_MEMORY
-
allocators
xmlGcMemGet
-xmlGcMemSetup
-
allow
XML_SCHEMAS_ATTR_GLOBAL
-XML_SCHEMAS_ATTR_NSDEFAULT
-XML_SCHEMAS_ELEM_NSDEFAULT
-docbCreatePushParserCtxt
-htmlAttrAllowed
-htmlNodeStatus
-xmlAutomataNewAllTrans
-xmlCheckUTF8
-xmlCreatePushParserCtxt
-xmlKeepBlanksDefault
-xmlNewDocNode
-xmlNewDocNodeEatName
-xmlSearchNs
-xmlShell
-xmlValidateNCName
-xmlValidateNMToken
-xmlValidateName
-xmlValidateQName
-
allowable
xmlSkipBlankChars
-
allowed
_htmlElemDesc
-_xmlElement
-_xmlSchemaWildcard
-htmlElementAllowedHere
-htmlElementAllowedHereDesc
-htmlNodeStatus
-xmlAutomataNewAllTrans
-xmlAutomataNewCounterTrans
-xmlIsLetter
-xmlNodeDump
-xmlNodeDumpOutput
-xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlParseInNodeContext
-xmlValidGetPotentialChildren
-xmlXPathNormalizeFunction
-
allowing
xmlNoNetExternalEntityLoader
-xmlTextReaderCurrentDoc
-xmlTextReaderCurrentNode
-
allows
htmlAutoCloseTag
-htmlIsAutoClosed
-xmlCatalogAdd
-xmlNewChild
-xmlTextReaderConstString
-
already
XML_SCHEMAS_ATTRGROUP_GLOBAL
-XML_SCHEMAS_ATTRGROUP_WILDCARD_BUILDED
-_xmlParserInput
-xmlAddNextSibling
-xmlAddPrevSibling
-xmlAddSibling
-xmlBuildRelativeURI
-xmlDOMWrapAdoptNode
-xmlDOMWrapReconcileNamespaces
-xmlFreeFunc
-xmlGcMemSetup
-xmlMemSetup
-xmlParseCharEncoding
-xmlParseNotationType
-xmlParserInputGrow
-xmlParserInputRead
-xmlReallocFunc
-xmlReplaceNode
-xmlXPathNodeSetAddUnique
-xmlXPtrLocationSetAdd
-
also
xmlCharEncodingOutputFunc
-xmlCheckHTTPInput
-xmlHasProp
-xmlKeepBlanksDefault
-xmlNanoFTPProxy
-xmlStreamPush
-xmlStreamPushAttr
-xmlTextReaderPreserve
-xmlTextReaderPreservePattern
-xmlXPathStringEvalNumber
-
alternative
xmlTextWriterStartDTD
-xmlTextWriterWriteDTD
-xmlTextWriterWriteDTDEntity
-xmlTextWriterWriteDTDExternalEntity
-xmlTextWriterWriteDTDExternalEntityContents
-xmlTextWriterWriteDTDNotation
-xmlTextWriterWriteFormatDTD
-xmlTextWriterWriteVFormatDTD
-
always
INPUT_CHUNK
-xmlDecodeEntities
-xmlSubstituteEntitiesDefault
-
amd
xmlCatalogIsEmpty
-
amount
INPUT_CHUNK
-_xmlParserInputBuffer
-xmlMemUsed
-xmlParserInputBufferGrow
-xmlParserInputBufferRead
-
amp
xmlParseEntityRef
-xmlParseSDDecl
-xmlParserHandleReference
-
ampersand
xmlNewTextChild
-
analysis
_xmlParserCtxt
-_xmlValidCtxt
-
analyze
xmlParseURI
-xmlParseURIReference
-
analyzed
_xmlParserInput
-
ancestor
xmlNodeGetLang
-xmlNodeGetSpacePreserve
-xmlShellPwd
-xmlXPathLangFunction
-xmlXPathNextAncestor
-
ancestor-or-self
xmlXPathNextAncestorOrSelf
-
ancestors
xmlXPathNextAncestor
-xmlXPathNextAncestorOrSelf
-xmlXPathNextPreceding
-
anchored
xmlGetNsProp
-xmlHasNsProp
-
angle
xmlParseCharData
-
annotation
_xmlSchemaAnnot
-
another
xmlCharEncodingOutputFunc
-xmlInputMatchCallback
-xmlOutputMatchCallback
-xmlSetGenericErrorFunc
-
anySimpleType
xmlSchemaNewStringValue
-
anyURI
xmlSchemaGetCanonValue
-
anymore
XML_SCHEMAS_ANYATTR_LAX
-XML_SCHEMAS_ANYATTR_SKIP
-XML_SCHEMAS_ANYATTR_STRICT
-XML_SCHEMAS_ELEM_NSDEFAULT
-xmlNamespaceParseNCName
-xmlNamespaceParseNSDef
-xmlNamespaceParseQName
-
anyway
xmlRecoverDoc
-xmlRecoverFile
-xmlRecoverMemory
-xmlValidateNotationDecl
-
apart
xmlXPathStringFunction
-
apos
xmlParseEntityRef
-xmlParseSDDecl
-xmlParserHandleReference
-
appear
xmlNewTextChild
+xmlValidateAttributeValue
+xmlValidateNameValue
+xmlValidateNamesValue
+xmlValidateNmtokenValue
+xmlValidateNmtokensValue
+xmlValidateNotationUse
+
Validity
xmlParseAttributeType
+
Value
xmlParseAttribute
+xmlValidateOneAttribute
+xmlValidateOneNamespace
+xmlXPathNewValueTree
+
Values
xmlCatalogSetDefaultPrefer
+xmlParseAttribute
xmlParseAttributeType
-xmlParseElementMixedContentDecl
+xmlParseDefaultDecl
+xmlParseEnumerationType
+xmlParseNotationType
+xmlValidateAttributeValue
+
Variable
xmlXPathVariableLookup
+xmlXPathVariableLookupNS
+
VariationSelectors
xmlUCSIsVariationSelectors
+
VariationSelectorsSupplement
xmlUCSIsVariationSelectorsSupplement
+
VersionInfo
xmlParseVersionInfo
+xmlParseXMLDecl
+
VersionInfo?
xmlParseTextDecl
+
VersionNum
xmlParseVersionInfo
+xmlParseVersionNum
+

Letter W:

W3C
xmlTextReaderSchemaValidate
+
WARNING
xmlRelaxNGParse
+xmlSchemaParse
+
WARNING:
xmlDOMWrapAdoptNode
+xmlDOMWrapReconcileNamespaces
+xmlDOMWrapRemoveNode
+xmlSchemaGetCanonValue
+xmlSchemaNewStringValue
+
WFC:
xmlParseAttribute
+xmlParseCharRef
+xmlParseDefaultDecl
+xmlParseElement
+xmlParseEntityRef
+xmlParseMarkupDecl
xmlParsePEReference
-xmlParseSDDecl
xmlParseStartTag
xmlParserHandlePEReference
-
appearing
xmlValidatePopElement
-xmlValidatePushElement
-
appears
xmlParseCharData
-xmlParseElementChildrenContentDecl
-xmlParseEntityRef
-xmlParseSDDecl
-
append
xmlCopyChar
-xmlCopyCharMultiByte
-xmlValidGetValidElements
-
appended
xmlParseAttValue
-xmlSchemaValueAppend
-
appending
xmlParseAttValue
-
appendix
xmlDetectCharEncoding
-
applicable
xmlCopyNode
-xmlDocCopyNode
-
application
_xmlAttr
-_xmlAttribute
-_xmlDoc
-_xmlDtd
-_xmlElement
-_xmlEntity
-_xmlNode
-_xmlNs
-resolveEntity
-resolveEntitySAXFunc
-xmlCheckVersion
-xmlCurrentChar
-xmlGetExternalEntityLoader
-xmlLineNumbersDefault
-xmlParseAttValue
-xmlSAX2ResolveEntity
-xmlSetExternalEntityLoader
-
applications
xmlSetGenericErrorFunc
-xmlSetStructuredErrorFunc
-
applied
xmlHashCopy
-xmlHashScan
-xmlHashScan3
-xmlHashScanFull
-xmlHashScanFull3
-
applies
xmlParseElementChildrenContentDecl
-xmlParseElementMixedContentDecl
-
apply
xmlListReverseWalk
+xmlParserHandleReference
+
WWW-Authenticate
xmlNanoHTTPAuthHeader
+
Walk
xmlListReverseWalk
xmlListWalk
-xmlParseMarkupDecl
-xmlParseSDDecl
-xmlSchemaValPredefTypeNodeNoNorm
-xmlValidateRoot
-
applying
xmlGetNsList
-xmlXPathIdFunction
-
appropriate
xlinkIsLink
-xmlCheckHTTPInput
-xmlParseURIReference
-
arcs
xlinkExtendedLinkFunk
-
area
xmlBufferCreateStatic
-xmlMallocAtomicLoc
-xmlMallocLoc
-xmlMemMalloc
-xmlMemRealloc
-xmlParserInputBufferCreateMem
-xmlParserInputBufferCreateStatic
-xmlReallocLoc
-
areas
xmlGcMemGet
-xmlGcMemSetup
-xmlMemBlocks
-xmlMemShow
-
args
CHECK_ARITY
-x
-xmlParseBalancedChunkMemory
-xmlParseBalancedChunkMemoryRecover
-xmlParseCtxtExternalEntity
-xmlParseExternalEntity
-xmlXPtrRangeToFunction
-
around
xmlFileOpen
-
arrays
_xmlParserCtxt
-
arry
xmlParserInputBufferPush
-
asked
xmlParseReference
-
assume
xmlStrcat
-xmlStrdup
-
assumed
xmlCheckUTF8
-
assumes
xmlBuildRelativeURI
-
assuming
xmlSaveFileTo
+
Warning
xmlSaveFileTo
xmlSaveFormatFileTo
-
assure
xmlGetUTF8Char
-
atomic
xmlGcMemGet
-xmlGcMemSetup
-
attached
xmlTextReaderGetRemainder
-
attr
XML_SCHEMAS_ATTRGROUP_MARKED
-_xmlID
-_xmlRef
-
attribute-list
xmlParseDefaultDecl
-xmlParseEntityRef
-
augmented
docbParseDocument
-htmlParseDocument
-xmlParseDocument
-xmlParseExtParsedEnt
-xmlTextMerge
-
autark
xmlDOMWrapRemoveNode
-
authentication
xmlNanoHTTPAuthHeader
-
author
htmlNodeStatus
-
authority
_xmlURI
-
authorized
xmlValidGetValidElements
-
auto
htmlHandleOmittedElem
-
auto-repair
_htmlElemDesc
-
autoclose
htmlAutoCloseTag
-
autoclosed
htmlIsAutoClosed
-
autogeneration
xmlKeepBlanksDefault
-
automatically
xmlCharEncOutFunc
-xmlNewTextChild
-
autoreference
_xmlDoc
-
avoiding
xmlTextReaderNext
-xmlTextReaderNextSibling
-
aware
xmlGetProp
+
Was
_xmlParserInput
+
Well
xmlParseBalancedChunkMemory
+xmlParseBalancedChunkMemoryRecover
+xmlParseEntity
+xmlParseInNodeContext
+xmlRecoverDoc
+xmlRecoverFile
+xmlRecoverMemory
+xmlSAXParseDoc
+xmlSAXParseEntity
+xmlSAXParseFile
+xmlSAXParseFileWithData
+xmlSAXParseMemory
+xmlSAXParseMemoryWithData
+
What
_xmlError
+notationDecl
+notationDeclSAXFunc
+unparsedEntityDecl
+unparsedEntityDeclSAXFunc
+xmlSAX2NotationDecl
+xmlSAX2UnparsedEntityDecl
+
When
xmlHandleEntity
+xmlXPathCompareValues
+xmlXPathIdFunction
+
Wherever
xmlCurrentChar
+
Whitespace
xmlXPathNormalizeFunction
+
Will
xmlSaveFile
+xmlSaveFormatFile
+
With
xmlParseAttribute
+xmlParseEndTag
+xmlParseStartTag
+
Working
xmlParseNamespace
+
Wrap
xmlXPathWrapNodeSet
+xmlXPtrWrapLocationSet
+
Wrapper
xmlFileOpen
+
Wraps
xmlXPathWrapCString
+xmlXPathWrapExternal
+xmlXPathWrapString
+
Writes
xmlTextWriterFullEndElement
+

Letter X:

XHTML
xmlIsXHTML
+
XInclude
LIBXML_XINCLUDE_ENABLED
+XINCLUDE_NS
+XINCLUDE_OLD_NS
+xmlXIncludeFreeContext
+xmlXIncludeNewContext
+xmlXIncludeProcess
+xmlXIncludeProcessFlags
+xmlXIncludeProcessNode
+xmlXIncludeProcessTree
+xmlXIncludeProcessTreeFlags
+xmlXIncludeSetFlags
+
XLINK_TYPE_NONE
xlinkIsLink
+
XML-1
xmlDetectCharEncoding
+xmlValidateAttributeDecl
+xmlValidateElementDecl
+xmlValidateNotationDecl
+xmlValidateOneAttribute
+xmlValidateOneElement
+xmlValidateOneNamespace
+xmlValidateRoot
+
XML-Schema
xmlSchemaGetValidErrors
+
XMLDecl
xmlParseXMLDecl
+
XMLDecl?
xmlParseDocument
+
XMLSchema
xmlSchemaGetPredefinedType
+
XML_ATTRIBUTE_DECL
_xmlAttribute
+
XML_ATTRIBUTE_ENUMERATION
xmlParseEnumeratedType
+
XML_ATTRIBUTE_FIXED
xmlParseDefaultDecl
+
XML_ATTRIBUTE_IMPLIED
xmlParseDefaultDecl
+
XML_ATTRIBUTE_NODE
_xmlAttr
+
XML_ATTRIBUTE_NONE
xmlParseDefaultDecl
+
XML_ATTRIBUTE_NOTATION
xmlParseEnumeratedType
+
XML_ATTRIBUTE_REQUIRED
xmlParseDefaultDecl
+
XML_BUFFER_ALLOC_DOUBLEIT
xmlGetBufferAllocationScheme
+xmlSetBufferAllocationScheme
+
XML_BUFFER_ALLOC_EXACT
xmlGetBufferAllocationScheme
+xmlSetBufferAllocationScheme
+
XML_CAST_FPTR
XML_CAST_FPTR
+
XML_CATA_PREFER_PUBLIC
xmlCatalogSetDefaultPrefer
+
XML_CATA_PREFER_SYSTEM
xmlCatalogSetDefaultPrefer
+
XML_CHAR_ENCODING_
xmlDetectCharEncoding
+xmlParseCharEncoding
+
XML_CHAR_ENCODING_NONE
xmlParseCharEncoding
+xmlParserInputBufferCreateFilename
+
XML_DOCUMENT_NODE
_xmlDoc
+
XML_DTD_NODE
_xmlDtd
+
XML_ELEMENT_DECL
_xmlElement
+
XML_ELEMENT_TYPE_xxx
xmlParseElementContentDecl
+
XML_ENTITY_DECL
_xmlEntity
+
XML_ERR_OK
xmlParseInNodeContext
+
XML_SCHEMAS_ELEM_GLOBAL
XML_SCHEMAS_ELEM_TOPLEVEL
+
XML_SCHEMAS_STRING
xmlSchemaNewStringValue
+
XML_SUBSTITUTE_PEREF
xmlDecodeEntities
+xmlStringDecodeEntities
+xmlStringLenDecodeEntities
+
XML_SUBSTITUTE_REF
xmlDecodeEntities
+xmlStringDecodeEntities
+xmlStringLenDecodeEntities
+
XML_xxx_yyy_ENTITY
xmlAddDocEntity
+xmlAddDtdEntity
+
XMl-Schema
xmlSchemaGetParserErrors
+
XPATH
xmlXPathFreeCompExpr
+
XPATH_INVALID_ARITY
xmlXPathSetArityError
+
XPATH_INVALID_TYPE
xmlXPathSetTypeError
+
XPointer
LIBXML_XPTR_ENABLED
+_xmlXPathContext
+_xmlXPathParserContext
+xmlXPtrBuildNodeList
+xmlXPtrEval
+xmlXPtrEvalRangePredicate
+xmlXPtrNewContext
+xmlXPtrRangeToFunction
+
XSD
xmlTextReaderSchemaValidate
+xmlTextReaderSetSchema
+
XSLT
_xmlNode
+_xmlXPathContext
+xmlFreePattern
+xmlFreePatternList
+xmlXPathNewValueTree
+xmlXPathStackIsNodeSet
+
Xinclude
XINCLUDE_NS
+XINCLUDE_OLD_NS
+
Xml
xmlTextReaderNodeType
+
XmlNodeType
xmlTextReaderNodeType
+

Letter Y:

YES
htmlNodeStatus
+
YiRadicals
xmlUCSIsYiRadicals
+
YiSyllables
xmlUCSIsYiSyllables
+
YijingHexagramSymbols
xmlUCSIsYijingHexagramSymbols
+

Letter Z:

ZLIB
docbCreateFileParserCtxt
+docbParseFile
+docbSAXParseFile
+htmlCreateFileParserCtxt
+htmlParseFile
+htmlSAXParseFile
+xmlCreateEntityParserCtxt
+xmlCreateFileParserCtxt
+xmlCreateURLParserCtxt
+xmlGetCompressMode
+xmlGetDocCompressMode
+xmlOutputBufferCreateFilename
+xmlParseFile
+xmlParserInputBufferCreateFilename
+xmlRecoverFile
+xmlSAXParseFile
+xmlSAXParseFileWithData
+xmlSAXUserParseFile
+xmlSetCompressMode
+xmlSetDocCompressMode

A-B C-C D-E F-I J-N O-P -Q-S -T-U -V-Z -a-a -b-b -c-c -d-d -e-e -f-f -g-h -i-i -j-l -m-m -n-n -o-o -p-p -q-r -s-s -t-t -u-v -w-w -x-x -y-z +Q-R +S-S +T-U +V-Z +a-a +b-b +c-c +d-d +e-e +f-f +g-h +i-i +j-l +m-m +n-n +o-o +p-p +q-r +s-s +t-t +u-v +w-w +x-x +y-z

Daniel Veillard

diff --git a/doc/APIconstructors.html b/doc/APIconstructors.html index 74f6fc90..7625556c 100644 --- a/doc/APIconstructors.html +++ b/doc/APIconstructors.html @@ -480,6 +480,7 @@ A:link, A:visited, A:active { text-decoration: underline } xmlSchemaNewMemParserCtxt
xmlSchemaNewParserCtxt

Type xmlSchemaPtr:

xmlSchemaParse
+

Type xmlSchemaSAXPlugPtr:

xmlSchemaSAXPlug

Type xmlSchemaTypePtr:

xmlSchemaGetBuiltInListSimpleTypeItemType
xmlSchemaGetBuiltInType
xmlSchemaGetPredefinedType
diff --git a/doc/APIfiles.html b/doc/APIfiles.html index 885302cc..94d55f06 100644 --- a/doc/APIfiles.html +++ b/doc/APIfiles.html @@ -1822,6 +1822,7 @@ A:link, A:visited, A:active { text-decoration: underline } XML_ERR_ENTITY_NOT_FINISHED
XML_ERR_ENTITY_NOT_STARTED
XML_ERR_ENTITY_PE_INTERNAL
+XML_ERR_ENTITY_PROCESSING
XML_ERR_EQUAL_REQUIRED
XML_ERR_ERROR
XML_ERR_EXTRA_CONTENT
@@ -1851,6 +1852,8 @@ A:link, A:visited, A:active { text-decoration: underline } XML_ERR_NONE
XML_ERR_NOTATION_NOT_FINISHED
XML_ERR_NOTATION_NOT_STARTED
+XML_ERR_NOTATION_PROCESSING
+XML_ERR_NOT_STANDALONE
XML_ERR_NOT_WELL_BALANCED
XML_ERR_NO_DTD
XML_ERR_NO_MEMORY
@@ -1981,6 +1984,7 @@ A:link, A:visited, A:active { text-decoration: underline } XML_MODULE_CLOSE
XML_MODULE_OPEN
XML_NS_ERR_ATTRIBUTE_REDEFINED
+XML_NS_ERR_EMPTY
XML_NS_ERR_QNAME
XML_NS_ERR_UNDEFINED_NAMESPACE
XML_NS_ERR_XML_NAMESPACE
@@ -2152,6 +2156,7 @@ A:link, A:visited, A:active { text-decoration: underline } XML_SCHEMAP_CT_PROPS_CORRECT_4
XML_SCHEMAP_CT_PROPS_CORRECT_5
XML_SCHEMAP_CVC_SIMPLE_TYPE
+XML_SCHEMAP_C_PROPS_CORRECT
XML_SCHEMAP_DEF_AND_PREFIX
XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1
XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1
@@ -2375,7 +2380,9 @@ A:link, A:visited, A:active { text-decoration: underline } XML_TREE_INVALID_HEX
XML_TREE_UNTERMINATED_ENTITY
XML_WAR_CATALOG_PI
+XML_WAR_ENTITY_REDEFINED
XML_WAR_LANG_VALUE
+XML_WAR_NS_COLUMN
XML_WAR_NS_URI
XML_WAR_NS_URI_RELATIVE
XML_WAR_SPACE_VALUE
@@ -2606,8 +2613,10 @@ A:link, A:visited, A:active { text-decoration: underline } xmlTextReaderReadString
xmlTextReaderRelaxNGSetSchema
xmlTextReaderRelaxNGValidate
+xmlTextReaderSchemaValidate
xmlTextReaderSetErrorHandler
xmlTextReaderSetParserProp
+xmlTextReaderSetSchema
xmlTextReaderSetStructuredErrorHandler
xmlTextReaderStandalone
xmlTextReaderValue
@@ -2675,6 +2684,7 @@ A:link, A:visited, A:active { text-decoration: underline } xmlSchemaFreeValidCtxt
xmlSchemaGetParserErrors
xmlSchemaGetValidErrors
+xmlSchemaIsValid
xmlSchemaNewDocParserCtxt
xmlSchemaNewMemParserCtxt
xmlSchemaNewParserCtxt
@@ -2683,6 +2693,10 @@ A:link, A:visited, A:active { text-decoration: underline } xmlSchemaParserCtxt
xmlSchemaParserCtxtPtr
xmlSchemaPtr
+xmlSchemaSAXPlug
+xmlSchemaSAXPlugPtr
+xmlSchemaSAXPlugStruct
+xmlSchemaSAXUnplug
xmlSchemaSetParserErrors
xmlSchemaSetValidErrors
xmlSchemaSetValidOptions
diff --git a/doc/APIfunctions.html b/doc/APIfunctions.html index cc5755be..ce0d0c5b 100644 --- a/doc/APIfunctions.html +++ b/doc/APIfunctions.html @@ -855,6 +855,7 @@ A:link, A:visited, A:active { text-decoration: underline } xmlRelaxNGGetValidErrors
xmlSchemaGetParserErrors
xmlSchemaGetValidErrors
+xmlSchemaSAXPlug
xmlTextReaderGetErrorHandler

Type xlinkActuate *:

xlinkExtendedLinkFunk

Type xlinkHandlerPtr:

xlinkSetDefaultHandler
@@ -1791,6 +1792,7 @@ A:link, A:visited, A:active { text-decoration: underline } xmlSAXUserParseFile
xmlSAXUserParseMemory
xmlSchemaValidateStream
+

Type xmlSAXHandlerPtr *:

xmlSchemaSAXPlug

Type xmlSAXHandlerV1 *:

initdocbDefaultSAXHandler
inithtmlDefaultSAXHandler
initxmlDefaultSAXHandler
@@ -1819,6 +1821,8 @@ A:link, A:visited, A:active { text-decoration: underline }

Type xmlSchemaPtr:

xmlSchemaDump
xmlSchemaFree
xmlSchemaNewValidCtxt
+xmlTextReaderSetSchema
+

Type xmlSchemaSAXPlugPtr:

xmlSchemaSAXUnplug

Type xmlSchemaTypePtr:

xmlSchemaCheckFacet
xmlSchemaFreeType
xmlSchemaGetBuiltInListSimpleTypeItemType
@@ -1852,6 +1856,8 @@ A:link, A:visited, A:active { text-decoration: underline } xmlSchemaValidateLengthFacetWhtsp

Type xmlSchemaValidCtxtPtr:

xmlSchemaFreeValidCtxt
xmlSchemaGetValidErrors
+xmlSchemaIsValid
+xmlSchemaSAXPlug
xmlSchemaSetValidErrors
xmlSchemaSetValidOptions
xmlSchemaValidCtxtGetOptions
@@ -1965,8 +1971,10 @@ A:link, A:visited, A:active { text-decoration: underline } xmlTextReaderReadString
xmlTextReaderRelaxNGSetSchema
xmlTextReaderRelaxNGValidate
+xmlTextReaderSchemaValidate
xmlTextReaderSetErrorHandler
xmlTextReaderSetParserProp
+xmlTextReaderSetSchema
xmlTextReaderSetStructuredErrorHandler
xmlTextReaderStandalone
xmlTextReaderValue
diff --git a/doc/APIsymbols.html b/doc/APIsymbols.html index 3f7d1b0f..756863f9 100644 --- a/doc/APIsymbols.html +++ b/doc/APIsymbols.html @@ -333,6 +333,7 @@ A:link, A:visited, A:active { text-decoration: underline } XML_ERR_ENTITY_NOT_FINISHED
XML_ERR_ENTITY_NOT_STARTED
XML_ERR_ENTITY_PE_INTERNAL
+XML_ERR_ENTITY_PROCESSING
XML_ERR_EQUAL_REQUIRED
XML_ERR_ERROR
XML_ERR_EXTRA_CONTENT
@@ -362,6 +363,8 @@ A:link, A:visited, A:active { text-decoration: underline } XML_ERR_NONE
XML_ERR_NOTATION_NOT_FINISHED
XML_ERR_NOTATION_NOT_STARTED
+XML_ERR_NOTATION_PROCESSING
+XML_ERR_NOT_STANDALONE
XML_ERR_NOT_WELL_BALANCED
XML_ERR_NO_DTD
XML_ERR_NO_MEMORY
@@ -507,6 +510,7 @@ A:link, A:visited, A:active { text-decoration: underline } XML_NAMESPACE_DECL
XML_NOTATION_NODE
XML_NS_ERR_ATTRIBUTE_REDEFINED
+XML_NS_ERR_EMPTY
XML_NS_ERR_QNAME
XML_NS_ERR_UNDEFINED_NAMESPACE
XML_NS_ERR_XML_NAMESPACE
@@ -794,6 +798,7 @@ A:link, A:visited, A:active { text-decoration: underline } XML_SCHEMAP_CT_PROPS_CORRECT_4
XML_SCHEMAP_CT_PROPS_CORRECT_5
XML_SCHEMAP_CVC_SIMPLE_TYPE
+XML_SCHEMAP_C_PROPS_CORRECT
XML_SCHEMAP_DEF_AND_PREFIX
XML_SCHEMAP_DERIVATION_OK_RESTRICTION_1
XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_1
@@ -1231,7 +1236,9 @@ A:link, A:visited, A:active { text-decoration: underline } XML_TREE_INVALID_HEX
XML_TREE_UNTERMINATED_ENTITY
XML_WAR_CATALOG_PI
+XML_WAR_ENTITY_REDEFINED
XML_WAR_LANG_VALUE
+XML_WAR_NS_COLUMN
XML_WAR_NS_URI
XML_WAR_NS_URI_RELATIVE
XML_WAR_SPACE_VALUE
@@ -2578,6 +2585,7 @@ A:link, A:visited, A:active { text-decoration: underline } xmlSchemaGetValidErrors
xmlSchemaInitTypes
xmlSchemaIsBuiltInTypeFacet
+xmlSchemaIsValid
xmlSchemaNewDocParserCtxt
xmlSchemaNewFacet
xmlSchemaNewMemParserCtxt
@@ -2592,6 +2600,10 @@ A:link, A:visited, A:active { text-decoration: underline } xmlSchemaParserCtxt
xmlSchemaParserCtxtPtr
xmlSchemaPtr
+xmlSchemaSAXPlug
+xmlSchemaSAXPlugPtr
+xmlSchemaSAXPlugStruct
+xmlSchemaSAXUnplug
xmlSchemaSetParserErrors
xmlSchemaSetValidErrors
xmlSchemaSetValidOptions
@@ -2779,8 +2791,10 @@ A:link, A:visited, A:active { text-decoration: underline } xmlTextReaderReadString
xmlTextReaderRelaxNGSetSchema
xmlTextReaderRelaxNGValidate
+xmlTextReaderSchemaValidate
xmlTextReaderSetErrorHandler
xmlTextReaderSetParserProp
+xmlTextReaderSetSchema
xmlTextReaderSetStructuredErrorHandler
xmlTextReaderStandalone
xmlTextReaderValue
diff --git a/doc/html/libxml-xmlerror.html b/doc/html/libxml-xmlerror.html index cd47078c..de1188ee 100644 --- a/doc/html/libxml-xmlerror.html +++ b/doc/html/libxml-xmlerror.html @@ -190,10 +190,16 @@ void xmlStructuredErrorFunc (void * userD XML_WAR_NS_URI_RELATIVE = 100 : 100 XML_ERR_MISSING_ENCODING = 101 : 101 XML_WAR_SPACE_VALUE = 102 : 102 + XML_ERR_NOT_STANDALONE = 103 : 103 + XML_ERR_ENTITY_PROCESSING = 104 : 104 + XML_ERR_NOTATION_PROCESSING = 105 : 105 + XML_WAR_NS_COLUMN = 106 : 106 + XML_WAR_ENTITY_REDEFINED = 107 : 107 XML_NS_ERR_XML_NAMESPACE = 200 XML_NS_ERR_UNDEFINED_NAMESPACE = 201 : 201 XML_NS_ERR_QNAME = 202 : 202 XML_NS_ERR_ATTRIBUTE_REDEFINED = 203 : 203 + XML_NS_ERR_EMPTY = 204 : 204 XML_DTD_ATTRIBUTE_DEFAULT = 500 XML_DTD_ATTRIBUTE_REDEFINED = 501 : 501 XML_DTD_ATTRIBUTE_VALUE = 502 : 502 @@ -747,6 +753,7 @@ void xmlStructuredErrorFunc (void * userD XML_SCHEMAP_DERIVATION_OK_RESTRICTION_2_1_3 = 3077 : 3077 XML_SCHEMAP_AU_PROPS_CORRECT_2 = 3078 : 3078 XML_SCHEMAP_A_PROPS_CORRECT_2 = 3079 : 3079 + XML_SCHEMAP_C_PROPS_CORRECT = 3080 : 3080 XML_MODULE_OPEN = 4900 : 4900 XML_MODULE_CLOSE = 4901 : 4901 XML_CHECK_FOUND_ELEMENT = 5000 diff --git a/doc/html/libxml-xmlreader.html b/doc/html/libxml-xmlreader.html index 3991bfff..3bd3640c 100644 --- a/doc/html/libxml-xmlreader.html +++ b/doc/html/libxml-xmlreader.html @@ -96,8 +96,10 @@ void xmlTextReaderErrorFunc (void * arg,

xmlChar *	xmlTextReaderReadString	(xmlTextReaderPtr reader)
int	xmlTextReaderRelaxNGSetSchema	(xmlTextReaderPtr reader, 
xmlRelaxNGPtr schema)
int	xmlTextReaderRelaxNGValidate	(xmlTextReaderPtr reader, 
const char * rng)
+
int	xmlTextReaderSchemaValidate	(xmlTextReaderPtr reader, 
const char * xsd)
void	xmlTextReaderSetErrorHandler	(xmlTextReaderPtr reader, 
xmlTextReaderErrorFunc f,
void * arg)
int	xmlTextReaderSetParserProp	(xmlTextReaderPtr reader, 
int prop,
int value)
+
int	xmlTextReaderSetSchema		(xmlTextReaderPtr reader, 
xmlSchemaPtr schema)
void	xmlTextReaderSetStructuredErrorHandler	(xmlTextReaderPtr reader, 
xmlStructuredErrorFunc f,
void * arg)
int	xmlTextReaderStandalone		(xmlTextReaderPtr reader)
xmlChar *	xmlTextReaderValue	(xmlTextReaderPtr reader)
@@ -298,11 +300,15 @@ void xmlTextReaderErrorFunc (void * arg,
const char * msg,

Use RelaxNG to validate the document as it is processed. Activation is only possible before the first Read(). if @schema is NULL, then RelaxNG validation is desactivated. @ The @schema should not be freed until the reader is deallocated or its use has been deactivated.

reader:the xmlTextReaderPtr used
schema:a precompiled RelaxNG schema
Returns:0 in case the RelaxNG validation could be (des)activated and -1 in case of error.

Function: xmlTextReaderRelaxNGValidate

int	xmlTextReaderRelaxNGValidate	(xmlTextReaderPtr reader, 
const char * rng)

Use RelaxNG to validate the document as it is processed. Activation is only possible before the first Read(). if @rng is NULL, then RelaxNG validation is desactivated.

-
reader:the xmlTextReaderPtr used
rng:the path to a RelaxNG schema or NULL
Returns:0 in case the RelaxNG validation could be (des)activated and -1 in case of error.

Function: xmlTextReaderSetErrorHandler

void	xmlTextReaderSetErrorHandler	(xmlTextReaderPtr reader, 
xmlTextReaderErrorFunc f,
void * arg)
+
reader:the xmlTextReaderPtr used
rng:the path to a RelaxNG schema or NULL
Returns:0 in case the RelaxNG validation could be (des)activated and -1 in case of error.

Function: xmlTextReaderSchemaValidate

int	xmlTextReaderSchemaValidate	(xmlTextReaderPtr reader, 
const char * xsd)
+

Use W3C XSD schema to validate the document as it is processed. Activation is only possible before the first Read(). if @xsd is NULL, then RelaxNG validation is desactivated.

+
reader:the xmlTextReaderPtr used
xsd:the path to a W3C XSD schema or NULL
Returns:0 in case the schemas validation could be (des)activated and -1 in case of error.

Function: xmlTextReaderSetErrorHandler

void	xmlTextReaderSetErrorHandler	(xmlTextReaderPtr reader, 
xmlTextReaderErrorFunc f,
void * arg)

Register a callback function that will be called on error and warnings. If @f is NULL, the default error and warning handlers are restored.

reader:the xmlTextReaderPtr used
f:the callback function to call on error and warnings
arg:a user argument to pass to the callback function

Function: xmlTextReaderSetParserProp

int	xmlTextReaderSetParserProp	(xmlTextReaderPtr reader, 
int prop,
int value)

Change the parser processing behaviour by changing some of its internal properties. Note that some properties can only be changed before any read has been done.

-
reader:the xmlTextReaderPtr used
prop:the xmlParserProperties to set
value:usually 0 or 1 to (de)activate it
Returns:0 if the call was successful, or -1 in case of error

Function: xmlTextReaderSetStructuredErrorHandler

void	xmlTextReaderSetStructuredErrorHandler	(xmlTextReaderPtr reader, 
xmlStructuredErrorFunc f,
void * arg)
+
reader:the xmlTextReaderPtr used
prop:the xmlParserProperties to set
value:usually 0 or 1 to (de)activate it
Returns:0 if the call was successful, or -1 in case of error

Function: xmlTextReaderSetSchema

int	xmlTextReaderSetSchema		(xmlTextReaderPtr reader, 
xmlSchemaPtr schema)
+

Use XSD Schema to validate the document as it is processed. Activation is only possible before the first Read(). if @schema is NULL, then Schema validation is desactivated. @ The @schema should not be freed until the reader is deallocated or its use has been deactivated.

+
reader:the xmlTextReaderPtr used
schema:a precompiled Schema schema
Returns:0 in case the Schema validation could be (des)activated and -1 in case of error.

Function: xmlTextReaderSetStructuredErrorHandler

void	xmlTextReaderSetStructuredErrorHandler	(xmlTextReaderPtr reader, 
xmlStructuredErrorFunc f,
void * arg)

Register a callback function that will be called on error and warnings. If @f is NULL, the default error and warning handlers are restored.

reader:the xmlTextReaderPtr used
f:the callback function to call on error and warnings
arg:a user argument to pass to the callback function

Function: xmlTextReaderStandalone

int	xmlTextReaderStandalone		(xmlTextReaderPtr reader)

Determine the standalone status of the document being read.

diff --git a/doc/html/libxml-xmlschemas.html b/doc/html/libxml-xmlschemas.html index 78e8e3e9..201b09b1 100644 --- a/doc/html/libxml-xmlschemas.html +++ b/doc/html/libxml-xmlschemas.html @@ -15,6 +15,9 @@ A:link, A:visited, A:active { text-decoration: underline } The content of this structure is not made public by the API.
Typedef xmlSchemaParserCtxt * xmlSchemaParserCtxtPtr
 
Typedef xmlSchema * xmlSchemaPtr
+
Typedef xmlSchemaSAXPlugStruct * xmlSchemaSAXPlugPtr
+
Structure xmlSchemaSAXPlugStruct
struct _xmlSchemaSAXPlug +The content of this structure is not made public by the API.
Structure xmlSchemaValidCtxt
struct _xmlSchemaValidCtxt The content of this structure is not made public by the API.
Typedef xmlSchemaValidCtxt * xmlSchemaValidCtxtPtr
@@ -26,11 +29,14 @@ The content of this structure is not made public by the API.
 
void	xmlSchemaFreeValidCtxt		(xmlSchemaValidCtxtPtr ctxt)
int	xmlSchemaGetParserErrors	(xmlSchemaParserCtxtPtr ctxt, 
xmlSchemaValidityErrorFunc * err,
xmlSchemaValidityWarningFunc * warn,
void ** ctx)
int	xmlSchemaGetValidErrors		(xmlSchemaValidCtxtPtr ctxt, 
xmlSchemaValidityErrorFunc * err,
xmlSchemaValidityWarningFunc * warn,
void ** ctx)
+
int	xmlSchemaIsValid		(xmlSchemaValidCtxtPtr ctxt)
xmlSchemaParserCtxtPtr	xmlSchemaNewDocParserCtxt	(xmlDocPtr doc)
xmlSchemaParserCtxtPtr	xmlSchemaNewMemParserCtxt	(const char * buffer, 
int size)
xmlSchemaParserCtxtPtr	xmlSchemaNewParserCtxt	(const char * URL)
xmlSchemaValidCtxtPtr	xmlSchemaNewValidCtxt	(xmlSchemaPtr schema)
xmlSchemaPtr	xmlSchemaParse		(xmlSchemaParserCtxtPtr ctxt)
+
xmlSchemaSAXPlugPtr	xmlSchemaSAXPlug	(xmlSchemaValidCtxtPtr ctxt, 
xmlSAXHandlerPtr * sax,
void ** user_data)
+
int	xmlSchemaSAXUnplug		(xmlSchemaSAXPlugPtr plug)
void	xmlSchemaSetParserErrors	(xmlSchemaParserCtxtPtr ctxt, 
xmlSchemaValidityErrorFunc err,
xmlSchemaValidityWarningFunc warn,
void * ctx)
void	xmlSchemaSetValidErrors		(xmlSchemaValidCtxtPtr ctxt, 
xmlSchemaValidityErrorFunc err,
xmlSchemaValidityWarningFunc warn,
void * ctx)
int	xmlSchemaSetValidOptions	(xmlSchemaValidCtxtPtr ctxt, 
int options)
@@ -70,6 +76,8 @@ void xmlSchemaValidityWarningFunc (v void * volatiles : Misc. helper items (e.g. reference item }

Structure xmlSchemaParserCtxt

Structure xmlSchemaParserCtxt
struct _xmlSchemaParserCtxt { The content of this structure is not made public by the API. +}

Structure xmlSchemaSAXPlugStruct

Structure xmlSchemaSAXPlugStruct
struct _xmlSchemaSAXPlug { +The content of this structure is not made public by the API. }

Structure xmlSchemaValidCtxt

Structure xmlSchemaValidCtxt
struct _xmlSchemaValidCtxt { The content of this structure is not made public by the API. }

Enum xmlSchemaValidError

Enum xmlSchemaValidError {
@@ -115,7 +123,9 @@ The content of this structure is not made public by the API.
 

Get the callback information used to handle errors for a parser context

ctxt:a XMl-Schema parser context
err:the error callback result
warn:the warning callback result
ctx:contextual data for the callbacks result
Returns:-1 in case of failure, 0 otherwise

Function: xmlSchemaGetValidErrors

int	xmlSchemaGetValidErrors		(xmlSchemaValidCtxtPtr ctxt, 
xmlSchemaValidityErrorFunc * err,
xmlSchemaValidityWarningFunc * warn,
void ** ctx)

Get the error and warning callback informations

-
ctxt:a XML-Schema validation context
err:the error function result
warn:the warning function result
ctx:the functions context result
Returns:-1 in case of error and 0 otherwise

Function: xmlSchemaNewDocParserCtxt

xmlSchemaParserCtxtPtr	xmlSchemaNewDocParserCtxt	(xmlDocPtr doc)
+
ctxt:a XML-Schema validation context
err:the error function result
warn:the warning function result
ctx:the functions context result
Returns:-1 in case of error and 0 otherwise

Function: xmlSchemaIsValid

int	xmlSchemaIsValid		(xmlSchemaValidCtxtPtr ctxt)
+

Check if any error was detected during validation.

+
ctxt:the schema validation context
Returns:1 if valid so far, 0 if errors were detected, and -1 in case of internal error.

Function: xmlSchemaNewDocParserCtxt

xmlSchemaParserCtxtPtr	xmlSchemaNewDocParserCtxt	(xmlDocPtr doc)

Create an XML Schemas parse context for that document. NB. The document may be modified during the parsing process.

doc:a preparsed document tree
Returns:the parser context or NULL in case of error

Function: xmlSchemaNewMemParserCtxt

xmlSchemaParserCtxtPtr	xmlSchemaNewMemParserCtxt	(const char * buffer, 
int size)

Create an XML Schemas parse context for that memory buffer expected to contain an XML Schemas file.

@@ -125,7 +135,11 @@ The content of this structure is not made public by the API.

Create an XML Schemas validation context based on the given schema.

schema:a precompiled XML Schemas
Returns:the validation context or NULL in case of error

Function: xmlSchemaParse

xmlSchemaPtr	xmlSchemaParse		(xmlSchemaParserCtxtPtr ctxt)

parse a schema definition resource and build an internal XML Shema struture which can be used to validate instances. *WARNING* this interface is highly subject to change

-
ctxt:a schema validation context
Returns:the internal XML Schema structure built from the resource or NULL in case of error

Function: xmlSchemaSetParserErrors

void	xmlSchemaSetParserErrors	(xmlSchemaParserCtxtPtr ctxt, 
xmlSchemaValidityErrorFunc err,
xmlSchemaValidityWarningFunc warn,
void * ctx)
+
ctxt:a schema validation context
Returns:the internal XML Schema structure built from the resource or NULL in case of error

Function: xmlSchemaSAXPlug

xmlSchemaSAXPlugPtr	xmlSchemaSAXPlug	(xmlSchemaValidCtxtPtr ctxt, 
xmlSAXHandlerPtr * sax,
void ** user_data)
+

Plug a SAX based validation layer in a SAX parsing event flow. The original @saxptr and @dataptr data are replaced by new pointers but the calls to the original will be maintained.

+
ctxt:a schema validation context
sax:a pointer to the original xmlSAXHandlerPtr
user_data:a pointer to the original SAX user data pointer
Returns:a pointer to a data structure needed to unplug the validation layer or NULL in case of errors.

Function: xmlSchemaSAXUnplug

int	xmlSchemaSAXUnplug		(xmlSchemaSAXPlugPtr plug)
+

Unplug a SAX based validation layer in a SAX parsing event flow. The original pointers used in the call are restored.

+
plug:a data structure returned by xmlSchemaSAXPlug
Returns:0 in case of success and -1 in case of failure.

Function: xmlSchemaSetParserErrors

void	xmlSchemaSetParserErrors	(xmlSchemaParserCtxtPtr ctxt, 
xmlSchemaValidityErrorFunc err,
xmlSchemaValidityWarningFunc warn,
void * ctx)

Set the callback functions used to handle errors for a validation context

ctxt:a schema validation context
err:the error callback
warn:the warning callback
ctx:contextual data for the callbacks

Function: xmlSchemaSetValidErrors

void	xmlSchemaSetValidErrors		(xmlSchemaValidCtxtPtr ctxt, 
xmlSchemaValidityErrorFunc err,
xmlSchemaValidityWarningFunc warn,
void * ctx)

Set the error and warning callback informations

@@ -140,7 +154,7 @@ The content of this structure is not made public by the API.
ctxt:a schema validation context
filename:the URI of the instance
options:a future set of options, currently unused
Returns:0 if the document is valid, a positive error code number otherwise and -1 in case of an internal or API error.

Function: xmlSchemaValidateOneElement

int	xmlSchemaValidateOneElement	(xmlSchemaValidCtxtPtr ctxt, 
xmlNodePtr elem)

Validate a branch of a tree, starting with the given @elem.

ctxt:a schema validation context
elem:an element node
Returns:0 if the element and its subtree is valid, a positive error code number otherwise and -1 in case of an internal or API error.

Function: xmlSchemaValidateStream

int	xmlSchemaValidateStream		(xmlSchemaValidCtxtPtr ctxt, 
xmlParserInputBufferPtr input,
xmlCharEncoding enc,
xmlSAXHandlerPtr sax,
void * user_data)
-

Validate a document tree in memory.

+

Validate an input based on a flow of SAX event from the parser and forward the events to the @sax handler with the provided @user_data the user provided @sax handler must be a SAX2 one.

ctxt:a schema validation context
input:the input to use for reading the data
enc:an optional encoding information
sax:a SAX handler for the resulting events
user_data:the context to provide to the SAX handler.
Returns:0 if the document is schemas valid, a positive error code number otherwise and -1 in case of internal or API error.

Function type: xmlSchemaValidityErrorFunc

Function type: xmlSchemaValidityErrorFunc
 void	xmlSchemaValidityErrorFunc	(void * ctx, 
const char * msg,
... ...)

ctx:
msg:
...:

diff --git a/doc/libxml2-api.xml b/doc/libxml2-api.xml index 2314b943..d1006033 100644 --- a/doc/libxml2-api.xml +++ b/doc/libxml2-api.xml @@ -1847,6 +1847,7 @@ + @@ -1991,6 +1992,7 @@ + @@ -2163,7 +2165,7 @@ - + @@ -2307,7 +2309,7 @@ - + @@ -2361,9 +2363,10 @@ + - + @@ -2381,6 +2384,7 @@ + @@ -2418,6 +2422,7 @@ + @@ -2435,6 +2440,7 @@ + @@ -2455,7 +2461,7 @@ - + @@ -2549,6 +2555,7 @@ + @@ -2730,6 +2737,7 @@ + @@ -2758,6 +2766,7 @@ + @@ -2856,32 +2865,37 @@ + + - - - - - - - - - - + - + + - - - - + + + + + + + + + + + + + + + implementation of XML Schema Datatypes @@ -4562,6 +4576,7 @@ + @@ -4591,6 +4606,8 @@ + + @@ -4732,6 +4749,7 @@ + @@ -5018,6 +5036,7 @@ + @@ -5374,7 +5393,9 @@ + + @@ -6229,6 +6250,8 @@ actually an xmlCharEncoding'/> + + @@ -12913,6 +12936,12 @@ actually an xmlCharEncoding'/> + + defined(LIBXML_SCHEMAS_ENABLED) + Check if any error was detected during validation. + + + defined(LIBXML_SCHEMAS_ENABLED) Create an XML Schemas parse context for that document. NB. The document may be modified during the parsing process. @@ -12970,6 +12999,20 @@ actually an xmlCharEncoding'/> + + defined(LIBXML_SCHEMAS_ENABLED) + Plug a SAX based validation layer in a SAX parsing event flow. The original @saxptr and @dataptr data are replaced by new pointers but the calls to the original will be maintained. + + + + + + + defined(LIBXML_SCHEMAS_ENABLED) + Unplug a SAX based validation layer in a SAX parsing event flow. The original pointers used in the call are restored. + + + defined(LIBXML_SCHEMAS_ENABLED) Set the callback functions used to handle errors for a validation context @@ -13101,7 +13144,7 @@ actually an xmlCharEncoding'/> defined(LIBXML_SCHEMAS_ENABLED) - Validate a document tree in memory. + Validate an input based on a flow of SAX event from the parser and forward the events to the @sax handler with the provided @user_data the user provided @sax handler must be a SAX2 one. @@ -13434,7 +13477,6 @@ actually an xmlCharEncoding'/> - defined(LIBXML_PUSH_ENABLED) Blocks further parser processing @@ -14052,6 +14094,13 @@ actually an xmlCharEncoding'/> + + defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED) + Use W3C XSD schema to validate the document as it is processed. Activation is only possible before the first Read(). if @xsd is NULL, then RelaxNG validation is desactivated. + + + + defined(LIBXML_READER_ENABLED) Register a callback function that will be called on error and warnings. If @f is NULL, the default error and warning handlers are restored. @@ -14068,6 +14117,13 @@ actually an xmlCharEncoding'/> + + defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED) + Use XSD Schema to validate the document as it is processed. Activation is only possible before the first Read(). if @schema is NULL, then Schema validation is desactivated. @ The @schema should not be freed until the reader is deallocated or its use has been deactivated. + + + + defined(LIBXML_READER_ENABLED) Register a callback function that will be called on error and warnings. If @f is NULL, the default error and warning handlers are restored. @@ -15974,7 +16030,7 @@ actually an xmlCharEncoding'/> - defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_DEBUG_ENABLED) + defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_DEBUG_ENABLED) || defined (LIBXML_HTML_ENABLED) Check that a value conforms to the lexical space of NCName diff --git a/doc/libxml2-refs.xml b/doc/libxml2-refs.xml index 2bb941a7..52dc7161 100644 --- a/doc/libxml2-refs.xml +++ b/doc/libxml2-refs.xml @@ -327,6 +327,7 @@ + @@ -356,6 +357,8 @@ + + @@ -501,6 +504,7 @@ + @@ -788,6 +792,7 @@ + @@ -1225,7 +1230,9 @@ + + @@ -2572,6 +2579,7 @@ + @@ -2586,6 +2594,10 @@ + + + + @@ -2773,8 +2785,10 @@ + + @@ -3676,6 +3690,7 @@ + @@ -3705,6 +3720,8 @@ + + @@ -3850,6 +3867,7 @@ + @@ -4137,6 +4155,7 @@ + @@ -4574,7 +4593,9 @@ + + @@ -5957,6 +5978,7 @@ + @@ -5971,6 +5993,10 @@ + + + + @@ -6158,8 +6184,10 @@ + + @@ -7340,6 +7368,9 @@ + + + @@ -8374,6 +8405,7 @@ + @@ -9529,6 +9561,9 @@ + + + @@ -9568,6 +9603,10 @@ + + + + @@ -9611,6 +9650,8 @@ + + @@ -9756,8 +9797,10 @@ + + @@ -11892,6 +11935,7 @@ + @@ -11921,6 +11965,8 @@ + + @@ -12051,6 +12097,7 @@ + @@ -12222,6 +12269,7 @@ + @@ -12445,7 +12493,9 @@ + + @@ -12684,8 +12734,10 @@ + + @@ -12759,6 +12811,7 @@ + @@ -12767,6 +12820,10 @@ + + + + @@ -13504,6 +13561,8 @@ + + @@ -16050,6 +16109,9 @@ + + + @@ -16294,6 +16356,8 @@ + + @@ -16423,6 +16487,7 @@ + @@ -16520,6 +16585,8 @@ + + @@ -16537,6 +16604,7 @@ + @@ -16619,6 +16687,7 @@ + @@ -16910,7 +16979,7 @@ - + @@ -17202,6 +17271,9 @@ + + + @@ -17234,6 +17306,8 @@ + + @@ -17261,7 +17335,7 @@ - + @@ -17322,6 +17396,9 @@ + + + @@ -17573,6 +17650,10 @@ + + + + @@ -17631,7 +17712,7 @@ - + @@ -17760,6 +17841,8 @@ + + @@ -18393,7 +18476,7 @@ - + @@ -18430,6 +18513,9 @@ + + + @@ -18472,7 +18558,9 @@ + + @@ -18729,7 +18817,7 @@ - + @@ -18750,6 +18838,7 @@ + @@ -19783,6 +19872,8 @@ + + @@ -19885,7 +19976,7 @@ - + @@ -19907,6 +19998,7 @@ + @@ -19945,6 +20037,7 @@ + @@ -20168,10 +20261,14 @@ + + + + @@ -20301,6 +20398,7 @@ + @@ -20679,12 +20777,13 @@ + - + @@ -21035,6 +21134,8 @@ + + @@ -21116,6 +21217,11 @@ + + + + + @@ -21281,7 +21387,7 @@ - + @@ -21374,6 +21480,7 @@ + @@ -21392,6 +21499,7 @@ + @@ -21579,6 +21687,9 @@ + + + @@ -21685,6 +21796,9 @@ + + + @@ -21810,7 +21924,7 @@ - + @@ -22279,7 +22393,7 @@ - + @@ -22981,7 +23095,7 @@ - + @@ -23114,6 +23228,8 @@ + + @@ -23474,7 +23590,7 @@ - + @@ -23498,6 +23614,7 @@ + @@ -23912,7 +24029,7 @@ - + @@ -24019,6 +24136,7 @@ + @@ -24317,7 +24435,7 @@ - + @@ -24648,6 +24766,8 @@ + + @@ -24753,7 +24873,7 @@ - + @@ -24881,6 +25001,7 @@ + @@ -24966,6 +25087,8 @@ + + @@ -25018,6 +25141,8 @@ + + @@ -25083,6 +25208,7 @@ + @@ -25280,6 +25406,8 @@ + + @@ -25481,7 +25609,7 @@ - + @@ -26007,6 +26135,7 @@ + @@ -26183,6 +26312,7 @@ + @@ -26341,7 +26471,7 @@ - + @@ -26464,6 +26594,7 @@ + @@ -27542,7 +27673,7 @@ - + @@ -28054,7 +28185,7 @@ - + @@ -28177,6 +28308,9 @@ + + + @@ -28210,6 +28344,7 @@ + @@ -28407,7 +28542,7 @@ - + @@ -28514,6 +28649,7 @@ + @@ -28756,7 +28892,7 @@ - + @@ -29511,6 +29647,9 @@ + + + @@ -29519,6 +29658,9 @@ + + + @@ -29718,7 +29860,7 @@ - + @@ -29799,29 +29941,30 @@ - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gentest.py b/gentest.py index 465fdd79..af76b049 100755 --- a/gentest.py +++ b/gentest.py @@ -172,7 +172,8 @@ skipped_memcheck = [ "xmlLoadCatalog", "xmlAddEncodingAlias", "xmlCatalogRemove", "xmlLoadCatalogs", "xmlCleanupCharEncodingHandlers", "xmlInitCharEncodingHandlers", "xmlCatalogCleanup", "xmlSchemaGetBuiltInType", - "htmlParseFile", "htmlCtxtReadFile" # loads the catalogs + "htmlParseFile", "htmlCtxtReadFile", # loads the catalogs + "xmlTextReaderSchemaValidate", "xmlSchemaCleanupTypes" # initialize the schemas type system ] # diff --git a/include/libxml/tree.h b/include/libxml/tree.h index 212eebfa..d995e5cd 100644 --- a/include/libxml/tree.h +++ b/include/libxml/tree.h @@ -541,7 +541,7 @@ struct _xmlDOMWrapCtxt { /* * Some helper functions */ -#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_DEBUG_ENABLED) +#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_DEBUG_ENABLED) || defined (LIBXML_HTML_ENABLED) XMLPUBFUN int XMLCALL xmlValidateNCName (const xmlChar *value, int space); diff --git a/python/libxml2class.txt b/python/libxml2class.txt index f68869bb..d13be6fb 100644 --- a/python/libxml2class.txt +++ b/python/libxml2class.txt @@ -1066,7 +1066,9 @@ Class xmlTextReader(xmlTextReaderCore) ReadString() RelaxNGSetSchema() RelaxNGValidate() + SchemaValidate() SetParserProp() + SetSchema() Standalone() String() Value() @@ -1080,6 +1082,9 @@ Class xmlEntity(xmlNode) handleEntity() Class Schema() + # functions from module xmlreader + SetSchema() + # functions from module xmlschemas schemaDump() schemaNewValidCtxt() @@ -1120,6 +1125,7 @@ Class inputBuffer(ioReadWrapper) Class SchemaValidCtxt(SchemaValidCtxtCore) # functions from module xmlschemas + schemaIsValid() schemaSetValidOptions() schemaValidCtxtGetOptions() schemaValidateDoc() diff --git a/testapi.c b/testapi.c index 79efe8e1..9e7969bb 100644 --- a/testapi.c +++ b/testapi.c @@ -15109,7 +15109,6 @@ static int test_xmlStopParser(void) { int test_ret = 0; -#if defined(LIBXML_PUSH_ENABLED) #ifdef LIBXML_PUSH_ENABLED int mem_base; xmlParserCtxtPtr ctxt; /* an XML parser context */ @@ -15132,7 +15131,6 @@ test_xmlStopParser(void) { } } function_tests++; -#endif #endif return(test_ret); @@ -23084,7 +23082,7 @@ static int test_xmlValidateNCName(void) { int test_ret = 0; -#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_DEBUG_ENABLED) +#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_XPATH_ENABLED) || defined(LIBXML_SCHEMAS_ENABLED) || defined(LIBXML_DEBUG_ENABLED) || defined (LIBXML_HTML_ENABLED) #ifdef LIBXML_TREE_ENABLED int mem_base; int ret_val; @@ -31371,6 +31369,37 @@ test_xmlTextReaderRelaxNGValidate(void) { } +static int +test_xmlTextReaderSchemaValidate(void) { + int test_ret = 0; + +#if defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED) + int ret_val; + xmlTextReaderPtr reader; /* the xmlTextReaderPtr used */ + int n_reader; + char * xsd; /* the path to a W3C XSD schema or NULL */ + int n_xsd; + + for (n_reader = 0;n_reader < gen_nb_xmlTextReaderPtr;n_reader++) { + for (n_xsd = 0;n_xsd < gen_nb_const_char_ptr;n_xsd++) { + reader = gen_xmlTextReaderPtr(n_reader, 0); + xsd = gen_const_char_ptr(n_xsd, 1); + + ret_val = xmlTextReaderSchemaValidate(reader, (const char *)xsd); + desret_int(ret_val); + call_tests++; + des_xmlTextReaderPtr(n_reader, reader, 0); + des_const_char_ptr(n_xsd, (const char *)xsd, 1); + xmlResetLastError(); + } + } + function_tests++; +#endif + + return(test_ret); +} + + static int test_xmlTextReaderSetErrorHandler(void) { int test_ret = 0; @@ -31428,6 +31457,57 @@ test_xmlTextReaderSetParserProp(void) { return(test_ret); } +#ifdef LIBXML_READER_ENABLED + +#define gen_nb_xmlSchemaPtr 1 +static xmlSchemaPtr gen_xmlSchemaPtr(int no ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) { + return(NULL); +} +static void des_xmlSchemaPtr(int no ATTRIBUTE_UNUSED, xmlSchemaPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) { +} +#endif + + +static int +test_xmlTextReaderSetSchema(void) { + int test_ret = 0; + +#if defined(LIBXML_READER_ENABLED) && defined(LIBXML_SCHEMAS_ENABLED) + int mem_base; + int ret_val; + xmlTextReaderPtr reader; /* the xmlTextReaderPtr used */ + int n_reader; + xmlSchemaPtr schema; /* a precompiled Schema schema */ + int n_schema; + + for (n_reader = 0;n_reader < gen_nb_xmlTextReaderPtr;n_reader++) { + for (n_schema = 0;n_schema < gen_nb_xmlSchemaPtr;n_schema++) { + mem_base = xmlMemBlocks(); + reader = gen_xmlTextReaderPtr(n_reader, 0); + schema = gen_xmlSchemaPtr(n_schema, 1); + + ret_val = xmlTextReaderSetSchema(reader, schema); + desret_int(ret_val); + call_tests++; + des_xmlTextReaderPtr(n_reader, reader, 0); + des_xmlSchemaPtr(n_schema, schema, 1); + xmlResetLastError(); + if (mem_base != xmlMemBlocks()) { + printf("Leak of %d blocks found in xmlTextReaderSetSchema", + xmlMemBlocks() - mem_base); + test_ret++; + printf(" %d", n_reader); + printf(" %d", n_schema); + printf("\n"); + } + } + } + function_tests++; +#endif + + return(test_ret); +} + static int test_xmlTextReaderSetStructuredErrorHandler(void) { @@ -31544,7 +31624,7 @@ static int test_xmlreader(void) { int test_ret = 0; - if (quiet == 0) printf("Testing xmlreader : 71 of 81 functions ...\n"); + if (quiet == 0) printf("Testing xmlreader : 73 of 83 functions ...\n"); test_ret += test_xmlNewTextReader(); test_ret += test_xmlNewTextReaderFilename(); test_ret += test_xmlReaderForDoc(); @@ -31612,8 +31692,10 @@ test_xmlreader(void) { test_ret += test_xmlTextReaderReadState(); test_ret += test_xmlTextReaderRelaxNGSetSchema(); test_ret += test_xmlTextReaderRelaxNGValidate(); + test_ret += test_xmlTextReaderSchemaValidate(); test_ret += test_xmlTextReaderSetErrorHandler(); test_ret += test_xmlTextReaderSetParserProp(); + test_ret += test_xmlTextReaderSetSchema(); test_ret += test_xmlTextReaderSetStructuredErrorHandler(); test_ret += test_xmlTextReaderStandalone(); test_ret += test_xmlTextReaderValue(); @@ -32248,16 +32330,6 @@ test_xmlsave(void) { printf("Module xmlsave: %d errors\n", test_ret); return(test_ret); } -#ifdef LIBXML_SCHEMAS_ENABLED - -#define gen_nb_xmlSchemaPtr 1 -static xmlSchemaPtr gen_xmlSchemaPtr(int no ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) { - return(NULL); -} -static void des_xmlSchemaPtr(int no ATTRIBUTE_UNUSED, xmlSchemaPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) { -} -#endif - static int test_xmlSchemaDump(void) { @@ -32448,6 +32520,40 @@ test_xmlSchemaGetValidErrors(void) { } +static int +test_xmlSchemaIsValid(void) { + int test_ret = 0; + +#if defined(LIBXML_SCHEMAS_ENABLED) + int mem_base; + int ret_val; + xmlSchemaValidCtxtPtr ctxt; /* the schema validation context */ + int n_ctxt; + + for (n_ctxt = 0;n_ctxt < gen_nb_xmlSchemaValidCtxtPtr;n_ctxt++) { + mem_base = xmlMemBlocks(); + ctxt = gen_xmlSchemaValidCtxtPtr(n_ctxt, 0); + + ret_val = xmlSchemaIsValid(ctxt); + desret_int(ret_val); + call_tests++; + des_xmlSchemaValidCtxtPtr(n_ctxt, ctxt, 0); + xmlResetLastError(); + if (mem_base != xmlMemBlocks()) { + printf("Leak of %d blocks found in xmlSchemaIsValid", + xmlMemBlocks() - mem_base); + test_ret++; + printf(" %d", n_ctxt); + printf("\n"); + } + } + function_tests++; +#endif + + return(test_ret); +} + + static int test_xmlSchemaNewDocParserCtxt(void) { int test_ret = 0; @@ -32576,6 +32682,70 @@ test_xmlSchemaParse(void) { return(test_ret); } +#ifdef LIBXML_SCHEMAS_ENABLED + +#define gen_nb_xmlSAXHandlerPtr_ptr 1 +static xmlSAXHandlerPtr * gen_xmlSAXHandlerPtr_ptr(int no ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) { + return(NULL); +} +static void des_xmlSAXHandlerPtr_ptr(int no ATTRIBUTE_UNUSED, xmlSAXHandlerPtr * val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) { +} +#endif + + +static int +test_xmlSchemaSAXPlug(void) { + int test_ret = 0; + + + /* missing type support */ + return(test_ret); +} + +#ifdef LIBXML_SCHEMAS_ENABLED + +#define gen_nb_xmlSchemaSAXPlugPtr 1 +static xmlSchemaSAXPlugPtr gen_xmlSchemaSAXPlugPtr(int no ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) { + return(NULL); +} +static void des_xmlSchemaSAXPlugPtr(int no ATTRIBUTE_UNUSED, xmlSchemaSAXPlugPtr val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) { +} +#endif + + +static int +test_xmlSchemaSAXUnplug(void) { + int test_ret = 0; + +#if defined(LIBXML_SCHEMAS_ENABLED) + int mem_base; + int ret_val; + xmlSchemaSAXPlugPtr plug; /* a data structure returned by xmlSchemaSAXPlug */ + int n_plug; + + for (n_plug = 0;n_plug < gen_nb_xmlSchemaSAXPlugPtr;n_plug++) { + mem_base = xmlMemBlocks(); + plug = gen_xmlSchemaSAXPlugPtr(n_plug, 0); + + ret_val = xmlSchemaSAXUnplug(plug); + desret_int(ret_val); + call_tests++; + des_xmlSchemaSAXPlugPtr(n_plug, plug, 0); + xmlResetLastError(); + if (mem_base != xmlMemBlocks()) { + printf("Leak of %d blocks found in xmlSchemaSAXUnplug", + xmlMemBlocks() - mem_base); + test_ret++; + printf(" %d", n_plug); + printf("\n"); + } + } + function_tests++; +#endif + + return(test_ret); +} + static int test_xmlSchemaSetParserErrors(void) { @@ -32867,15 +33037,18 @@ static int test_xmlschemas(void) { int test_ret = 0; - if (quiet == 0) printf("Testing xmlschemas : 12 of 19 functions ...\n"); + if (quiet == 0) printf("Testing xmlschemas : 14 of 22 functions ...\n"); test_ret += test_xmlSchemaDump(); test_ret += test_xmlSchemaGetParserErrors(); test_ret += test_xmlSchemaGetValidErrors(); + test_ret += test_xmlSchemaIsValid(); test_ret += test_xmlSchemaNewDocParserCtxt(); test_ret += test_xmlSchemaNewMemParserCtxt(); test_ret += test_xmlSchemaNewParserCtxt(); test_ret += test_xmlSchemaNewValidCtxt(); test_ret += test_xmlSchemaParse(); + test_ret += test_xmlSchemaSAXPlug(); + test_ret += test_xmlSchemaSAXUnplug(); test_ret += test_xmlSchemaSetParserErrors(); test_ret += test_xmlSchemaSetValidErrors(); test_ret += test_xmlSchemaSetValidOptions(); @@ -32970,19 +33143,11 @@ test_xmlSchemaCleanupTypes(void) { int test_ret = 0; #if defined(LIBXML_SCHEMAS_ENABLED) - int mem_base; - mem_base = xmlMemBlocks(); xmlSchemaCleanupTypes(); call_tests++; xmlResetLastError(); - if (mem_base != xmlMemBlocks()) { - printf("Leak of %d blocks found in xmlSchemaCleanupTypes", - xmlMemBlocks() - mem_base); - test_ret++; - printf("\n"); - } function_tests++; #endif diff --git a/xmlschemas.c b/xmlschemas.c index 28a54d69..afa70105 100644 --- a/xmlschemas.c +++ b/xmlschemas.c @@ -24362,8 +24362,8 @@ endElementNsSplit(void *ctx, const xmlChar * localname, /** * xmlSchemaSAXPlug: * @ctxt: a schema validation context - * @saxptr: a pointer to the original xmlSAXHandlerPtr - * @dataptr: a pointer to the original SAX user data pointer + * @sax: a pointer to the original xmlSAXHandlerPtr + * @user_data: a pointer to the original SAX user data pointer * * Plug a SAX based validation layer in a SAX parsing event flow. * The original @saxptr and @dataptr data are replaced by new pointers diff --git a/xpath.c b/xpath.c index 6dba2936..cd4f82f0 100644 --- a/xpath.c +++ b/xpath.c @@ -11304,6 +11304,16 @@ xmlXPathTryStreamCompile(xmlXPathContextPtr ctxt, const xmlChar *str) { if ((!xmlStrchr(str, '[')) && (!xmlStrchr(str, '(')) && (!xmlStrchr(str, '@'))) { + const xmlChar *tmp; + + /* + * We don't try to handle :: constructs, just the simplied form at + * this point + */ + tmp = xmlStrchr(str, ':'); + if ((tmp != NULL) && (tmp[1] == ':')) + return(NULL); + if (ctxt != NULL) { dict = ctxt->dict; if (ctxt->nsNr > 0) { diff --git a/xstc/Makefile.am b/xstc/Makefile.am index 6ba9e489..8b1d1f00 100644 --- a/xstc/Makefile.am +++ b/xstc/Makefile.am @@ -128,4 +128,4 @@ clean: rm -f $(PYSCRIPTS) test.log distclean: - rm -rf $(PYSCRIPTS) $(TESTDIRS) test.log + rm -rf $(PYSCRIPTS) test.log # TESTDIRS