Home
last modified time | relevance | path

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

/developtools/smartperf_host/ide/src/trace/component/trace/sheet/
DTabPaneFilter.ts476 let radioList = this.shadowRoot!.querySelectorAll<HTMLInputElement>('.radio');
480 radioList![Number(this.transferChecked)].checked = true;
482 radioList![radioList.length - 1].checked = true;
501 this.transferChecked = radioList![idx].value;
502 radioList![idx].checked = true;
505 value: radioList![idx].value,
513 let radioList = this.shadowRoot!.querySelectorAll<HTMLInputElement>('.radio');
515 radioList![Number(this.transferChecked)].checked = false;
517 radioList![radioList.length - 1].checked = false;
/developtools/smartperf_host/ide/src/trace/component/trace/base/
DTraceRow.ts680 …let radioList: NodeListOf<any> = this.shadowRoot!.querySelectorAll('input[type=radio][name=status]… variable
681 if (radioList!.length > 0) {
682 radioList[Number(value)].checked = true;