Lines Matching refs:first
63 int first; /* buffer index for first char of symbol */
130 first = strlen(yytext);
152 last = first;
185 last = first;
278 last = first;
287 last = first;
365 first = yyleng - 1;
366 while (isalnum(yytext[first]) || yytext[first] == '_') {
367 --first;
369 ++first;
387 cesudeftoken = *(yytext + first);
464 while (!isalnum(yytext[first]) &&
465 yytext[first] != '_') {
466 ++first;
483 char c, *s = yytext + first - 1;
542 if (yyleng - first > PATLEN) {
544 yyleng = first + PATLEN;
564 if ((p = lookup(yytext + first)) != NULL) {
565 first = yyleng;
637 last = first;
642 * skip the first 8 columns of a breakpoint listing
674 first = 0;
700 first = s - yytext;
740 more: first = yyleng;
754 first = 0; /* buffer index for first char of symbol */
958 if (isupper(yytext[first]) && strcmp(yytext, "SET_SIZE") != 0)
989 if (first != 0 && identcmp(yytext, "call")) {
991 * Make this a function call. We exclude first == 0,