Home
last modified time | relevance | path

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

/openbsd-src/gnu/usr.bin/binutils/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); }
544 write_exp_elt_type (java_array_type ($2, $3));
569 write_exp_elt_type (java_array_type (java_type_from_name ($2), $3));
H A Djv-exp.c1487 { yyval.tval = java_array_type (yyvsp[-1].tval, yyvsp[0].lval); }
1492 { yyval.tval = java_array_type (java_type_from_name (yyvsp[-1].sval), yyvsp[0].lval); }
1696 write_exp_elt_type (java_array_type (yyvsp[-3].tval, yyvsp[-2].lval));
1727 write_exp_elt_type (java_array_type (java_type_from_name (yyvsp[-3].sval), yyvsp[-2].lval));
H A Djv-lang.c772 java_array_type (struct type *type, int dims) in java_array_type() function
H A DChangeLog-19985261 * jv-lang.c (java_array_type): Initial cut at array support.