Lines Matching refs:yytext
55 #define notpp() (ppdefine == NO && (*yytext != '#' || yytext[1] == '#'))
129 (void) strcat(yytext, " /* ");
130 first = strlen(yytext);
132 (void) strcat(yytext, "yylex");
142 (void) strcat(yytext, "yyparse");
144 last = strlen(yytext);
145 (void) strcat(yytext, " */");
146 yyleng = strlen(yytext);
362 yytext[0] = '\7';
366 while (isalnum(yytext[first]) || yytext[first] == '_') {
387 cesudeftoken = *(yytext + first);
464 while (!isalnum(yytext[first]) &&
465 yytext[first] != '_') {
483 char c, *s = yytext + first - 1;
485 while (--s >= yytext && (c = *s) != ';' &&
545 yytext[yyleng] = '\0';
564 if ((p = lookup(yytext + first)) != NULL) {
698 s = strpbrk(yytext, "\"<");
700 first = s - yytext;
704 yytext[0] = '\1';
715 yytext[yyleng] = '"';
716 yytext[++yyleng] = '\0';
864 while ((c = yytext[yyleng++] = noncommentinput()) != terminator) {
867 if ((yytext[yyleng++] = noncommentinput()) == '\n') {
886 yytext[--yyleng] = '\0';
895 yytext[yyleng - 1] = ' ';
913 yytext[yyleng] = '\0';
958 if (isupper(yytext[first]) && strcmp(yytext, "SET_SIZE") != 0)
968 if (identcmp(yytext, "ENTRY") ||
969 identcmp(yytext, "ENTRY2") ||
970 identcmp(yytext, "ENTRY_NP") ||
971 identcmp(yytext, "ENTRY_NP2") ||
972 identcmp(yytext, "RTENTRY") ||
973 identcmp(yytext, "ALTENTRY")) {
981 if (identcmp(yytext, "SET_SIZE")) {
989 if (first != 0 && identcmp(yytext, "call")) {