• Home
  • Raw
  • Download

Lines Matching refs:maxOccurs

677     int maxOccurs;  member
4262 if ((elem->minOccurs != 1) || (elem->maxOccurs != 1)) { in xmlSchemaElementDump()
4264 if (elem->maxOccurs >= UNBOUNDED) in xmlSchemaElementDump()
4266 else if (elem->maxOccurs != 1) in xmlSchemaElementDump()
4267 fprintf(output, "max: %d\n", elem->maxOccurs); in xmlSchemaElementDump()
4401 if (particle->maxOccurs >= UNBOUNDED) in xmlSchemaContentModelDump()
4403 else if (particle->maxOccurs != 1) in xmlSchemaContentModelDump()
4404 fprintf(output, " max: %d", particle->maxOccurs); in xmlSchemaContentModelDump()
5601 ret->maxOccurs = max; in xmlSchemaAddParticle()
6924 int maxOccurs) { in xmlSchemaPCheckParticleCorrect_2() argument
6926 if ((maxOccurs == 0) && ( minOccurs == 0)) in xmlSchemaPCheckParticleCorrect_2()
6928 if (maxOccurs != UNBOUNDED) { in xmlSchemaPCheckParticleCorrect_2()
6938 if (maxOccurs < 1) { in xmlSchemaPCheckParticleCorrect_2()
6948 } else if (minOccurs > maxOccurs) { in xmlSchemaPCheckParticleCorrect_2()
11406 if (part->maxOccurs > 1) { in xmlSchemaParseModelGroup()
11413 part->maxOccurs = 1; in xmlSchemaParseModelGroup()
11485 ((WXS_PARTICLE(part))->maxOccurs != 1)) in xmlSchemaParseModelGroup()
12682 } else if (particle->maxOccurs == 1) { in xmlSchemaBuildContentModelForSubstGroup()
12714 int maxOccurs = particle->maxOccurs == UNBOUNDED ? in xmlSchemaBuildContentModelForSubstGroup() local
12715 UNBOUNDED : particle->maxOccurs - 1; in xmlSchemaBuildContentModelForSubstGroup()
12720 maxOccurs); in xmlSchemaBuildContentModelForSubstGroup()
12775 if (particle->maxOccurs == 1) { in xmlSchemaBuildContentModelForElement()
12779 } else if ((particle->maxOccurs >= UNBOUNDED) && in xmlSchemaBuildContentModelForElement()
12789 int maxOccurs = particle->maxOccurs == UNBOUNDED ? in xmlSchemaBuildContentModelForElement() local
12790 UNBOUNDED : particle->maxOccurs - 1; in xmlSchemaBuildContentModelForElement()
12795 counter = xmlAutomataNewCounter(ctxt->am, minOccurs, maxOccurs); in xmlSchemaBuildContentModelForElement()
12849 if (particle->maxOccurs == 1) { in xmlSchemaBuildAContentModel()
12886 int maxOccurs = in xmlSchemaBuildAContentModel() local
12887 particle->maxOccurs == UNBOUNDED ? UNBOUNDED : in xmlSchemaBuildAContentModel()
12888 particle->maxOccurs - 1; in xmlSchemaBuildAContentModel()
12892 counter = xmlAutomataNewCounter(pctxt->am, minOccurs, maxOccurs); in xmlSchemaBuildAContentModel()
12939 if ((particle->minOccurs == 1) && (particle->maxOccurs == 1)) { in xmlSchemaBuildAContentModel()
12951 if (particle->maxOccurs >= UNBOUNDED) { in xmlSchemaBuildAContentModel()
13007 } else if ((particle->maxOccurs > 1) in xmlSchemaBuildAContentModel()
13018 particle->maxOccurs - 1); in xmlSchemaBuildAContentModel()
13076 if (particle->maxOccurs == 1) { in xmlSchemaBuildAContentModel()
13089 int maxOccurs = particle->maxOccurs == UNBOUNDED ? in xmlSchemaBuildAContentModel() local
13090 UNBOUNDED : particle->maxOccurs - 1; in xmlSchemaBuildAContentModel()
13099 xmlAutomataNewCounter(pctxt->am, minOccurs, maxOccurs); in xmlSchemaBuildAContentModel()
13166 sub->minOccurs, sub->maxOccurs); in xmlSchemaBuildAContentModel()
13171 (sub->maxOccurs == 1)) { in xmlSchemaBuildAContentModel()
13178 (sub->maxOccurs == 1)) { in xmlSchemaBuildAContentModel()
14805 cur = part->maxOccurs;
14814 return (particle->maxOccurs * max);
14826 cur = part->maxOccurs;
14831 if ((cur > 0) && (particle->maxOccurs == UNBOUNDED))
14836 return (particle->maxOccurs * sum);
15247 if ((WXS_TYPE_PARTICLE(typeDef))->maxOccurs != 1) { in xmlSchemaResolveTypeReferences()
16951 if (xmlSchemaCheckParticleRangeOK(r->minOccurs, r->maxOccurs, in xmlSchemaCheckRCaseNameAndTypeOK()
16952 b->minOccurs, b->maxOccurs) != 0) in xmlSchemaCheckRCaseNameAndTypeOK()
17055 if (xmlSchemaCheckParticleRangeOK(r->minOccurs, r->maxOccurs, in xmlSchemaCheckRCaseNSCompat()
17056 b->minOccurs, b->maxOccurs) != 0) in xmlSchemaCheckRCaseNSCompat()
17115 if (xmlSchemaCheckParticleRangeOK(r->minOccurs, r->maxOccurs, in xmlSchemaCheckRCaseNSSubset()
17116 b->minOccurs, b->maxOccurs)) in xmlSchemaCheckRCaseNSSubset()
17226 b->minOccurs, b->maxOccurs) != 0)
17267 if (xmlSchemaCheckParticleRangeOK(r->minOccurs, r->maxOccurs, in xmlSchemaCheckRCaseRecurse()
17268 b->minOccurs, b->maxOccurs)) in xmlSchemaCheckRCaseRecurse()
18634 ((xmlSchemaParticlePtr) baseType->subtypes)->maxOccurs); in xmlSchemaFixupComplexType()