Searched refs:ast_declaration (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/compiler/glsl/ |
D | glsl_parser.yy | 121 ast_declaration *declaration; 1040 ast_declaration *decl = new(ctx) ast_declaration($3, NULL, NULL); 1050 ast_declaration *decl = new(ctx) ast_declaration($3, $4, NULL); 1060 ast_declaration *decl = new(ctx) ast_declaration($3, $4, $6); 1070 ast_declaration *decl = new(ctx) ast_declaration($3, NULL, $5); 1091 ast_declaration *decl = new(ctx) ast_declaration($2, NULL, NULL); 1102 ast_declaration *decl = new(ctx) ast_declaration($2, $3, NULL); 1113 ast_declaration *decl = new(ctx) ast_declaration($2, $3, $5); 1124 ast_declaration *decl = new(ctx) ast_declaration($2, NULL, $4); 1135 ast_declaration *decl = new(ctx) ast_declaration($2, NULL, NULL); [all …]
|
D | ast.h | 449 class ast_declaration : public ast_node { 451 ast_declaration(const char *identifier,
|
D | glsl_parser_extras.cpp | 1446 ast_declaration::print(void) const in print() 1458 ast_declaration::ast_declaration(const char *identifier, in ast_declaration() function in ast_declaration
|
D | ast_to_hir.cpp | 4429 process_initializer(ir_variable *var, ast_declaration *decl, in process_initializer() 4893 foreach_list_typed (ast_declaration, decl, link, &this->declarations) { in hir() 4926 foreach_list_typed (ast_declaration, decl, link, &this->declarations) { in hir() 5172 foreach_list_typed (ast_declaration, decl, link, &this->declarations) { in hir() 6265 …foreach_list_typed(ast_declaration, decl, link, &this->return_type->qualifier.subroutine_list->dec… in hir() 7500 foreach_list_typed (ast_declaration, decl, link, in ast_process_struct_or_iface_block_members()
|