Lines Matching refs:fixed
827 xmlAttrPtr fixed, value; in schema_restriction_var_int() local
834 fixed = get_attribute(val->properties, "fixed"); in schema_restriction_var_int()
835 (*valptr)->fixed = FALSE; in schema_restriction_var_int()
836 if (fixed != NULL) { in schema_restriction_var_int()
837 if (!strncmp((char*)fixed->children->content, "true", sizeof("true")) || in schema_restriction_var_int()
838 !strncmp((char*)fixed->children->content, "1", sizeof("1"))) in schema_restriction_var_int()
839 (*valptr)->fixed = TRUE; in schema_restriction_var_int()
854 xmlAttrPtr fixed, value; in schema_restriction_var_char() local
861 fixed = get_attribute(val->properties, "fixed"); in schema_restriction_var_char()
862 (*valptr)->fixed = FALSE; in schema_restriction_var_char()
863 if (fixed != NULL) { in schema_restriction_var_char()
864 if (!strncmp((char*)fixed->children->content, "true", sizeof("true")) || in schema_restriction_var_char()
865 !strncmp((char*)fixed->children->content, "1", sizeof("1"))) { in schema_restriction_var_char()
866 (*valptr)->fixed = TRUE; in schema_restriction_var_char()
1635 cur_type->fixed = estrdup((char*)attr->children->content); in schema_element()
1850 newAttr->fixed = estrdup((char*)attr->children->content); in schema_attribute()
2125 if (tmp->fixed != NULL && attr->fixed == NULL) { in schema_attribute_fixup()
2126 attr->fixed = estrdup(tmp->fixed); in schema_attribute_fixup()
2176 if (newAttr->fixed) {newAttr->fixed = estrdup(newAttr->fixed);} in schema_attributegroup_fixup()
2265 if (tmp->fixed) { in schema_type_fixup()
2266 type->fixed = estrdup(tmp->fixed); in schema_type_fixup()
2412 if (type->fixed) { in delete_type()
2413 efree(type->fixed); in delete_type()
2461 if (type->fixed) { in delete_type_persistent()
2462 free(type->fixed); in delete_type_persistent()
2529 if (attr->fixed) { in delete_attribute()
2530 efree(attr->fixed); in delete_attribute()
2555 if (attr->fixed) { in delete_attribute_persistent()
2556 free(attr->fixed); in delete_attribute_persistent()