• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/

Lines Matching defs:part

5758  * @local: the resulting local part if found, the attribute value otherwise
5839 * @local: the resulting local part if found, the attribute value otherwise
5872 * @local: the resulting local part if found, the attribute value otherwise
8478 * Skip particle part if a global declaration.
8483 * The particle part ==================================================
8498 * The reference part =============================================
8568 * The declaration part ===============================================
11258 xmlSchemaParticlePtr part, last = NULL;
11261 part = (xmlSchemaParticlePtr) xmlSchemaParseElement(ctxt,
11268 if (part != NULL) {
11271 if (part->minOccurs > 1) {
11278 part->minOccurs = 1;
11280 if (part->maxOccurs > 1) {
11287 part->maxOccurs = 1;
11290 item->children = (xmlSchemaTreeItemPtr) part;
11292 last->next = (xmlSchemaTreeItemPtr) part;
11293 last = part;
11305 xmlSchemaTreeItemPtr part = NULL, last = NULL;
11314 part = (xmlSchemaTreeItemPtr)
11316 if (part && isElemRef)
11319 part =
11321 if (part != NULL)
11328 part && part->children)
11330 if ((xmlSchemaGetQNameRefName(part->children) ==
11332 (xmlSchemaGetQNameRefTargetNs(part->children) ==
11357 part = NULL;
11358 } else if (((WXS_PARTICLE(part))->minOccurs != 1) ||
11359 ((WXS_PARTICLE(part))->maxOccurs != 1))
11379 part = NULL;
11381 ctxt->redef->reference = WXS_BASIC_CAST part;
11386 part = (xmlSchemaTreeItemPtr)
11389 part = xmlSchemaParseModelGroup(ctxt, schema, child,
11392 part = xmlSchemaParseModelGroup(ctxt, schema, child,
11395 if (part != NULL) {
11397 item->children = part;
11399 last->next = part;
11400 last = part;
13172 * simple type. This handles part (1), part (2) is done in
14551 xmlSchemaParticlePtr part =
14554 if (part == NULL)
14556 while (part != NULL) {
14557 if ((part->children->type == XML_SCHEMA_TYPE_ELEMENT) ||
14558 (part->children->type == XML_SCHEMA_TYPE_ANY))
14559 cur = part->minOccurs;
14561 cur = xmlSchemaGetParticleTotalRangeMin(part);
14566 part = (xmlSchemaParticlePtr) part->next;
14572 xmlSchemaParticlePtr part =
14575 if (part == NULL)
14578 if ((part->children->type == XML_SCHEMA_TYPE_ELEMENT) ||
14579 (part->children->type == XML_SCHEMA_TYPE_ANY))
14580 sum += part->minOccurs;
14582 sum += xmlSchemaGetParticleTotalRangeMin(part);
14583 part = (xmlSchemaParticlePtr) part->next;
14584 } while (part != NULL);
14606 xmlSchemaParticlePtr part =
14609 for (; part != NULL; part = (xmlSchemaParticlePtr) part->next) {
14610 if (part->children == NULL)
14612 if ((part->children->type == XML_SCHEMA_TYPE_ELEMENT) ||
14613 (part->children->type == XML_SCHEMA_TYPE_ANY))
14614 cur = part->maxOccurs;
14616 cur = xmlSchemaGetParticleTotalRangeMax(part);
14627 xmlSchemaParticlePtr part =
14630 for (; part != NULL; part = (xmlSchemaParticlePtr) part->next) {
14631 if (part->children == NULL)
14633 if ((part->children->type == XML_SCHEMA_TYPE_ELEMENT) ||
14634 (part->children->type == XML_SCHEMA_TYPE_ANY))
14635 cur = part->maxOccurs;
14637 cur = xmlSchemaGetParticleTotalRangeMax(part);
14668 * SPEC (2) "Its {term} is a group and the minimum part of the
15012 * {max occurs}=1 which is part of a pair which constitutes
16927 /*part = WXS_TYPE_PARTICLE(type);
16965 xmlSchemaParticlePtr part;
16977 part = (xmlSchemaParticlePtr) r->children->children;
16979 if (xmlSchemaCheckCOSParticleRestrict(ctxt, part, b))
16981 part = (xmlSchemaParticlePtr) part->next;
16982 } while (part != NULL);
17019 /* xmlSchemaParticlePtr part; */