Home | History | Annotate | Download | only in libxml2

Lines Matching full:wild

6876     xmlSchemaWildcardPtr wild;
6915 wild = xmlSchemaAddWildcard(ctxt, schema, XML_SCHEMA_TYPE_ANY, node);
6916 if (wild == NULL)
6918 xmlSchemaParseWildcardNs(ctxt, schema, wild, node);
6947 particle->children = (xmlSchemaTreeItemPtr) wild;
12701 xmlSchemaWildcardPtr wild;
12704 wild = (xmlSchemaWildcardPtr) particle->children;
12710 if (wild->any == 1) {
12718 start, NULL, BAD_CAST "*", BAD_CAST "*", wild);
12725 start, NULL, BAD_CAST "*", NULL, wild);
12728 } else if (wild->nsSet != NULL) {
12729 ns = wild->nsSet;
12733 pctxt->state, NULL, BAD_CAST "*", ns->value, wild);
12738 } else if (wild->negNsSet != NULL) {
12740 start, end, BAD_CAST "*", wild->negNsSet->value,
12741 wild);
12753 if (wild->any == 1) {
12756 start, NULL, BAD_CAST "*", BAD_CAST "*", wild);
12760 start, NULL, BAD_CAST "*", NULL, wild);
12762 } else if (wild->nsSet != NULL) {
12763 ns = wild->nsSet;
12767 start, NULL, BAD_CAST "*", ns->value, wild);
12772 } else if (wild->negNsSet != NULL) {
12774 start, hop, BAD_CAST "*", wild->negNsSet->value,
12775 wild);
13960 * @wild: the wildcard
13970 xmlSchemaCheckCVCWildcardNamespace(xmlSchemaWildcardPtr wild,
13973 if (wild == NULL)
13976 if (wild->any)
13978 else if (wild->nsSet != NULL) {
13981 cur = wild->nsSet;
13987 } else if ((wild->negNsSet != NULL) && (ns != NULL) &&
13988 (!xmlStrEqual(wild->negNsSet->value, ns)))
14018 xmlSchemaWildcardPtr wild,
14223 if (wild != NULL) {
14246 xmlSchemaCheckCOSNSSubset(wild, baseWild))
14275 (wild->processContents < baseWild->processContents)) {
25091 * IDCs. I.e. not "lax" (without declaration) and "skip" wild attributes.
25284 * (5) "Let [Definition:] the wild IDs be the set of
25300 * item in ?wild IDs?."
25311 * (5.2) "If ?wild IDs? is non-empty, there must not
25509 * the attribute was a wild attribute.
25701 xmlSchemaWildcardPtr wild = (xmlSchemaWildcardPtr) vctxt->inode->decl;
25706 if ((skip == NULL) || (wild == NULL) ||
25707 (wild->type != XML_SCHEMA_TYPE_ANY)) {
25713 if (wild->processContents == XML_SCHEMAS_ANY_SKIP) {
25731 if (wild->processContents == XML_SCHEMAS_ANY_STRICT) {
25733 VERROR(XML_SCHEMAV_CVC_ELT_1, NULL, /* WXS_BASIC_CAST wild */