Lines Matching defs:wild
6895 xmlSchemaWildcardPtr wild;
6934 wild = xmlSchemaAddWildcard(ctxt, schema, XML_SCHEMA_TYPE_ANY, node);
6935 if (wild == NULL)
6937 xmlSchemaParseWildcardNs(ctxt, schema, wild, node);
6966 particle->children = (xmlSchemaTreeItemPtr) wild;
12755 xmlSchemaWildcardPtr wild;
12758 wild = (xmlSchemaWildcardPtr) particle->children;
12764 if (wild->any == 1) {
12772 start, NULL, BAD_CAST "*", BAD_CAST "*", wild);
12779 start, NULL, BAD_CAST "*", NULL, wild);
12782 } else if (wild->nsSet != NULL) {
12783 ns = wild->nsSet;
12787 pctxt->state, NULL, BAD_CAST "*", ns->value, wild);
12792 } else if (wild->negNsSet != NULL) {
12794 start, end, BAD_CAST "*", wild->negNsSet->value,
12795 wild);
12808 if (wild->any == 1) {
12811 start, NULL, BAD_CAST "*", BAD_CAST "*", wild);
12815 start, NULL, BAD_CAST "*", NULL, wild);
12817 } else if (wild->nsSet != NULL) {
12818 ns = wild->nsSet;
12822 start, NULL, BAD_CAST "*", ns->value, wild);
12827 } else if (wild->negNsSet != NULL) {
12829 start, hop, BAD_CAST "*", wild->negNsSet->value,
12830 wild);
14056 * @wild: the wildcard
14066 xmlSchemaCheckCVCWildcardNamespace(xmlSchemaWildcardPtr wild,
14069 if (wild == NULL)
14072 if (wild->any)
14074 else if (wild->nsSet != NULL) {
14077 cur = wild->nsSet;
14083 } else if ((wild->negNsSet != NULL) && (ns != NULL) &&
14084 (!xmlStrEqual(wild->negNsSet->value, ns)))
14114 xmlSchemaWildcardPtr wild,
14319 if (wild != NULL) {
14342 xmlSchemaCheckCOSNSSubset(wild, baseWild))
14371 (wild->processContents < baseWild->processContents)) {
25191 * IDCs. I.e. not "lax" (without declaration) and "skip" wild attributes.
25383 * (5) "Let [Definition:] the wild IDs be the set of
25399 * item in ?wild IDs?."
25410 * (5.2) "If ?wild IDs? is non-empty, there must not
25610 * the attribute was a wild attribute.
25802 xmlSchemaWildcardPtr wild = (xmlSchemaWildcardPtr) vctxt->inode->decl;
25807 if ((skip == NULL) || (wild == NULL) ||
25808 (wild->type != XML_SCHEMA_TYPE_ANY)) {
25814 if (wild->processContents == XML_SCHEMAS_ANY_SKIP) {
25832 if (wild->processContents == XML_SCHEMAS_ANY_STRICT) {
25834 VERROR(XML_SCHEMAV_CVC_ELT_1, NULL, /* WXS_BASIC_CAST wild */