Searched refs:ast_declaration (Results 1 – 6 of 6) sorted by relevance
/external/mesa3d/src/glsl/ |
D | glsl_parser.ypp | 69 ast_declaration *declaration; 825 ast_declaration *decl = new(ctx) ast_declaration($3, false, NULL, NULL); 834 ast_declaration *decl = new(ctx) ast_declaration($3, true, NULL, NULL); 843 ast_declaration *decl = new(ctx) ast_declaration($3, true, $5, NULL); 852 ast_declaration *decl = new(ctx) ast_declaration($3, true, NULL, $7); 861 ast_declaration *decl = new(ctx) ast_declaration($3, true, $5, $8); 870 ast_declaration *decl = new(ctx) ast_declaration($3, false, NULL, $5); 894 ast_declaration *decl = new(ctx) ast_declaration($2, false, NULL, NULL); 903 ast_declaration *decl = new(ctx) ast_declaration($2, true, NULL, NULL); 912 ast_declaration *decl = new(ctx) ast_declaration($2, true, $4, NULL); [all …]
|
D | glsl_parser.cpp | 361 ast_declaration *declaration; 3671 …ast_declaration *decl = new(ctx) ast_declaration((yyvsp[(3) - (3)].identifier), false, NULL, NULL); 3685 … ast_declaration *decl = new(ctx) ast_declaration((yyvsp[(3) - (5)].identifier), true, NULL, NULL); 3699 …ast_declaration *decl = new(ctx) ast_declaration((yyvsp[(3) - (6)].identifier), true, (yyvsp[(5) -… 3713 …ast_declaration *decl = new(ctx) ast_declaration((yyvsp[(3) - (7)].identifier), true, NULL, (yyvsp… 3727 …ast_declaration *decl = new(ctx) ast_declaration((yyvsp[(3) - (8)].identifier), true, (yyvsp[(5) -… 3741 …ast_declaration *decl = new(ctx) ast_declaration((yyvsp[(3) - (5)].identifier), false, NULL, (yyvs… 3771 …ast_declaration *decl = new(ctx) ast_declaration((yyvsp[(2) - (2)].identifier), false, NULL, NULL); 3785 … ast_declaration *decl = new(ctx) ast_declaration((yyvsp[(2) - (4)].identifier), true, NULL, NULL); 3799 …ast_declaration *decl = new(ctx) ast_declaration((yyvsp[(2) - (5)].identifier), true, (yyvsp[(4) -… [all …]
|
D | ast.h | 305 class ast_declaration : public ast_node { 307 ast_declaration(char *identifier, int is_array, ast_expression *array_size, 589 ast_declaration, enumerator
|
D | glsl_parser_extras.cpp | 516 ast_declaration::print(void) const in print() 528 ast_declaration::ast_declaration(char *identifier, int is_array, in ast_declaration() function in ast_declaration
|
D | glsl_parser.h | 259 ast_declaration *declaration;
|
D | ast_to_hir.cpp | 1974 foreach_list_typed (ast_declaration, decl, link, &this->declarations) { in hir() 2026 foreach_list_typed (ast_declaration, decl, link, &this->declarations) { in hir() 3071 foreach_list_typed (ast_declaration, decl, link, in hir()
|