Searched refs:yyscan_t (Results 1 – 6 of 6) sorted by relevance
/external/mesa3d/src/glsl/glcpp/ |
D | glcpp-lex.c | 124 typedef void* yyscan_t; typedef 280 void glcpp_restart (FILE *input_file ,yyscan_t yyscanner ); 281 void glcpp__switch_to_buffer (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); 282 YY_BUFFER_STATE glcpp__create_buffer (FILE *file,int size ,yyscan_t yyscanner ); 283 void glcpp__delete_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); 284 void glcpp__flush_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); 285 void glcpp_push_buffer_state (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); 286 void glcpp_pop_buffer_state (yyscan_t yyscanner ); 288 static void glcpp_ensure_buffer_stack (yyscan_t yyscanner ); 289 static void glcpp__load_buffer_state (yyscan_t yyscanner ); [all …]
|
D | glcpp.h | 33 #define yyscan_t void* macro 164 yyscan_t scanner; 206 glcpp_lex_init_extra (glcpp_parser_t *parser, yyscan_t* scanner); 212 glcpp_lex (YYSTYPE *lvalp, YYLTYPE *llocp, yyscan_t scanner); 215 glcpp_lex_destroy (yyscan_t scanner);
|
D | glcpp-lex.l | 34 int glcpp_get_column (yyscan_t yyscanner); 35 void glcpp_set_column (int column_no , yyscan_t yyscanner);
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
D | glslang_lex.cpp | 133 typedef void* yyscan_t; typedef 302 void yyrestart (FILE *input_file ,yyscan_t yyscanner ); 303 void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); 304 YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ,yyscan_t yyscanner ); 305 void yy_delete_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); 306 void yy_flush_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); 307 void yypush_buffer_state (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); 308 void yypop_buffer_state (yyscan_t yyscanner ); 310 static void yyensure_buffer_stack (yyscan_t yyscanner ); 311 static void yy_load_buffer_state (yyscan_t yyscanner ); [all …]
|
D | glslang.l | 41 static int string_input(char* buf, int max_size, yyscan_t yyscanner); 42 static int check_type(yyscan_t yyscanner); 43 static int reserved_word(yyscan_t yyscanner); 491 int string_input(char* buf, int max_size, yyscan_t yyscanner) { in string_input() 503 int check_type(yyscan_t yyscanner) { in check_type() 519 int reserved_word(yyscan_t yyscanner) { in reserved_word() 539 yyscan_t scanner = NULL; in glslang_initialize() 548 yyscan_t scanner = context->scanner; in glslang_finalize()
|
/external/mesa3d/src/glsl/ |
D | glsl_lexer.cpp | 124 typedef void* yyscan_t; typedef 280 void _mesa_glsl_restart (FILE *input_file ,yyscan_t yyscanner ); 281 void _mesa_glsl__switch_to_buffer (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); 282 YY_BUFFER_STATE _mesa_glsl__create_buffer (FILE *file,int size ,yyscan_t yyscanner ); 283 void _mesa_glsl__delete_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); 284 void _mesa_glsl__flush_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); 285 void _mesa_glsl_push_buffer_state (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); 286 void _mesa_glsl_pop_buffer_state (yyscan_t yyscanner ); 288 static void _mesa_glsl_ensure_buffer_stack (yyscan_t yyscanner ); 289 static void _mesa_glsl__load_buffer_state (yyscan_t yyscanner ); [all …]
|