Home | History | Annotate | Download | only in libxml2

Lines Matching defs:strict

6455  * @strict:  is the comparison strict
6474 xmlXPathCompareNodeSetFloat(xmlXPathParserContextPtr ctxt, int inf, int strict,
6496 ret = xmlXPathCompareValues(ctxt, inf, strict);
6511 * @strict: is the comparison strict
6529 xmlXPathCompareNodeSetString(xmlXPathParserContextPtr ctxt, int inf, int strict,
6550 ret = xmlXPathCompareValues(ctxt, inf, strict);
6564 * @strict: is the comparison strict
6590 xmlXPathCompareNodeSets(int inf, int strict,
6642 if (inf && strict)
6644 else if (inf && !strict)
6646 else if (!inf && strict)
6648 else if (!inf && !strict)
6667 * @strict: is the comparison strict
6685 xmlXPathCompareNodeSetValue(xmlXPathParserContextPtr ctxt, int inf, int strict,
6693 return(xmlXPathCompareNodeSetFloat(ctxt, inf, strict, arg, val));
6696 return(xmlXPathCompareNodeSets(inf, strict, arg, val));
6698 return(xmlXPathCompareNodeSetString(ctxt, inf, strict, arg, val));
6703 return(xmlXPathCompareValues(ctxt, inf, strict));
7304 * @strict: is the comparison strict
7325 xmlXPathCompareValues(xmlXPathParserContextPtr ctxt, int inf, int strict) {
7349 ret = xmlXPathCompareNodeSets(inf, strict, arg1, arg2);
7352 ret = xmlXPathCompareNodeSetValue(ctxt, inf, strict,
7355 ret = xmlXPathCompareNodeSetValue(ctxt, !inf, strict,
7392 if (inf && strict) {
7402 else if (inf && !strict) {
7411 else if (!inf && strict) {
7421 else if (!inf && !strict) {
10931 int inf, strict;
10936 if (NXT(1) == '=') strict = 0;
10937 else strict = 1;
10939 if (!strict) NEXT;
10943 PUSH_BINARY_EXPR(XPATH_OP_CMP, op1, ctxt->comp->last, inf, strict);