Home | History | Annotate | Download | only in profiler

Lines Matching refs:du

189         DurationUnit du = Util.selectDurationUnitForDisplay(globalStopWatch);
190 return buildProfilerString(du, TOP_PROFILER_FIRST_PREFIX, TOTAL_ELAPSED, "");
199 DurationUnit du = Util.selectDurationUnitForDisplay(globalStopWatch);
200 String r = buildProfilerString(du, TOP_PROFILER_FIRST_PREFIX, TOTAL_ELAPSED, "");
227 private String buildProfilerString(DurationUnit du, String firstPrefix, String label, String indentation) {
237 buildStopWatchString(buf, du, ELAPSED_TIME, indentation, (StopWatch) child);
240 String subString = profiler.buildProfilerString(du, NESTED_PROFILER_FIRST_PREFIX, SUBTOTAL_ELAPSED, indentation + " ");
242 buildStopWatchString(buf, du, ELAPSED_TIME, indentation, profiler.globalStopWatch);
245 buildStopWatchString(buf, du, label, indentation, globalStopWatch);
249 private static void buildStopWatchString(StringBuilder buf, DurationUnit du, String prefix, String indentation, StopWatch sw) {
256 String timeStr = Util.durationInDurationUnitsAsStr(sw.elapsedTime(), du);
259 Util.appendDurationUnitAsStr(buf, du);