Lines Matching refs:fixed

805 	xmlAttrPtr fixed, value;  in schema_restriction_var_int()  local
812 fixed = get_attribute(val->properties, "fixed"); in schema_restriction_var_int()
813 (*valptr)->fixed = FALSE; in schema_restriction_var_int()
814 if (fixed != NULL) { in schema_restriction_var_int()
815 if (!strncmp((char*)fixed->children->content, "true", sizeof("true")) || in schema_restriction_var_int()
816 !strncmp((char*)fixed->children->content, "1", sizeof("1"))) in schema_restriction_var_int()
817 (*valptr)->fixed = TRUE; in schema_restriction_var_int()
832 xmlAttrPtr fixed, value; in schema_restriction_var_char() local
839 fixed = get_attribute(val->properties, "fixed"); in schema_restriction_var_char()
840 (*valptr)->fixed = FALSE; in schema_restriction_var_char()
841 if (fixed != NULL) { in schema_restriction_var_char()
842 if (!strncmp((char*)fixed->children->content, "true", sizeof("true")) || in schema_restriction_var_char()
843 !strncmp((char*)fixed->children->content, "1", sizeof("1"))) { in schema_restriction_var_char()
844 (*valptr)->fixed = TRUE; in schema_restriction_var_char()
1594 cur_type->fixed = estrdup((char*)attr->children->content); in schema_element()
1802 newAttr->fixed = estrdup((char*)attr->children->content); in schema_attribute()
2056 if ((*tmp)->fixed != NULL && attr->fixed == NULL) { in schema_attribute_fixup()
2057 attr->fixed = estrdup((*tmp)->fixed); in schema_attribute_fixup()
2109 if (newAttr->fixed) {newAttr->fixed = estrdup(newAttr->fixed);} in schema_attributegroup_fixup()
2202 if ((*tmp)->fixed) { in schema_type_fixup()
2203 type->fixed = estrdup((*tmp)->fixed); in schema_type_fixup()
2353 if (type->fixed) { in delete_type()
2354 efree(type->fixed); in delete_type()
2400 if (type->fixed) { in delete_type_persistent()
2401 free(type->fixed); in delete_type_persistent()
2468 if (attr->fixed) { in delete_attribute()
2469 efree(attr->fixed); in delete_attribute()
2494 if (attr->fixed) { in delete_attribute_persistent()
2495 free(attr->fixed); in delete_attribute_persistent()