Lines Matching full:value
202 * Check if the current value on the XPath stack is a node set or
203 * an XSLT value tree.
208 (((ctxt)->value != NULL) \
209 && (((ctxt)->value->type == XPATH_NODESET) \
210 || ((ctxt)->value->type == XPATH_XSLT_TREE)))
216 * Checks if the current value on the XPath stack is an external
223 ((ctxt->value != NULL) && (ctxt->value->type == XPATH_USERS))
272 * Macro to check that the value on top of the XPath stack is of a given
276 if ((ctxt->value == NULL) || (ctxt->value->type != typeval)) \
283 * Macro to check that the value on top of the XPath stack is of a given
287 if ((ctxt->value == NULL) || (ctxt->value->type != typeval)) \
304 * Macro to try to cast the value on the top of the XPath stack to a string.
307 if ((ctxt->value != NULL) && (ctxt->value->type != XPATH_STRING)) \
313 * Macro to try to cast the value on the top of the XPath stack to a number.
316 if ((ctxt->value != NULL) && (ctxt->value->type != XPATH_NUMBER)) \
322 * Macro to try to cast the value on the top of the XPath stack to a boolean.
325 if ((ctxt->value != NULL) && (ctxt->value->type != XPATH_BOOLEAN)) \
444 xmlXPathObjectPtr value);
449 xmlXPathObjectPtr value);
483 xmlXPathObjectPtr value);