Lines Matching defs:gs
1152 struct gstr *gs = (struct gstr*)data;
1158 if (gs->max_width) {
1160 const char *last_cr = strrchr(gs->s, '\n');
1167 last_cr = gs->s;
1169 last_line_length = strlen(gs->s) - (last_cr - gs->s);
1171 if ((last_line_length + extra_length) > gs->max_width)
1172 str_append(gs, "\\\n");
1175 str_append(gs, str);
1177 str_printf(gs, " [=%s]", sym_str);
1180 void expr_gstr_print(const struct expr *e, struct gstr *gs)
1182 expr_print(e, expr_print_gstr_helper, gs, E_NONE);
1209 void expr_gstr_print_revdep(struct expr *e, struct gstr *gs,
1212 expr_print_revdep(e, expr_print_gstr_helper, gs, pr_type, &title);