• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libxml2-2.7.2/

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 ===============================================
11266 xmlSchemaParticlePtr part, last = NULL;
11269 part = (xmlSchemaParticlePtr) xmlSchemaParseElement(ctxt,
11276 if (part != NULL) {
11279 if (part->minOccurs > 1) {
11286 part->minOccurs = 1;
11288 if (part->maxOccurs > 1) {
11295 part->maxOccurs = 1;
11298 item->children = (xmlSchemaTreeItemPtr) part;
11300 last->next = (xmlSchemaTreeItemPtr) part;
11301 last = part;
11313 xmlSchemaTreeItemPtr part = NULL, last = NULL;
11322 part = (xmlSchemaTreeItemPtr)
11324 if (part && isElemRef)
11327 part =
11329 if (part != NULL)
11336 part && part->children)
11338 if ((xmlSchemaGetQNameRefName(part->children) ==
11340 (xmlSchemaGetQNameRefTargetNs(part->children) ==
11365 part = NULL;
11366 } else if (((WXS_PARTICLE(part))->minOccurs != 1) ||
11367 ((WXS_PARTICLE(part))->maxOccurs != 1))
11387 part = NULL;
11389 ctxt->redef->reference = WXS_BASIC_CAST part;
11394 part = (xmlSchemaTreeItemPtr)
11397 part = xmlSchemaParseModelGroup(ctxt, schema, child,
11400 part = xmlSchemaParseModelGroup(ctxt, schema, child,
11403 if (part != NULL) {
11405 item->children = part;
11407 last->next = part;
11408 last = part;
13180 * simple type. This handles part (1), part (2) is done in
14559 xmlSchemaParticlePtr part =
14562 if (part == NULL)
14564 while (part != NULL) {
14565 if ((part->children->type == XML_SCHEMA_TYPE_ELEMENT) ||
14566 (part->children->type == XML_SCHEMA_TYPE_ANY))
14567 cur = part->minOccurs;
14569 cur = xmlSchemaGetParticleTotalRangeMin(part);
14574 part = (xmlSchemaParticlePtr) part->next;
14580 xmlSchemaParticlePtr part =
14583 if (part == NULL)
14586 if ((part->children->type == XML_SCHEMA_TYPE_ELEMENT) ||
14587 (part->children->type == XML_SCHEMA_TYPE_ANY))
14588 sum += part->minOccurs;
14590 sum += xmlSchemaGetParticleTotalRangeMin(part);
14591 part = (xmlSchemaParticlePtr) part->next;
14592 } while (part != NULL);
14615 xmlSchemaParticlePtr part =
14618 for (; part != NULL; part = (xmlSchemaParticlePtr) part->next) {
14619 if (part->children == NULL)
14621 if ((part->children->type == XML_SCHEMA_TYPE_ELEMENT) ||
14622 (part->children->type == XML_SCHEMA_TYPE_ANY))
14623 cur = part->maxOccurs;
14625 cur = xmlSchemaGetParticleTotalRangeMax(part);
14636 xmlSchemaParticlePtr part =
14639 for (; part != NULL; part = (xmlSchemaParticlePtr) part->next) {
14640 if (part->children == NULL)
14642 if ((part->children->type == XML_SCHEMA_TYPE_ELEMENT) ||
14643 (part->children->type == XML_SCHEMA_TYPE_ANY))
14644 cur = part->maxOccurs;
14646 cur = xmlSchemaGetParticleTotalRangeMax(part);
14678 * SPEC (2) "Its {term} is a group and the minimum part of the
15022 * {max occurs}=1 which is part of a pair which constitutes
16937 /*part = WXS_TYPE_PARTICLE(type);
16976 xmlSchemaParticlePtr part;
16988 part = (xmlSchemaParticlePtr) r->children->children;
16990 if (xmlSchemaCheckCOSParticleRestrict(ctxt, part, b))
16992 part = (xmlSchemaParticlePtr) part->next;
16993 } while (part != NULL);
17031 /* xmlSchemaParticlePtr part; */