Lines Matching defs:save
45 * Cut out one XLFD field, placing it in 'save' and return
46 * the start of 'save'
49 XftSplitStr (const char *field, char *save)
51 char *s = save;
59 *save++ = c;
61 *save = 0;
92 char *save;
125 save = (char *) malloc (strlen (foundry) + 1);
127 if (!save) {
134 XftSplitStr (foundry, save);
135 if (save[0] && strcmp (save, "*") != 0)
136 if (!FcPatternAddString (pat, FC_FOUNDRY, (FcChar8 *) save)) goto bail;
138 XftSplitStr (family, save);
139 if (save[0] && strcmp (save, "*") != 0)
140 if (!FcPatternAddString (pat, FC_FAMILY, (FcChar8 *) save)) goto bail;
143 XftSplitStr (weight_name, save),
149 XftSplitStr (slant, save),
168 free (save);
172 free (save);