Home
last modified time | relevance | path

Searched refs:inputElement (Results 1 – 4 of 4) sorted by relevance

/developtools/smartperf_host/ide/src/trace/component/setting/
DSpSdkConfig.ts267 let inputElement = document.createElement('input');
268 inputElement.className = 'sdk-config-input config';
270 inputElement.value = this.sdkConfigList.configuration[key]['default'];
272 inputElement.setAttribute('configName', key);
273 inputElement.setAttribute('type', this.sdkConfigList.configuration[key].type);
274 sdkConfigDiv.appendChild(inputElement);
275 this.list!.push(inputElement);
/developtools/smartperf_host/ide/test/base-ui/select/
DLitSelect.test.ts87 expect(select.inputElement).toBeUndefined();
107 expect(select.inputElement).toBeUndefined();
113 let input = select.inputElement as HTMLInputElement;
114 expect(select.inputElement).toBeUndefined();
121 expect(select.inputElement).toBeUndefined();
/developtools/smartperf_host/ide/src/trace/component/trace/base/
DTraceRowConfig.ts38 private inputElement: HTMLInputElement | null | undefined; property in TraceRowConfig
74 this.inputElement!.value = '';
405 this.inputElement = this.shadowRoot!.querySelector('input');
464 if (this.subSystemSearch!.toLowerCase().indexOf(this.inputElement!.value.toLowerCase()) < 0) {
473 this.inputElement?.addEventListener('keyup', () => {
476 if (searchText!.toLowerCase().indexOf(this.inputElement!.value.toLowerCase()) < 0) {
515 this.inputElement!.value = '';
/developtools/smartperf_host/ide/src/base-ui/select/
DLitSelectV.ts135 let inputElement = this.shadowRoot?.querySelector('input') as HTMLInputElement;
136 inputElement.readOnly = false;