Searched refs:ast_declaration (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/compiler/glsl/ |
D | glsl_parser.yy | 118 ast_declaration *declaration; 1017 ast_declaration *decl = new(ctx) ast_declaration($3, NULL, NULL); 1027 ast_declaration *decl = new(ctx) ast_declaration($3, $4, NULL); 1037 ast_declaration *decl = new(ctx) ast_declaration($3, $4, $6); 1047 ast_declaration *decl = new(ctx) ast_declaration($3, NULL, $5); 1068 ast_declaration *decl = new(ctx) ast_declaration($2, NULL, NULL); 1079 ast_declaration *decl = new(ctx) ast_declaration($2, $3, NULL); 1090 ast_declaration *decl = new(ctx) ast_declaration($2, $3, $5); 1101 ast_declaration *decl = new(ctx) ast_declaration($2, NULL, $4); 1112 ast_declaration *decl = new(ctx) ast_declaration($2, NULL, NULL); [all …]
|
D | ast.h | 444 class ast_declaration : public ast_node { 446 ast_declaration(const char *identifier,
|
D | glsl_parser_extras.cpp | 1400 ast_declaration::print(void) const in print() 1412 ast_declaration::ast_declaration(const char *identifier, in ast_declaration() function in ast_declaration
|
D | ast_to_hir.cpp | 4306 process_initializer(ir_variable *var, ast_declaration *decl, in process_initializer() 4767 foreach_list_typed (ast_declaration, decl, link, &this->declarations) { in hir() 4799 foreach_list_typed (ast_declaration, decl, link, &this->declarations) { in hir() 4969 foreach_list_typed (ast_declaration, decl, link, &this->declarations) { in hir() 6033 …foreach_list_typed(ast_declaration, decl, link, &this->return_type->qualifier.subroutine_list->dec… in hir() 7247 foreach_list_typed (ast_declaration, decl, link, in ast_process_struct_or_iface_block_members()
|