Home
last modified time | relevance | path

Searched refs:java_array_type (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/gdb/gdb/
H A Djv-lang.h58 extern struct type *java_array_type (struct type *, int);
H A Djv-exp.y313 { $$ = java_array_type ($1, $2); }
315 { $$ = java_array_type (java_type_from_name ($1), $2); }
535 write_exp_elt_type (java_array_type ($2, $3));
560 write_exp_elt_type (java_array_type (java_type_from_name ($2), $3));
H A Djv-exp.c1488 { yyval.tval = java_array_type (yyvsp[-1].tval, yyvsp[0].lval); }
1493 { yyval.tval = java_array_type (java_type_from_name (yyvsp[-1].sval), yyvsp[0].lval); }
1685 write_exp_elt_type (java_array_type (yyvsp[-3].tval, yyvsp[-2].lval));
1716 write_exp_elt_type (java_array_type (java_type_from_name (yyvsp[-3].sval), yyvsp[-2].lval));
H A Djv-lang.c770 java_array_type (struct type *type, int dims) in java_array_type() function