Searched refs:nmstr (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/flex/src/ |
H A D | scan.l | 78 strncpy( nmstr, yytext, sizeof(nmstr) ); \ 211 strncpy( nmstr, yytext, sizeof(nmstr) ); 464 strncpy( nmstr, yytext + 1, sizeof(nmstr) ); 471 nmstr[strlen( nmstr ) - 1] = '\0'; 641 strncpy( nmstr, yytext, sizeof(nmstr) ); 657 && (cclval = ccllookup( nmstr )) != 0 ) 671 cclinstal( nmstr, lastccl + 1 ); 699 strncpy( nmstr, yytext + 1, sizeof(nmstr) ); 706 nmstr[yyleng - 2 - end_is_ws] = '\0'; /* chop trailing brace */ 708 if ( (nmdefptr = ndlookup( nmstr )) == NULL ) [all …]
|
H A D | parse.y | 178 { scinstal( nmstr, xcluflg ); } 181 { scinstal( nmstr, xcluflg ); } 196 outfilename = xstrdup(nmstr); 200 { extra_type = xstrdup(nmstr); } 202 { prefix = xstrdup(nmstr); 206 { yyclass = xstrdup(nmstr); } 208 { headerfilename = xstrdup(nmstr); } 210 { tablesext = true; tablesfilename = xstrdup(nmstr); } 358 if ( (scnum = sclookup( nmstr )) == 0 ) 361 nmstr );
|
H A D | yylex.c | 126 fprintf (stderr, "'%s'", nmstr); in yylex()
|
H A D | flexdef.h | 631 extern char nmstr[MAXLINE];
|
H A D | main.c | 98 char nmstr[MAXLINE]; variable
|
/freebsd/usr.bin/lex/ |
H A D | initscan.c | 1924 strncpy( nmstr, yytext, sizeof(nmstr) ); \ 2401 strncpy( nmstr, yytext, sizeof(nmstr) ); 2643 format_synerr( _("Definition value for {%s} too long\n"), nmstr); 2654 ndinstal( nmstr, nmdef ); 3081 strncpy( nmstr, yytext + 1, sizeof(nmstr) ); 3088 nmstr[strlen( nmstr ) - 1] = '\0'; 3352 strncpy( nmstr, yytext, sizeof(nmstr) ); 3368 && (cclval = ccllookup( nmstr )) != 0 ) 3382 cclinstal( nmstr, lastccl + 1 ); 3421 strncpy( nmstr, yytext + 1, sizeof(nmstr) ); [all …]
|
H A D | initparse.c | 918 { scinstal( nmstr, xcluflg ); } in YYPARSE_DECL() 922 { scinstal( nmstr, xcluflg ); } in YYPARSE_DECL() 931 outfilename = xstrdup(nmstr); in YYPARSE_DECL() 937 { extra_type = xstrdup(nmstr); } in YYPARSE_DECL() 941 { prefix = xstrdup(nmstr); in YYPARSE_DECL() 947 { yyclass = xstrdup(nmstr); } in YYPARSE_DECL() 951 { headerfilename = xstrdup(nmstr); } in YYPARSE_DECL() 955 { tablesext = true; tablesfilename = xstrdup(nmstr); } in YYPARSE_DECL() 1105 if ( (scnum = sclookup( nmstr )) == 0 ) in YYPARSE_DECL() 1108 nmstr ); in YYPARSE_DECL()
|