1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-23 01:52:48 +03:00

- HTMLtree.h debugXML.h parserInternals.h tree.h valid.c

xmlversion.h.in xpathInternals.h xpath.h: some cleanup for gtk-doc
- doc/html/* : rebuilt the docs
- valid.c: small patch which may improve some case when
  validating.
Daniel
This commit is contained in:
Daniel Veillard
2001-05-19 14:59:49 +00:00
parent f69bb4b5bf
commit bed7b052a3
41 changed files with 7944 additions and 1441 deletions

View File

@@ -167,7 +167,9 @@ struct _xmlXPathAxis {
xmlXPathAxisFunc func; /* the search function */
};
/*
/**
* xmlXPathContext:
*
* Expression evaluation occurs with respect to a context.
* he context consists of:
* - a node (the context node)
@@ -229,7 +231,9 @@ struct _xmlXPathContext {
typedef struct _xmlXPathCompExpr xmlXPathCompExpr;
typedef xmlXPathCompExpr *xmlXPathCompExprPtr;
/*
/**
* xmlXPathParserContext:
*
* An XPath parser context, it contains pure parsing informations,
* an xmlXPathContext, and the stack of objects.
*/
@@ -249,7 +253,9 @@ struct _xmlXPathParserContext {
int xptr; /* it this an XPointer expression */
};
/*
/**
* xmlXPathFunction:
*
* An XPath function
* The arguments (if any) are popped out of the context stack
* and the result is pushed on the stack.
@@ -288,7 +294,7 @@ int xmlXPathCmpNodes (xmlNodePtr node1,
*/
int xmlXPathCastNumberToBoolean (double val);
int xmlXPathCastStringToBoolean (const xmlChar * val);
int xmlXPathCastNodeToBoolean (xmlNodeSetPtr ns);
int xmlXPathCastNodeSetToBoolean (xmlNodeSetPtr ns);
int xmlXPathCastToBoolean (xmlXPathObjectPtr val);
double xmlXPathCastBooleanToNumber (int val);