Home | History | Annotate | Download | only in java_cup

Lines Matching refs:System

157     * onto System.out.
167 System.out.println("NULL lalr_state");
171 System.out.println("lalr_state [" + st.index() + "] {");
176 System.out.print(" [");
177 System.out.print(itm.the_production().lhs().the_symbol().name());
178 System.out.print(" ::= ");
181 if (i == itm.dot_pos()) System.out.print("(*) ");
184 System.out.print("{action} ");
186 System.out.print(((symbol_part)part).the_symbol().name() + " ");
188 if (itm.dot_at_end()) System.out.print("(*) ");
189 System.out.println("]");
191 System.out.println("}");
627 System.err.println("*** Reduce/Reduce conflict found in state #"+index());
628 System.err.print (" between ");
629 System.err.println(itm1.to_simple_string());
630 System.err.print (" and ");
631 System.err.println(itm2.to_simple_string());
632 System.err.print(" under symbols: {" );
637 if (comma_flag) System.err.print(", "); else comma_flag = true;
638 System.err.print(terminal.find(t).name());
641 System.err.println("}");
642 System.err.print(" Resolved in favor of ");
644 System.err.println("the first production.\n");
646 System.err.println("the second production.\n");
669 System.err.println("*** Shift/Reduce conflict found in state #"+index());
670 System.err.print (" between ");
671 System.err.println(red_itm.to_simple_string());
686 System.err.println(" and " + itm.to_simple_string());
690 System.err.println(" under symbol "+ terminal.find(conflict_sym).name());
691 System.err.println(" Resolved in favor of shifting.\n");