Lines Matching defs:nwordv
232 char **nwordv;
234 nwordv = NULL;
268 nwordv = wordvsplice(longpiptr ? 2 : 4, cur_wordc, cur_wordv+1);
269 nwordv[0] = strdup(currentfilename);
270 nwordv[1] = strdup(c_linenumber);
272 nwordv[2] = Strdup("pascal errortype"); /* XXX leaked */
273 nwordv[3] = cur_wordv[1];
274 nwordv[4] = strdup("%%%\n");
275 if (strlen(nwordv[5]) > (8-2)) /* this is the pointer */
276 nwordv[5] += (8-2); /* bump over 6 characters */
278 cur_wordv = nwordv - 1; /* convert to 1 based */
294 nwordv = wordvsplice(1, cur_wordc, cur_wordv + 1);
295 nwordv[0] = strdup(currentfilename);
296 nwordv[1] = cur_wordv[2];
297 nwordv[2] = cur_wordv[1];
300 cur_wordv = nwordv - 1;
340 if (nwordv != NULL) {
341 free(nwordv[0]);
342 free(nwordv);
344 nwordv = wordvsplice(2, undefined ? 2 : 3, cur_wordv+1);
345 nwordv[0] = strdup(currentfilename);
346 nwordv[1] = cur_wordv[wordindex];
348 erroradd(undefined ? 4 : 5, nwordv,
352 cur_wordv = nwordv - 1;
356 nwordv = wordvsplice(1+3, cur_wordc, cur_wordv+1);
357 nwordv[0] = strdup(currentfilename);
358 nwordv[1] = strdup(c_header[0]);
359 nwordv[2] = strdup(c_header[1]);
360 nwordv[3] = strdup(c_header[2]);
361 cur_wordv = nwordv - 1;
373 nwordv = wordvsplice(1, cur_wordc, cur_wordv+1);
374 nwordv[0] = strdup(currentfilename);
375 nwordv[1] = strdup(c_linenumber);
376 cur_wordv = nwordv - 1;
428 nwordv = wordvsplice(2, cur_wordc, cur_wordv+1);
429 nwordv[0] = strdup(currentfilename);
430 nwordv[1] = structured ? cur_wordv [5] : cur_wordv[cur_wordc];
432 cur_wordv = nwordv - 1;
435 erroradd(cur_wordc, nwordv, C_TRUE, C_UNKNOWN);
436 nwordv = wordvsplice(0, cur_wordc, nwordv);
437 nwordv[1] = cur_wordv[cur_wordc - 2];