📄 libxml2.def.src
字号:
xmlSkipBlankChars xmlStringCurrentChar xmlParserHandlePEReference xmlParserHandleReference xmlCheckLanguageID /* Really core function shared with HTML parser */ xmlCurrentChar xmlCopyCharMultiByte xmlCopyChar xmlNextChar xmlParserInputShrink /* Actually comes from the HTML parser but launched from the init stuff */ #ifdef LIBXML_HTML_ENABLED htmlInitAutoClose htmlCreateFileParserCtxt #endif /* LIBXML_HTML_ENABLED *//* SAX.h --------------------------------------------------------------------- */ getPublicId getSystemId setDocumentLocator getLineNumber getColumnNumber isStandalone hasInternalSubset hasExternalSubset internalSubset externalSubset getEntity getParameterEntity resolveEntity entityDecl attributeDecl elementDecl notationDecl unparsedEntityDecl startDocument endDocument attribute startElement endElement reference characters ignorableWhitespace processingInstruction globalNamespace setNamespace getNamespace checkNamespace namespaceDecl comment cdataBlock initxmlDefaultSAXHandler xmlDefaultSAXHandlerInit #ifdef LIBXML_HTML_ENABLED htmlDefaultSAXHandlerInit inithtmlDefaultSAXHandler #endif /* LIBXML_HTML_ENABLED */ #ifdef LIBXML_DOCB_ENABLED docbDefaultSAXHandlerInit initdocbDefaultSAXHandler #endif /* LIBXML_DOCB_ENABLED *//* tree.h --------------------------------------------------------------------- */ /* Variables. */ // baseDTD DATA <-- has been removed from the code // oldXMLWDcompatibility DATA <-- moved to the globals.h section // xmlIndentTreeOutput DATA <-- moved to the globals.h section // xmlBufferAllocScheme DATA <-- moved to the globals.h section // xmlSaveNoEmptyTags DATA <-- moved to the globals.h section // xmlDefaultBufferSize DATA <-- moved to the globals.h section /* handling buffers */ xmlSetBufferAllocationScheme xmlGetBufferAllocationScheme xmlBufferCreate xmlBufferCreateSize xmlBufferResize xmlBufferFree xmlBufferDump xmlBufferAdd xmlBufferAddHead xmlBufferCat xmlBufferCCat xmlBufferShrink xmlBufferGrow xmlBufferEmpty xmlBufferContent xmlBufferSetAllocationScheme xmlBufferLength /* Creating/freeing new structures */ xmlCreateIntSubset xmlNewDtd xmlGetIntSubset xmlFreeDtd xmlNewGlobalNs xmlNewNs xmlFreeNs xmlFreeNsList xmlNewDoc xmlFreeDoc xmlNewDocProp xmlNewProp xmlNewNsProp xmlFreePropList xmlFreeProp xmlCopyProp xmlCopyPropList xmlCopyDtd xmlCopyDoc /* Creating new nodes */ xmlNewDocNode xmlNewDocRawNode xmlNewNode xmlNewChild xmlNewTextChild xmlNewDocText xmlNewText xmlNewPI xmlNewDocTextLen xmlNewTextLen xmlNewDocComment xmlNewComment xmlNewCDataBlock xmlNewCharRef xmlNewReference xmlCopyNode xmlDocCopyNode xmlCopyNodeList xmlNewDocFragment /* Navigating */ xmlGetLineNo xmlGetNodePath xmlDocGetRootElement xmlGetLastChild xmlNodeIsText xmlIsBlankNode /* Changing the structure */ xmlDocSetRootElement xmlNodeSetName xmlAddChild xmlAddChildList xmlReplaceNode xmlAddSibling xmlAddPrevSibling xmlAddNextSibling xmlUnlinkNode xmlTextMerge xmlTextConcat xmlFreeNodeList xmlFreeNode xmlSetTreeDoc xmlSetListDoc /* Namespaces */ xmlSearchNs xmlSearchNsByHref xmlGetNsList xmlSetNs xmlCopyNamespace xmlCopyNamespaceList /* Changing the content. */ xmlSetProp xmlGetProp xmlHasProp xmlHasNsProp xmlSetNsProp xmlGetNsProp xmlStringGetNodeList xmlStringLenGetNodeList xmlNodeListGetString xmlNodeListGetRawString xmlNodeSetContent xmlNodeSetContentLen xmlNodeAddContent xmlNodeAddContentLen xmlNodeGetContent xmlNodeGetLang xmlNodeSetLang xmlNodeGetSpacePreserve xmlNodeSetSpacePreserve xmlNodeGetBase xmlNodeSetBase /* Removing content. */ xmlRemoveProp xmlUnsetProp xmlUnsetNsProp /* Internal, don't use */ xmlBufferWriteCHAR xmlBufferWriteChar xmlBufferWriteQuotedString /* Namespace handling */ xmlReconciliateNs /* Saving */ xmlDocDumpFormatMemory xmlDocDumpMemory xmlDocDumpMemoryEnc xmlDocDumpFormatMemoryEnc xmlDocDump xmlElemDump xmlSaveFile xmlSaveFormatFile xmlNodeDump xmlSaveFileTo xmlSaveFormatFileTo xmlNodeDumpOutput xmlSaveFormatFileEnc xmlSaveFileEnc /* Compression */ xmlGetDocCompressMode xmlSetDocCompressMode xmlGetCompressMode xmlSetCompressMode/* uri.h --------------------------------------------------------------------- */ xmlCreateURI xmlBuildURI xmlParseURI xmlParseURIReference xmlSaveUri xmlPrintURI xmlURIEscapeStr xmlURIUnescapeString xmlNormalizeURIPath xmlURIEscape xmlFreeURI/* valid.h --------------------------------------------------------------------- */ /* helper */ xmlSplitQName2 /* Notation */ xmlAddNotationDecl xmlCopyNotationTable xmlFreeNotationTable xmlDumpNotationDecl xmlDumpNotationTable /* Element Content */ xmlNewElementContent xmlCopyElementContent xmlFreeElementContent xmlSnprintfElementContent /* DEPRECATED */ xmlSprintfElementContent /* Element */ xmlAddElementDecl xmlCopyElementTable xmlFreeElementTable xmlDumpElementTable xmlDumpElementDecl /* Enumeration */ xmlCreateEnumeration xmlFreeEnumeration xmlCopyEnumeration /* Attribute */ xmlAddAttributeDecl xmlCopyAttributeTable xmlFreeAttributeTable xmlDumpAttributeTable xmlDumpAttributeDecl /* IDs */ xmlAddID xmlFreeIDTable xmlGetID xmlIsID xmlRemoveID /* IDREFs */ xmlAddRef xmlFreeRefTable xmlIsRef xmlRemoveRef xmlGetRefs /* The public function calls related to validity checking */ xmlValidateRoot xmlValidateElementDecl xmlValidNormalizeAttributeValue xmlValidateAttributeDecl xmlValidateAttributeValue xmlValidateNotationDecl xmlValidateDtd xmlValidateDtdFinal xmlValidateDocument xmlValidateElement xmlValidateOneElement xmlValidateOneAttribute xmlValidateDocumentFinal xmlValidateNotationUse xmlIsMixedElement xmlGetDtdAttrDesc xmlGetDtdQAttrDesc xmlGetDtdNotationDesc xmlGetDtdQElementDesc xmlGetDtdElementDesc xmlValidGetValidElements xmlValidGetPotentialChildren/* xinclude.h --------------------------------------------------------------------- */#ifdef LIBXML_XINCLUDE_ENABLED xmlXIncludeProcess#endif /* LIBXML_XINCLUDE_ENABLED *//* xlink.h --------------------------------------------------------------------- */#ifdef LIBXML_XLINK_INCLUDED xlinkGetDefaultDetect xlinkSetDefaultDetect xlinkGetDefaultHandler xlinkSetDefaultHandler xlinkIsLink#endif/* xmlerror.h --------------------------------------------------------------------- */ xmlSetGenericErrorFunc initGenericErrorDefaultFunc xmlParserError xmlParserWarning xmlParserValidityError xmlParserValidityWarning xmlParserPrintFileInfo xmlParserPrintFileContext // xmlGenericError DATA <-- moved to the globals.h section // xmlGenericErrorContext DATA <-- moved to the globals.h section/* xmlIO.h --------------------------------------------------------------------- */ /* Interfaces for input */ xmlCleanupInputCallbacks xmlCleanupOutputCallbacks xmlRegisterDefaultInputCallbacks xmlAllocParserInputBuffer xmlParserInputBufferCreateFilename xmlParserInputBufferCreateFile xmlParserInputBufferCreateFd xmlParserInputBufferCreateMem xmlParserInputBufferCreateIO xmlParserInputBufferRead xmlParserInputBufferGrow xmlParserInputBufferPush xmlFreeParserInputBuffer xmlParserGetDirectory xmlRegisterInputCallbacks /* Interfaces for output */ xmlRegisterDefaultOutputCallbacks xmlAllocOutputBuffer xmlOutputBufferCreateFilename xmlOutputBufferCreateFile xmlOutputBufferCreateFd xmlOutputBufferCreateIO xmlOutputBufferWrite xmlOutputBufferWriteString xmlOutputBufferFlush xmlOutputBufferClose xmlRegisterOutputCallbacks #ifdef LIBXML_HTTP_ENABLED xmlIOHTTPOpenW xmlRegisterHTTPPostCallbacks #endif /* LIBXML_HTTP_ENABLED */ xmlNoNetExternalEntityLoader/* xmlmemory.h --------------------------------------------------------------------- */ // xmlFree DATA <-- moved to the globals.h section // xmlMalloc DATA <-- moved to the globals.h section // xmlRealloc DATA <-- moved to the globals.h section // xmlMemStrdup DATA <-- moved to the globals.h section xmlMemSetup xmlMemGet xmlInitMemory xmlMemUsed xmlMemDisplay xmlMemShow xmlMemoryDump #ifdef DEBUG_MEMORY_LOCATION xmlMallocLoc xmlReallocLoc xmlMemStrdupLoc #endif /* DEBUG_MEMORY_LOCATION *//* xmlversion.h --------------------------------------------------------------------- */ xmlCheckVersion/* xpath.h --------------------------------------------------------------------- */#ifdef LIBXML_XPATH_ENABLED /* Objects and Nodesets handling */ xmlXPathNAN DATA xmlXPathPINF DATA xmlXPathNINF DATA xmlXPathIsNaN xmlXPathIsInf xmlXPathFreeObject xmlXPathNodeSetCreate xmlXPathFreeNodeSetList xmlXPathFreeNodeSet xmlXPathObjectCopy xmlXPathCmpNodes /* Conversion functions to basic types */ xmlXPathCastNumberToBoolean xmlXPathCastStringToBoolean xmlXPathCastNodeSetToBoolean xmlXPathCastToBoolean xmlXPathCastBooleanToNumber xmlXPathCastStringToNumber xmlXPathCastNodeToNumber xmlXPathCastNodeSetToNumber xmlXPathCastToNumber xmlXPathCastBooleanToString xmlXPathCastNumberToString xmlXPathCastNodeToString xmlXPathCastNodeSetToString xmlXPathCastToString xmlXPathConvertBoolean xmlXPathConvertNumber xmlXPathConvertString /* Context handling */ xmlXPathInit xmlXPathNewContext xmlXPathFreeContext /* Evaluation functions. */ xmlXPathEval xmlXPathEvalExpression xmlXPathEvalPredicate /* Separate compilation/evaluation entry points */ xmlXPathCompile xmlXPathCompiledEval xmlXPathFreeCompExpr#endif /* LIBXML_XPATH_ENABLED *//* xpathinternals.h --------------------------------------------------------------------- */#ifdef LIBXML_XPATH_ENABLED xmlXPathPopBoolean xmlXPathPopNumber xmlXPathPopString xmlXPathPopNodeSet xmlXPathPopExternal /* Variable Lookup forwarding */ xmlXPathRegisterVariableLookup /* Function Lookup forwarding */ xmlXPathRegisterFuncLookup /* Error reporting */ xmlXPatherror xmlXPathDebugDumpObject xmlXPathDebugDumpCompExpr /* NodeSet handling */ xmlXPathNodeSetContains xmlXPathDifference xmlXPathIntersection xmlXPathDistinctSorted xmlXPathDistinct xmlXPathHasSameNodes xmlXPathNodeLeadingSorted xmlXPathLeadingSorted xmlXPathNodeLeading xmlXPathLeading xmlXPathNodeTrailingSorted xmlXPathTrailingSorted xmlXPathNodeTrailing xmlXPathTrailing /* Extending a context */ xmlXPathRegisterNs xmlXPathNsLookup xmlXPathRegisteredNsCleanup xmlXPathRegisterFunc xmlXPathRegisterFuncNS xmlXPathRegisterVariable xmlXPathRegisterVariableNS xmlXPathFunctionLookup xmlXPathFunctionLookupNS xmlXPathRegisteredFuncsCleanup xmlXPathVariableLookup xmlXPathVariableLookupNS xmlXPathRegisteredVariablesCleanup /* Utilities to extend XPath */ xmlXPathNewParserContext xmlXPathFreeParserContext /* TODO: remap to xmlXPathValuePop and Push */ valuePop valuePush xmlXPathNewString xmlXPathNewCString xmlXPathWrapString xmlXPathWrapCString xmlXPathNewFloat xmlXPathNewBoolean xmlXPathNewNodeSet xmlXPathNewValueTree xmlXPathNodeSetAdd xmlXPathNodeSetAddUnique xmlXPathNodeSetSort xmlXPathIdFunction xmlXPathRoot xmlXPathEvalExpr xmlXPathParseName xmlXPathParseNCName /* Debug */ #ifdef LIBXML_DEBUG_ENABLED xmlXPathDebugDumpObject xmlXPathDebugDumpCompExpr #endif /* LIBXML_DEBUG_ENABLED */ /* Existing functions */ xmlXPathStringEvalNumber xmlXPathEvaluatePredicateResult xmlXPathInit xmlXPathStringFunction xmlXPathRegisterAllFunctions xmlXPathNodeSetCreate xmlXPathNodeSetAdd xmlXPathNodeSetMerge xmlXPathNodeSetDel xmlXPathNodeSetRemove xmlXPathFreeNodeSet xmlXPathNewNodeSet xmlXPathNewNodeSetList xmlXPathWrapNodeSet xmlXPathWrapExternal xmlXPathFreeNodeSetList xmlXPathNewFloat xmlXPathNewBoolean xmlXPathNewString xmlXPathNewCString xmlXPathFreeObject xmlXPathNewContext xmlXPathFreeContext xmlXPathEqualValues xmlXPathCompareValues xmlXPathValueFlipSign xmlXPathAddValues xmlXPathSubValues xmlXPathMultValues xmlXPathDivValues xmlXPathModValues xmlXPathIsNodeType /* Some of the axis navigation routines */ xmlXPathNextSelf xmlXPathNextChild xmlXPathNextDescendant xmlXPathNextDescendantOrSelf xmlXPathNextParent xmlXPathNextAncestorOrSelf xmlXPathNextFollowingSibling xmlXPathNextFollowing xmlXPathNextNamespace xmlXPathNextAttribute xmlXPathNextPreceding xmlXPathNextAncestor xmlXPathNextPrecedingSibling /* The official core of XPath functions */ xmlXPathRoot xmlXPathLastFunction xmlXPathPositionFunction xmlXPathCountFunction xmlXPathIdFunction xmlXPathLocalNameFunction xmlXPathNamespaceURIFunction xmlXPathStringFunction xmlXPathStringLengthFunction xmlXPathConcatFunction xmlXPathContainsFunction xmlXPathStartsWithFunction xmlXPathSubstringFunction xmlXPathSubstringBeforeFunction xmlXPathSubstringAfterFunction xmlXPathNormalizeFunction xmlXPathTranslateFunction xmlXPathNotFunction xmlXPathTrueFunction xmlXPathFalseFunction xmlXPathLangFunction xmlXPathNumberFunction xmlXPathSumFunction xmlXPathFloorFunction xmlXPathCeilingFunction xmlXPathRoundFunction xmlXPathBooleanFunction#endif /* LIBXML_XPATH_ENABLED *//* xpointer.h --------------------------------------------------------------------- */#ifdef LIBXML_XPTR_ENABLED /* Handling of location sets */ xmlXPtrLocationSetCreate xmlXPtrFreeLocationSet xmlXPtrLocationSetMerge xmlXPtrNewRange xmlXPtrNewRangePoints xmlXPtrNewRangeNodePoint xmlXPtrNewRangePointNode xmlXPtrNewRangeNodes xmlXPtrNewLocationSetNodes xmlXPtrNewLocationSetNodeSet xmlXPtrNewRangeNodeObject xmlXPtrNewCollapsedRange xmlXPtrLocationSetAdd xmlXPtrWrapLocationSet xmlXPtrLocationSetDel xmlXPtrLocationSetRemove /* Functions */ xmlXPtrNewContext xmlXPtrEval xmlXPtrRangeToFunction xmlXPtrBuildNodeList xmlXPtrEvalRangePredicate#endif /* LIBXML_XPTR_ENABLED */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -