Lines Matching refs:inf

6360  * @inf:  less than (1) or greater than (0)
6380 xmlXPathCompareNodeSetFloat(xmlXPathParserContextPtr ctxt, int inf, int strict,
6402 ret = xmlXPathCompareValues(ctxt, inf, strict);
6416 * @inf: less than (1) or greater than (0)
6435 xmlXPathCompareNodeSetString(xmlXPathParserContextPtr ctxt, int inf, int strict,
6456 ret = xmlXPathCompareValues(ctxt, inf, strict);
6469 * @inf: less than (1) or greater than (0)
6496 xmlXPathCompareNodeSets(int inf, int strict,
6548 if (inf && strict)
6550 else if (inf && !strict)
6552 else if (!inf && strict)
6554 else if (!inf && !strict)
6572 * @inf: less than (1) or greater than (0)
6591 xmlXPathCompareNodeSetValue(xmlXPathParserContextPtr ctxt, int inf, int strict,
6599 return(xmlXPathCompareNodeSetFloat(ctxt, inf, strict, arg, val));
6602 return(xmlXPathCompareNodeSets(inf, strict, arg, val));
6604 return(xmlXPathCompareNodeSetString(ctxt, inf, strict, arg, val));
6609 return(xmlXPathCompareValues(ctxt, inf, strict));
7209 * @inf: less than (1) or greater than (0)
7231 xmlXPathCompareValues(xmlXPathParserContextPtr ctxt, int inf, int strict) {
7255 ret = xmlXPathCompareNodeSets(inf, strict, arg1, arg2);
7258 ret = xmlXPathCompareNodeSetValue(ctxt, inf, strict,
7261 ret = xmlXPathCompareNodeSetValue(ctxt, !inf, strict,
7298 if (inf && strict) {
7308 else if (inf && !strict) {
7317 else if (!inf && strict) {
7327 else if (!inf && !strict) {
10798 int inf, strict;
10801 if (CUR == '<') inf = 1;
10802 else inf = 0;
10810 PUSH_BINARY_EXPR(XPATH_OP_CMP, op1, ctxt->comp->last, inf, strict);