Home | History | Annotate | Download | only in libxml2

Lines Matching refs:neq

6709  * @neq:  flag to show whether for '=' (0) or '!=' (1)
6720 xmlXPathEqualNodeSetString(xmlXPathObjectPtr arg, const xmlChar * str, int neq)
6743 if (neq)
6747 if (neq)
6750 } else if (neq) {
6757 } else if (neq)
6767 * @neq: flag to show whether to compare '=' (0) or '!=' (1)
6780 xmlXPathObjectPtr arg, double f, int neq) {
6803 if ((!neq) && (v==f)) {
6806 } else if ((neq) && (v!=f)) {
6811 if (neq)
6826 * @neq: flag to show whether to test '=' (0) or '!=' (1)
6840 xmlXPathEqualNodeSets(xmlXPathObjectPtr arg1, xmlXPathObjectPtr arg2, int neq) {
6868 if (neq == 0)
6908 if (neq) {
6918 ret = xmlStrEqual(values1[i], values2[j]) ^ neq;