Lines Matching defs:locp
78 struct YYLTYPE locp;
80 locp.path = this->location.path;
81 locp.source = this->location.source;
82 locp.first_line = this->location.first_line;
83 locp.first_column = this->location.first_column;
84 locp.last_line = this->location.last_line;
85 locp.last_column = this->location.last_column;
87 return locp;
95 void set_location(const struct YYLTYPE &locp)
97 this->location.path = locp.path;
98 this->location.source = locp.source;
99 this->location.first_line = locp.first_line;
100 this->location.first_column = locp.first_column;
101 this->location.last_line = locp.last_line;
102 this->location.last_column = locp.last_column;
354 ast_array_specifier(const struct YYLTYPE &locp, ast_expression *dim)
356 set_location(locp);
381 ast_layout_expression(const struct YYLTYPE &locp, ast_expression *expr)
383 set_location(locp);
1300 ast_tcs_output_layout(const struct YYLTYPE &locp)
1302 set_location(locp);
1317 ast_gs_input_layout(const struct YYLTYPE &locp, GLenum prim_type)
1320 set_location(locp);
1338 ast_cs_input_layout(const struct YYLTYPE &locp,
1344 set_location(locp);
1395 extern void _mesa_ast_process_interface_block(YYLTYPE *locp,