Searched refs:newValue (Results 1 – 25 of 64) sorted by relevance
123
| /developtools/profiler/host/smartperf/ide/src/base-ui/tabs/ |
| D | lit-tabpane.ts | 99 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 100 if (oldValue !== newValue && newValue !== undefined) { 102 this.parentNode.updateLabel && this.parentNode.updateLabel(this.key, newValue); 105 this.parentNode.updateDisabled && this.parentNode.updateDisabled(this.key, newValue); 108 this.parentNode.updateCloseable && this.parentNode.updateCloseable(this.key, newValue); 111 this.parentNode.updateHidden && this.parentNode.updateHidden(this.key, newValue);
|
| /developtools/smartperf_host/ide/src/base-ui/tabs/ |
| D | lit-tabpane.ts | 99 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 100 if (oldValue !== newValue && newValue !== undefined) { 102 this.parentNode.updateLabel && this.parentNode.updateLabel(this.key, newValue); 105 this.parentNode.updateDisabled && this.parentNode.updateDisabled(this.key, newValue); 108 this.parentNode.updateCloseable && this.parentNode.updateCloseable(this.key, newValue); 111 this.parentNode.updateHidden && this.parentNode.updateHidden(this.key, newValue);
|
| /developtools/profiler/host/smartperf/ide/src/base-ui/checkbox/ |
| D | LitCheckBoxWithText.ts | 95 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 97 this._checkBox!.checked = newValue !== null; 100 this._checkBox?.setAttribute('value', newValue); 103 this._lowerLimit!.textContent = newValue; 106 this._upLimit!.textContent = newValue;
|
| D | LitCheckBox.ts | 157 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 159 this.checkbox.checked = newValue !== null; 163 slot!.textContent = newValue;
|
| /developtools/smartperf_host/ide/src/base-ui/checkbox/ |
| D | LitCheckBoxWithText.ts | 95 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 97 this._checkBox!.checked = newValue !== null; 100 this._checkBox?.setAttribute('value', newValue); 103 this._lowerLimit!.textContent = newValue; 106 this._upLimit!.textContent = newValue;
|
| D | LitCheckBox.ts | 157 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 159 this.checkbox.checked = newValue !== null; 163 slot!.textContent = newValue;
|
| /developtools/profiler/host/smartperf/ide/src/trace/component/setting/ |
| D | SpCheckDesBox.ts | 93 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 95 this._checkBox!.checked = newValue !== null; 98 this._checkBox!.value = newValue; 101 this._des!.textContent = newValue;
|
| /developtools/smartperf_host/ide/src/trace/component/setting/ |
| D | SpCheckDesBox.ts | 108 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 110 this._checkBox!.checked = newValue !== null; 113 this._checkBox!.value = newValue; 116 this._des!.textContent = newValue;
|
| /developtools/profiler/host/smartperf/ide/src/base-ui/popover/ |
| D | LitPopContent.ts | 76 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 79 if (newValue === null || newValue === 'false') {
|
| D | LitPopoverTitle.ts | 48 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 51 if (this.titleText) this.titleText.textContent = newValue;
|
| D | LitPopoverV.ts | 462 attributeChangedCallback(name: any, oldValue: any, newValue: any) { 464 if (newValue === 'false') {
|
| /developtools/smartperf_host/ide/src/base-ui/popover/ |
| D | LitPopContent.ts | 76 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 79 if (newValue === null || newValue === 'false') {
|
| D | LitPopoverTitle.ts | 48 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 51 if (this.titleText) this.titleText.textContent = newValue;
|
| /developtools/smartperf_host/ide/src/base-ui/menu/ |
| D | LitMainMenuGroup.ts | 145 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 148 if (this.groupNameEl) this.groupNameEl.textContent = newValue; 151 if (this.groupDescEl) this.groupDescEl.textContent = newValue;
|
| D | LitMainMenuItem.ts | 186 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 189 if (this.titleEl) this.titleEl.textContent = newValue; 192 if (this.iconEl) this.iconEl.setAttribute('name', newValue);
|
| /developtools/profiler/host/smartperf/ide/src/base-ui/menu/ |
| D | LitMainMenuGroup.ts | 145 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 148 if (this.groupNameEl) this.groupNameEl.textContent = newValue; 151 if (this.groupDescEl) this.groupDescEl.textContent = newValue;
|
| D | LitMainMenuItem.ts | 186 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 189 if (this.titleEl) this.titleEl.textContent = newValue; 192 if (this.iconEl) this.iconEl.setAttribute('name', newValue);
|
| /developtools/profiler/host/smartperf/ide/src/base-ui/radiobox/ |
| D | LitRadioBox.ts | 215 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 217 this.radio.checked = newValue !== null; 221 slot!.textContent = newValue;
|
| /developtools/smartperf_host/ide/src/base-ui/tree/ |
| D | LitTreeNode.ts | 432 attributeChangedCallback(name: string, oldValue: any, newValue: any) { 434 this.shadowRoot!.querySelector('#title')!.textContent = newValue; 437 if (newValue !== null && newValue !== '' && newValue !== 'null') { 438 this.iconElement!.setAttribute('name', newValue); 446 if (newValue === 'true') {
|
| /developtools/smartperf_host/ide/src/base-ui/radiobox/ |
| D | LitRadioBox.ts | 230 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 232 this.radio.checked = newValue !== null; 236 slot!.textContent = newValue;
|
| /developtools/smartperf_host/ide/src/base-ui/switch/ |
| D | lit-switch.ts | 182 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 184 if (newValue !== null) { 191 if (newValue !== null) {
|
| /developtools/profiler/host/smartperf/ide/src/base-ui/switch/ |
| D | lit-switch.ts | 182 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 184 if (newValue !== null) { 191 if (newValue !== null) {
|
| /developtools/smartperf_host/ide/src/base-ui/drawer/ |
| D | LitDrawer.ts | 328 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 331 if (newValue !== null) { 337 if (newValue === 'bottom') {
|
| /developtools/profiler/host/smartperf/ide/src/base-ui/drawer/ |
| D | LitDrawer.ts | 328 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 331 if (newValue !== null) { 337 if (newValue === 'bottom') {
|
| /developtools/smartperf_host/ide/src/base-ui/slicer/ |
| D | lit-slicer.ts | 55 attributeChangedCallback(name: any, oldValue: any, newValue: any) { 56 (this as any)[name] = newValue; 193 attributeChangedCallback(name: any, oldValue: any, newValue: any) {}
|
123