• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/libxml2/

Lines Matching refs:inf

6334  * @inf:  less than (1) or greater than (0)
6354 xmlXPathCompareNodeSetFloat(xmlXPathParserContextPtr ctxt, int inf, int strict,
6376 ret = xmlXPathCompareValues(ctxt, inf, strict);
6390 * @inf: less than (1) or greater than (0)
6409 xmlXPathCompareNodeSetString(xmlXPathParserContextPtr ctxt, int inf, int strict,
6430 ret = xmlXPathCompareValues(ctxt, inf, strict);
6443 * @inf: less than (1) or greater than (0)
6470 xmlXPathCompareNodeSets(int inf, int strict,
6522 if (inf && strict)
6524 else if (inf && !strict)
6526 else if (!inf && strict)
6528 else if (!inf && !strict)
6546 * @inf: less than (1) or greater than (0)
6565 xmlXPathCompareNodeSetValue(xmlXPathParserContextPtr ctxt, int inf, int strict,
6573 return(xmlXPathCompareNodeSetFloat(ctxt, inf, strict, arg, val));
6576 return(xmlXPathCompareNodeSets(inf, strict, arg, val));
6578 return(xmlXPathCompareNodeSetString(ctxt, inf, strict, arg, val));
6583 return(xmlXPathCompareValues(ctxt, inf, strict));
7183 * @inf: less than (1) or greater than (0)
7205 xmlXPathCompareValues(xmlXPathParserContextPtr ctxt, int inf, int strict) {
7229 ret = xmlXPathCompareNodeSets(inf, strict, arg1, arg2);
7232 ret = xmlXPathCompareNodeSetValue(ctxt, inf, strict,
7235 ret = xmlXPathCompareNodeSetValue(ctxt, !inf, strict,
7272 if (inf && strict) {
7282 else if (inf && !strict) {
7291 else if (!inf && strict) {
7301 else if (!inf && !strict) {
10769 int inf, strict;
10772 if (CUR == '<') inf = 1;
10773 else inf = 0;
10781 PUSH_BINARY_EXPR(XPATH_OP_CMP, op1, ctxt->comp->last, inf, strict);