Lines Matching refs:index
150 public int index() {return _index;} in index() method in lalr_state
171 System.out.println("lalr_state [" + st.index() + "] {"); in dump_state()
462 our_act_row = act_table.under_state[index()]; in build_table_entries()
463 our_red_row = reduce_table.under_state[index()]; in build_table_entries()
498 if (itm.the_production().index() < in build_table_entries()
499 ((reduce_action)other_act).reduce_with().index()) in build_table_entries()
520 if ( our_act_row.under_term[sym.index()].kind() == in build_table_entries()
523 our_act_row.under_term[sym.index()] = act; in build_table_entries()
531 our_act_row.under_term[sym.index()] = act; in build_table_entries()
537 our_red_row.under_non_term[sym.index()] = trans.to_state(); in build_table_entries()
627 System.err.println("*** Reduce/Reduce conflict found in state #"+index()); in report_reduce_reduce()
643 if (itm1.the_production().index() < itm2.the_production().index()) in report_reduce_reduce()
669 System.err.println("*** Shift/Reduce conflict found in state #"+index()); in report_shift_reduce()
683 if (!shift_sym.is_non_term() && shift_sym.index() == conflict_sym) in report_shift_reduce()
736 result = "lalr_state [" + index() + "]: " + _items + "\n"; in toString()