Lines Matching refs:facetLink

11741 	    xmlSchemaFacetLinkPtr facetLink, lastFacetLink = NULL;  in xmlSchemaParseRestriction()  local
11745 facetLink = (xmlSchemaFacetLinkPtr) in xmlSchemaParseRestriction()
11747 if (facetLink == NULL) { in xmlSchemaParseRestriction()
11749 xmlFree(facetLink); in xmlSchemaParseRestriction()
11752 facetLink->facet = facet; in xmlSchemaParseRestriction()
11753 facetLink->next = NULL; in xmlSchemaParseRestriction()
11755 type->facetSet = facetLink; in xmlSchemaParseRestriction()
11757 lastFacetLink->next = facetLink; in xmlSchemaParseRestriction()
11758 lastFacetLink = facetLink; in xmlSchemaParseRestriction()
24206 xmlSchemaFacetLinkPtr facetLink; in xmlSchemaValidateFacets() local
24252 for (facetLink = type->facetSet; facetLink != NULL; in xmlSchemaValidateFacets()
24253 facetLink = facetLink->next) { in xmlSchemaValidateFacets()
24258 switch (facetLink->facet->type) { in xmlSchemaValidateFacets()
24266 ret = xmlSchemaValidateLengthFacetWhtsp(facetLink->facet, in xmlSchemaValidateFacets()
24270 ret = xmlSchemaValidateFacetWhtsp(facetLink->facet, ws, in xmlSchemaValidateFacets()
24281 value, len, type, facetLink->facet, NULL, NULL, NULL); in xmlSchemaValidateFacets()
24297 for (facetLink = type->facetSet; facetLink != NULL; in xmlSchemaValidateFacets()
24298 facetLink = facetLink->next) { in xmlSchemaValidateFacets()
24300 switch (facetLink->facet->type) { in xmlSchemaValidateFacets()
24304 ret = xmlSchemaValidateListSimpleTypeFacet(facetLink->facet, in xmlSchemaValidateFacets()
24317 value, length, type, facetLink->facet, NULL, NULL, NULL); in xmlSchemaValidateFacets()
24387 for (facetLink = tmpType->facetSet; facetLink != NULL; in xmlSchemaValidateFacets()
24388 facetLink = facetLink->next) { in xmlSchemaValidateFacets()
24389 if (facetLink->facet->type != XML_SCHEMA_FACET_PATTERN) in xmlSchemaValidateFacets()
24396 ret = xmlRegexpExec(facetLink->facet->regexp, value); in xmlSchemaValidateFacets()
24407 facet = facetLink->facet; in xmlSchemaValidateFacets()