Home
last modified time | relevance | path

Searched refs:getTimeStampHMS (Results 1 – 9 of 9) sorted by relevance

/developtools/smartperf_host/ide/test/trace/component/trace/base/
DUtils.test.ts136 expect(Utils.getTimeStampHMS(3900_000_000_000)).toBe('01:05:00:000.000');
140 expect(Utils.getTimeStampHMS(70_000_000_000)).toBe('01:10:000.000');
144 expect(Utils.getTimeStampHMS(2_000_000_000)).toBe('02:000.000');
148 expect(Utils.getTimeStampHMS(2_000_000)).toBe('00:002.000');
152 expect(Utils.getTimeStampHMS(2_000)).toBe('00:000.002.');
156 expect(Utils.getTimeStampHMS(1)).toBe('00:000.000001');
240 expect(Utils.getTimeStampHMS(0)).toBe('00:000.000');
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/ability/
DTabPaneHistoryProcesses.ts95 processHistory.firstSeen = Utils.getTimeStampHMS(processHistory.firstSeenNumber);
98 processHistory.lastSeen = Utils.getTimeStampHMS(Number(processHistory.lastSeenNumber));
DTabPaneCpuAbility.ts91 systemCpuSummary.startTimeStr = Utils.getTimeStampHMS(systemCpuSummary.startTime);
DTabPaneMemoryAbility.ts120 : Utils.getTimeStampHMS(item.startTime - startTime);
DTabPaneDiskAbility.ts93 systemDiskIOSummary.startTimeStr = Utils.getTimeStampHMS(systemDiskIOSummary.startTime);
DTabPaneNetworkAbility.ts95 … systemNetworkSummary.startTimeStr = Utils.getTimeStampHMS(systemNetworkSummary.startTime);
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/sdk/
DTabPaneSdkSlice.ts117 sliceValue = Utils.getTimeStampHMS(Number(sliceValue));
335 return Utils.getTimeStampHMS(Number(sliceValue));
DTabPaneSdkCounter.ts76 counterValue = Utils.getTimeStampHMS(Number(counterValue));
/developtools/smartperf_host/ide/src/trace/component/trace/base/
DUtils.ts361 public static getTimeStampHMS(ns: number): string { method in Utils