Home | History | Annotate | Download | only in java_cup

Lines Matching refs:row

486       parse_action_row row;
496 /* do each state (row) of the action table */
499 /* get the row */
500 row = act_tab.under_state[i];
502 /* determine the default for the row */
504 row.compute_default();
506 row.default_reduce = -1;
511 for (int j = 0; j < row.size(); j++)
514 act = row.under_term[j];
533 if (red != row.default_reduce)
544 /* finish off the row with a default entry */
545 if (row.default_reduce != -1)
546 out.println("-1," + (-(row.default_reduce+1)) + "},");
581 /* do each row of the reduce-goto table */
586 /* do each entry in the row */
600 /* end row with default value */