Lines Matching refs:fixed

804 	xmlAttrPtr fixed, value;  in schema_restriction_var_int()  local
811 fixed = get_attribute(val->properties, "fixed"); in schema_restriction_var_int()
812 (*valptr)->fixed = FALSE; in schema_restriction_var_int()
813 if (fixed != NULL) { in schema_restriction_var_int()
814 if (!strncmp((char*)fixed->children->content, "true", sizeof("true")) || in schema_restriction_var_int()
815 !strncmp((char*)fixed->children->content, "1", sizeof("1"))) in schema_restriction_var_int()
816 (*valptr)->fixed = TRUE; in schema_restriction_var_int()
831 xmlAttrPtr fixed, value; in schema_restriction_var_char() local
838 fixed = get_attribute(val->properties, "fixed"); in schema_restriction_var_char()
839 (*valptr)->fixed = FALSE; in schema_restriction_var_char()
840 if (fixed != NULL) { in schema_restriction_var_char()
841 if (!strncmp((char*)fixed->children->content, "true", sizeof("true")) || in schema_restriction_var_char()
842 !strncmp((char*)fixed->children->content, "1", sizeof("1"))) { in schema_restriction_var_char()
843 (*valptr)->fixed = TRUE; in schema_restriction_var_char()
1609 cur_type->fixed = estrdup((char*)attr->children->content); in schema_element()
1824 newAttr->fixed = estrdup((char*)attr->children->content); in schema_attribute()
2099 if (tmp->fixed != NULL && attr->fixed == NULL) { in schema_attribute_fixup()
2100 attr->fixed = estrdup(tmp->fixed); in schema_attribute_fixup()
2150 if (newAttr->fixed) {newAttr->fixed = estrdup(newAttr->fixed);} in schema_attributegroup_fixup()
2238 if (tmp->fixed) { in schema_type_fixup()
2239 type->fixed = estrdup(tmp->fixed); in schema_type_fixup()
2379 if (type->fixed) { in delete_type()
2380 efree(type->fixed); in delete_type()
2428 if (type->fixed) { in delete_type_persistent()
2429 free(type->fixed); in delete_type_persistent()
2496 if (attr->fixed) { in delete_attribute()
2497 efree(attr->fixed); in delete_attribute()
2522 if (attr->fixed) { in delete_attribute_persistent()
2523 free(attr->fixed); in delete_attribute_persistent()