Home | History | Annotate | Download | only in libxml2

Lines Matching defs:UNBOUNDED

109 #define UNBOUNDED (1 << 30)
4175 if (elem->maxOccurs >= UNBOUNDED)
4176 fprintf(output, "max: unbounded\n");
4312 if (particle->maxOccurs >= UNBOUNDED)
4313 fprintf(output, " max: unbounded");
6006 if (xmlStrEqual(val, (const xmlChar *) "unbounded")) {
6007 if (max != UNBOUNDED) {
6015 return (UNBOUNDED); /* encoding it with -1 might be another option */
6822 if (maxOccurs != UNBOUNDED) {
6907 max = xmlGetMaxOccurs(ctxt, node, 0, UNBOUNDED, 1,
6908 "(xs:nonNegativeInteger | unbounded)");
8486 max = xmlGetMaxOccurs(ctxt, node, 0, UNBOUNDED, 1, "(xs:nonNegativeInteger | unbounded)");
9352 max = xmlGetMaxOccurs(ctxt, node, 0, UNBOUNDED, 1,
9353 "(xs:nonNegativeInteger | unbounded)");
11218 max = xmlGetMaxOccurs(ctxt, node, 0, UNBOUNDED, 1,
11219 "(xs:nonNegativeInteger | unbounded)");
12609 int maxOccurs = particle->maxOccurs == UNBOUNDED ?
12610 UNBOUNDED : particle->maxOccurs - 1;
12674 } else if ((particle->maxOccurs >= UNBOUNDED) &&
12684 int maxOccurs = particle->maxOccurs == UNBOUNDED ?
12685 UNBOUNDED : particle->maxOccurs - 1;
12782 particle->maxOccurs == UNBOUNDED ? UNBOUNDED :
12846 if (particle->maxOccurs >= UNBOUNDED) {
12856 particle->minOccurs - 1, UNBOUNDED);
12975 int maxOccurs = particle->maxOccurs == UNBOUNDED ?
12976 UNBOUNDED : particle->maxOccurs - 1;
14694 if (cur == UNBOUNDED)
14695 return (UNBOUNDED);
14715 if (cur == UNBOUNDED)
14716 return (UNBOUNDED);
14717 if ((cur > 0) && (particle->maxOccurs == UNBOUNDED))
14718 return (UNBOUNDED);
16751 if ((bmax != UNBOUNDED) &&
26469 * "anyType" has an unbounded, lax "any" wildcard.