Home
last modified time | relevance | path

Searched refs:getDurString (Results 1 – 8 of 8) sorted by relevance

/developtools/smartperf_host/ide/test/trace/component/trace/base/
DUtils.test.ts160 expect(Utils.getDurString(61_000_000_000)).toBe('61.000 s ');
164 expect(Utils.getDurString(2_000_000_000)).toBe('2.000 s ');
168 expect(Utils.getDurString(1_800_000)).toBe('1 ms ');
244 expect(Utils.getDurString(1)).toBe('1');
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/sdk/
DTabPaneSdkSlice.ts119 sliceValue = Utils.getDurString(Number(sliceValue));
337 return Utils.getDurString(Number(sliceValue));
DTabPaneSdkCounter.ts78 counterValue = Utils.getDurString(Number(counterValue));
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/ability/
DTabPaneCpuAbility.ts93 systemCpuSummary.durationStr = Utils.getDurString(systemCpuSummary.duration);
DTabPaneMemoryAbility.ts122 …systemMemorySummary.durationStr = (lastTime !== 0) ? Utils.getDurString(systemMemorySummary.durati…
DTabPaneDiskAbility.ts95 systemDiskIOSummary.durationStr = Utils.getDurString(systemDiskIOSummary.duration);
DTabPaneNetworkAbility.ts97 systemNetworkSummary.durationStr = Utils.getDurString(systemNetworkSummary.duration);
/developtools/smartperf_host/ide/src/trace/component/trace/base/
DUtils.ts404 public static getDurString(ns: number): string { method in Utils