Home
last modified time | relevance | path

Searched refs:tipEL (Results 1 – 6 of 6) sorted by relevance

/developtools/smartperf_host/ide/src/trace/component/trace/base/
DTraceRow.ts151 public tipEL: HTMLDivElement | null | undefined; property in TraceRow
608 if (this.tipEL) {
609 this.tipEL.innerHTML = value;
715 this.tipEL = this.shadowRoot?.querySelector('.tip');
1063 if (this.tipEL) {
1064 this.tipEL.style.display = 'none';
1070 if (struct === null && this.tipEL) {
1071 this.tipEL.style.display = 'none';
1074 if (this.tipEL) {
1075 this.tipEL.style.display = 'flex';
[all …]
DCustomThemeColor.ts130 this.systemTrace!.tipEL!.style.display = 'none';
/developtools/smartperf_host/ide/src/trace/component/
DSpSystemTrace.ts157 tipEL: HTMLDivElementAlias; property in SpSystemTrace
1010 this.tipEL!.style.display = 'none';
1817 this.tipEL!.style.display = 'none';
1904 if ((struct === undefined || struct === null) && this.tipEL) {
1905 this.tipEL.style.display = 'none';
1908 if (this.tipEL) {
1909 this.tipEL.innerHTML = html;
1911 this.tipEL.style.maxWidth = row.clientWidth / 3 + 'px';
1912 this.tipEL.style.wordBreak = ' break-all';
1913 this.tipEL.style.height = 'unset';
[all …]
DSpSystemTrace.event.ts361 sp.tipEL!.style.display = 'none';
387 sp.tipEL!.style.display = 'none';
DSpSystemTrace.init.ts636 sp.tipEL = sp.shadowRoot.querySelector<HTMLDivElement>('.tip');
/developtools/smartperf_host/ide/test/trace/component/trace/base/
DTraceRow.test.ts199 traceRow.tipEL = true;
241 traceRow.tipEL = jest.fn(()=>true);
242 traceRow.tipEL.style = jest.fn(()=>true);