Lines Matching refs:old_shapes
1150 struct callshapes *old_shapes = (struct callshapes *) old_value; in insert_keyword_callshape() local
1155 for (i = 0; i < old_shapes->nshapes; i++) in insert_keyword_callshape()
1156 if (old_shapes->shapes[i].argnum1 == shape->argnum1 in insert_keyword_callshape()
1157 && old_shapes->shapes[i].argnum2 == shape->argnum2 in insert_keyword_callshape()
1158 && old_shapes->shapes[i].argnumc == shape->argnumc in insert_keyword_callshape()
1159 && old_shapes->shapes[i].argnum1_glib_context in insert_keyword_callshape()
1161 && old_shapes->shapes[i].argnum2_glib_context in insert_keyword_callshape()
1163 && old_shapes->shapes[i].argtotal == shape->argtotal) in insert_keyword_callshape()
1165 old_shapes->shapes[i].xcomments = shape->xcomments; in insert_keyword_callshape()
1176 + old_shapes->nshapes * sizeof (struct callshape)); in insert_keyword_callshape()
1178 shapes->keyword = old_shapes->keyword; in insert_keyword_callshape()
1179 shapes->keyword_len = old_shapes->keyword_len; in insert_keyword_callshape()
1180 shapes->nshapes = old_shapes->nshapes + 1; in insert_keyword_callshape()
1181 for (i = 0; i < old_shapes->nshapes; i++) in insert_keyword_callshape()
1182 shapes->shapes[i] = old_shapes->shapes[i]; in insert_keyword_callshape()
1186 free (old_shapes); in insert_keyword_callshape()