Home | History | Annotate | Download | only in libxml2

Lines Matching refs:UNBOUNDED

109 #define UNBOUNDED (1 << 30)
4196 if (elem->maxOccurs >= UNBOUNDED)
4197 fprintf(output, "max: unbounded\n");
4333 if (particle->maxOccurs >= UNBOUNDED)
4334 fprintf(output, " max: unbounded");
6027 if (xmlStrEqual(val, (const xmlChar *) "unbounded")) {
6028 if (max != UNBOUNDED) {
6036 return (UNBOUNDED); /* encoding it with -1 might be another option */
6843 if (maxOccurs != UNBOUNDED) {
6928 max = xmlGetMaxOccurs(ctxt, node, 0, UNBOUNDED, 1,
6929 "(xs:nonNegativeInteger | unbounded)");
8507 max = xmlGetMaxOccurs(ctxt, node, 0, UNBOUNDED, 1, "(xs:nonNegativeInteger | unbounded)");
9373 max = xmlGetMaxOccurs(ctxt, node, 0, UNBOUNDED, 1,
9374 "(xs:nonNegativeInteger | unbounded)");
11239 max = xmlGetMaxOccurs(ctxt, node, 0, UNBOUNDED, 1,
11240 "(xs:nonNegativeInteger | unbounded)");
12630 int maxOccurs = particle->maxOccurs == UNBOUNDED ?
12631 UNBOUNDED : particle->maxOccurs - 1;
12695 } else if ((particle->maxOccurs >= UNBOUNDED) &&
12705 int maxOccurs = particle->maxOccurs == UNBOUNDED ?
12706 UNBOUNDED : particle->maxOccurs - 1;
12803 particle->maxOccurs == UNBOUNDED ? UNBOUNDED :
12867 if (particle->maxOccurs >= UNBOUNDED) {
12877 particle->minOccurs - 1, UNBOUNDED);
13005 int maxOccurs = particle->maxOccurs == UNBOUNDED ?
13006 UNBOUNDED : particle->maxOccurs - 1;
14724 if (cur == UNBOUNDED)
14725 return (UNBOUNDED);
14745 if (cur == UNBOUNDED)
14746 return (UNBOUNDED);
14747 if ((cur > 0) && (particle->maxOccurs == UNBOUNDED))
14748 return (UNBOUNDED);
16781 if ((bmax != UNBOUNDED) &&
26516 * "anyType" has an unbounded, lax "any" wildcard.