Lines Matching defs:strict

6361  * @strict:  is the comparison strict
6380 xmlXPathCompareNodeSetFloat(xmlXPathParserContextPtr ctxt, int inf, int strict,
6402 ret = xmlXPathCompareValues(ctxt, inf, strict);
6417 * @strict: is the comparison strict
6435 xmlXPathCompareNodeSetString(xmlXPathParserContextPtr ctxt, int inf, int strict,
6456 ret = xmlXPathCompareValues(ctxt, inf, strict);
6470 * @strict: is the comparison strict
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)
6573 * @strict: is the comparison strict
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));
7210 * @strict: is the comparison strict
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;
10803 if (NXT(1) == '=') strict = 0;
10804 else strict = 1;
10806 if (!strict) NEXT;
10810 PUSH_BINARY_EXPR(XPATH_OP_CMP, op1, ctxt->comp->last, inf, strict);