Home
last modified time | relevance | path

Searched refs:numToHexString (Results 1 – 2 of 2) sorted by relevance

/developtools/smartperf_host/ide/test/hdc/common/
DUtils.test.ts61 expect(Utils.numToHexString(1)).toBe('0x1');
65 expect(Utils.numToHexString(-1)).toBe('0xffffffff');
69 expect(Utils.numToHexString(undefined)).toBe('0x0');
/developtools/smartperf_host/ide/src/hdc/common/
DUtils.ts48 public static numToHexString(num: number): string { method in Utils