Home | History | Annotate | Download | only in java_cup

Lines Matching refs:total_time

674       long total_time = final_time - start_time;
679 + timestr(final_time-start_time, total_time));
681 + timestr(prelim_end-start_time, total_time));
683 + timestr(parse_end-prelim_end, total_time) );
686 + timestr(check_end-parse_end, total_time));
689 + timestr(build_end-check_end, total_time));
692 + timestr(nullability_end-check_end, total_time));
695 + timestr(first_end-nullability_end, total_time));
698 + timestr(machine_end-first_end, total_time));
701 + timestr(table_end-machine_end, total_time));
704 + timestr(reduce_check_end-table_end, total_time));
707 + timestr(emit_end-build_end, total_time));
710 + timestr(emit.symbols_time, total_time));
713 + timestr(emit.parser_time, total_time));
716 + timestr(emit.action_code_time, total_time));
719 + timestr(emit.production_table_time, total_time));
722 + timestr(emit.action_table_time, total_time));
725 + timestr(emit.goto_table_time, total_time));
728 + timestr(dump_end-emit_end, total_time));
738 * @param total_time total time percentages are calculated against (in ms).
740 protected static String timestr(long time_val, long total_time)
767 percent10 = (time_val*1000)/total_time;