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()
1610 cur_type->fixed = estrdup((char*)attr->children->content); in schema_element()
1826 newAttr->fixed = estrdup((char*)attr->children->content); in schema_attribute()
2098 if ((*tmp)->fixed != NULL && attr->fixed == NULL) { in schema_attribute_fixup()
2099 attr->fixed = estrdup((*tmp)->fixed); in schema_attribute_fixup()
2152 if (newAttr->fixed) {newAttr->fixed = estrdup(newAttr->fixed);} in schema_attributegroup_fixup()
2246 if ((*tmp)->fixed) { in schema_type_fixup()
2247 type->fixed = estrdup((*tmp)->fixed); in schema_type_fixup()
2397 if (type->fixed) { in delete_type()
2398 efree(type->fixed); in delete_type()
2444 if (type->fixed) { in delete_type_persistent()
2445 free(type->fixed); in delete_type_persistent()
2512 if (attr->fixed) { in delete_attribute()
2513 efree(attr->fixed); in delete_attribute()
2538 if (attr->fixed) { in delete_attribute_persistent()
2539 free(attr->fixed); in delete_attribute_persistent()