Lines Matching refs:fixed

825 	xmlAttrPtr fixed, value;  in schema_restriction_var_int()  local
832 fixed = get_attribute(val->properties, "fixed"); in schema_restriction_var_int()
833 (*valptr)->fixed = FALSE; in schema_restriction_var_int()
834 if (fixed != NULL) { in schema_restriction_var_int()
835 if (!strncmp((char*)fixed->children->content, "true", sizeof("true")) || in schema_restriction_var_int()
836 !strncmp((char*)fixed->children->content, "1", sizeof("1"))) in schema_restriction_var_int()
837 (*valptr)->fixed = TRUE; in schema_restriction_var_int()
852 xmlAttrPtr fixed, value; in schema_restriction_var_char() local
859 fixed = get_attribute(val->properties, "fixed"); in schema_restriction_var_char()
860 (*valptr)->fixed = FALSE; in schema_restriction_var_char()
861 if (fixed != NULL) { in schema_restriction_var_char()
862 if (!strncmp((char*)fixed->children->content, "true", sizeof("true")) || in schema_restriction_var_char()
863 !strncmp((char*)fixed->children->content, "1", sizeof("1"))) { in schema_restriction_var_char()
864 (*valptr)->fixed = TRUE; in schema_restriction_var_char()
1630 cur_type->fixed = estrdup((char*)attr->children->content); in schema_element()
1845 newAttr->fixed = estrdup((char*)attr->children->content); in schema_attribute()
2120 if (tmp->fixed != NULL && attr->fixed == NULL) { in schema_attribute_fixup()
2121 attr->fixed = estrdup(tmp->fixed); in schema_attribute_fixup()
2171 if (newAttr->fixed) {newAttr->fixed = estrdup(newAttr->fixed);} in schema_attributegroup_fixup()
2260 if (tmp->fixed) { in schema_type_fixup()
2261 type->fixed = estrdup(tmp->fixed); in schema_type_fixup()
2407 if (type->fixed) { in delete_type()
2408 efree(type->fixed); in delete_type()
2456 if (type->fixed) { in delete_type_persistent()
2457 free(type->fixed); in delete_type_persistent()
2524 if (attr->fixed) { in delete_attribute()
2525 efree(attr->fixed); in delete_attribute()
2550 if (attr->fixed) { in delete_attribute_persistent()
2551 free(attr->fixed); in delete_attribute_persistent()