Home
last modified time | relevance | path

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

/developtools/smartperf_host/ide/src/trace/component/
DSpRecordTrace.ts76 public deviceSelect: HTMLSelectElement | undefined; property in SpRecordTrace
144 if (devs.length !== this.deviceSelect!.options.length) {
148 for (let index = 0; index < this.deviceSelect!.options.length; index++) {
149 optionArray.push(this.deviceSelect!.options[index].value);
164 this.deviceSelect!.innerHTML = '';
180 this.deviceSelect!.appendChild(option);
228 this.deviceSelect!.innerHTML = '';
233 this.deviceSelect!.innerHTML = '';
244 this.deviceSelect!.appendChild(option);
341 this.deviceSelect = this.shadowRoot.querySelector('#device-select') as HTMLSelectElement;
[all …]
/developtools/smartperf_host/ide/test/trace/component/
DSpRecordTrace.test.ts126 spRecordTrace.deviceSelect = document.createElement('select');
128 spRecordTrace.deviceSelect.add(option)