Lines Matching refs:scanner
45 static int process_text(char* s, yyscan_t scanner);
81 int testwrap( yyscan_t scanner) {
82 (void)scanner;
85 static int process_text(char* s, yyscan_t scanner) in process_text() argument
87 (void)scanner; in process_text()
88 return (int)(*s) + (int) *(s + testget_leng(scanner)-1); in process_text()
130 yyscan_t scanner; in thread_func() local
139 testlex_init( &scanner ); in thread_func()
145 testset_in(fp,scanner); in thread_func()
147 while( testlex( scanner) != 0) in thread_func()
151 testlex_destroy(scanner); in thread_func()