Searched refs:process_text (Results 1 – 4 of 4) sorted by relevance
/netbsd-src/external/bsd/flex/dist/tests/ |
H A D | pthread.l | 45 static int process_text(char* s, yyscan_t scanner); 64 <INITIAL>[[:digit:]]+ { BEGIN(STATE_1); process_text(yytext,yyscanner); return NUMBER; } 65 <INITIAL>[[:alpha:]]+ { BEGIN(STATE_2); process_text(yytext,yyscanner); return WORD; } 67 <STATE_1>[[:alpha:]]+ { BEGIN(0); process_text(yytext,yyscanner); return WORD; } 68 <STATE_1>[[:digit:]]+ { BEGIN(0); process_text(yytext,yyscanner); return NUMBER; } 70 <STATE_2>[[:alpha:]]+ { BEGIN(0); process_text(yytext,yyscanner); return WORD; } 71 <STATE_2>[[:digit:]]+ { BEGIN(0); process_text(yytext,yyscanner); return NUMBER; } 73 <INITIAL,STATE_1,STATE_2>" "|\t|\r|\n { process_text(yytext,yyscanner); } 85 static int process_text(char* s, yyscan_t scanner) in process_text() function
|
H A D | bison_yylval_parser.y | 43 static int process_text(char* s) { in process_text() function 70 TEXT { process_text($1); free($1);} 72 | html TEXT { process_text($2); free($2);} 76 starttag: LT TAGNAME GT { process_text($2); free($2);} ; 77 endtag: LTSLASH TAGNAME GT { process_text($2);free($2);} ;
|
H A D | bison_nr_parser.y | 44 static int process_text(char* s) { in process_text() function 77 process_text($4); 78 process_text($6);
|
H A D | bison_yylloc_parser.y | 45 static int process_text(char* s) { in process_text() function 78 process_text($4); 79 process_text($6);
|