Home | History | Annotate | Download | only in java_cup

Lines Matching refs:row

7  *  It has one row for each state in the parse machine, and a column for
67 for (int row = 0; row < num_states(); row++)
69 for (int col = 0; col < under_state[row].size(); col++)
72 act = under_state[row].under_term[col];
112 for (int row = 0; row < num_states(); row++)
114 result += "From state #" + row + "\n";
116 for (int col = 0; col < under_state[row].size(); col++)
119 if (under_state[row].under_term[col].kind() != parse_action.ERROR)
121 result += col + ":" + under_state[row].under_term[col] + " ";