Lines Matching refs:locp
78 struct YYLTYPE locp;
80 locp.source = this->location.source;
81 locp.first_line = this->location.first_line;
82 locp.first_column = this->location.first_column;
83 locp.last_line = this->location.last_line;
84 locp.last_column = this->location.last_column;
86 return locp;
94 void set_location(const struct YYLTYPE &locp)
96 this->location.source = locp.source;
97 this->location.first_line = locp.first_line;
98 this->location.first_column = locp.first_column;
99 this->location.last_line = locp.last_line;
100 this->location.last_column = locp.last_column;
350 ast_array_specifier(const struct YYLTYPE &locp, ast_expression *dim)
352 set_location(locp);
377 ast_layout_expression(const struct YYLTYPE &locp, ast_expression *expr)
379 set_location(locp);
1275 ast_tcs_output_layout(const struct YYLTYPE &locp)
1277 set_location(locp);
1292 ast_gs_input_layout(const struct YYLTYPE &locp, GLenum prim_type)
1295 set_location(locp);
1313 ast_cs_input_layout(const struct YYLTYPE &locp,
1319 set_location(locp);
1370 extern void _mesa_ast_process_interface_block(YYLTYPE *locp,