• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/

Lines Matching defs:shapes

1167       struct callshapes *shapes = XMALLOC (struct callshapes);
1168 shapes->nshapes = 1;
1169 shapes->shapes[0] = *shape;
1171 (const char *) hash_insert_entry (table, keyword, keyword_len, shapes);
1174 shapes->keyword = keyword;
1175 shapes->keyword_len = keyword_len;
1187 if (old_shapes->shapes[i].argnum1 == shape->argnum1
1188 && old_shapes->shapes[i].argnum2 == shape->argnum2
1189 && old_shapes->shapes[i].argnumc == shape->argnumc
1190 && old_shapes->shapes[i].argnum1_glib_context
1192 && old_shapes->shapes[i].argnum2_glib_context
1194 && old_shapes->shapes[i].argtotal == shape->argtotal)
1196 old_shapes->shapes[i].xcomments = shape->xcomments;
1204 struct callshapes *shapes =
1210 shapes->keyword = old_shapes->keyword;
1211 shapes->keyword_len = old_shapes->keyword_len;
1212 shapes->nshapes = old_shapes->nshapes + 1;
1214 shapes->shapes[i] = old_shapes->shapes[i];
1215 shapes->shapes[i] = *shape;
1216 if (hash_set_value (table, keyword, keyword_len, shapes))
2356 arglist_parser_alloc (message_list_ty *mlp, const struct callshapes *shapes)
2358 if (shapes == NULL || shapes->nshapes == 0)
2376 xtimes (shapes->nshapes - 1,
2381 ap->keyword = shapes->keyword;
2382 ap->keyword_len = shapes->keyword_len;
2383 ap->nalternatives = shapes->nshapes;
2384 for (i = 0; i < shapes->nshapes; i++)
2386 ap->alternative[i].argnumc = shapes->shapes[i].argnumc;
2387 ap->alternative[i].argnum1 = shapes->shapes[i].argnum1;
2388 ap->alternative[i].argnum2 = shapes->shapes[i].argnum2;
2390 shapes->shapes[i].argnum1_glib_context;
2392 shapes->shapes[i].argnum2_glib_context;
2393 ap->alternative[i].argtotal = shapes->shapes[i].argtotal;
2394 ap->alternative[i].xcomments = shapes->shapes[i].xcomments;