| /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);
|
| D | lit-tabs.ts | 352 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 353 if (name === 'activekey' && this.nav && oldValue !== newValue && newValue != '') { 354 this.activeByKey(newValue, false);
|
| /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 | 176 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 178 this.checkbox.checked = newValue !== null; 182 slot!.textContent = newValue;
|
| /developtools/smartperf_host/ide/src/base-ui/menu/ |
| D | LitMainMenuGroup.ts | 174 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 177 if (this.groupNameEl) this.groupNameEl.textContent = newValue; 180 if (this.groupDescEl) this.groupDescEl.textContent = newValue; 183 if (this.iconEl) this.iconEl.setAttribute('name', newValue);
|
| D | LitMainMenuItem.ts | 195 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 199 this.titleEl.textContent = newValue; 200 if (newValue.includes('long trace')) { 214 if (this.iconEl) this.iconEl.setAttribute('name', 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;
|
| D | SpHilogRecord.ts | 83 attributeChangedCallback(name: string, oldValue: string, newValue: string): void { 84 super.attributeChangedCallback(name, oldValue, newValue);
|
| /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;
|
| D | LitPopoverV.ts | 478 attributeChangedCallback(name: any, oldValue: any, newValue: any) { 480 if (newValue === 'false') {
|
| /developtools/smartperf_host/ide/src/base-ui/tree/ |
| D | LitTreeNode.ts | 301 attributeChangedCallback(name: string, oldValue: any, newValue: any): void { 303 this.shadowRoot!.querySelector('#title')!.textContent = newValue; 306 if (newValue !== null && newValue !== '' && newValue !== 'null') { 307 this.iconElement!.setAttribute('name', newValue); 315 if (newValue === 'true' && this._data!.disable !== true) {
|
| /developtools/smartperf_host/ide/src/base-ui/radiobox/ |
| D | LitRadioBox.ts | 241 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 243 this.radio.checked = newValue !== null; 247 slot!.textContent = newValue;
|
| /developtools/smartperf_host/ide/src/base-ui/switch/ |
| D | lit-switch.ts | 190 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 192 if (newValue !== null) { 199 if (newValue !== null) {
|
| /developtools/smartperf_host/ide/src/base-ui/drawer/ |
| D | LitDrawer.ts | 338 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 341 if (newValue !== null) { 347 if (newValue === 'bottom') {
|
| /developtools/smartperf_host/ide/src/base-ui/select/ |
| D | LitAllocationSelect.ts | 174 attributeChangedCallback(name: any, oldValue: any, newValue: any) { 177 this.selectAllocationInputEl!.value = newValue; 180 this.selectAllocationInputEl!.placeholder = newValue;
|
| D | LitSelectOption.ts | 112 attributeChangedCallback(name: any, oldValue: any, newValue: any) {}
|
| /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; 197 attributeChangedCallback(name: any, oldValue: any, newValue: any) {}
|
| /developtools/smartperf_host/ide/src/base-ui/table/ |
| D | lit-table-group.ts | 49 attributeChangedCallback(name: string, oldValue: string, newValue: string) {}
|
| D | lit-table-column.ts | 56 attributeChangedCallback(name: string, oldValue: string, newValue: string) {}
|
| /developtools/smartperf_host/ide/src/base-ui/slider/ |
| D | LitSlider.ts | 321 attributeChangedCallback(name: string, oldValue: string, newValue: string) { 324 if (newValue === null || newValue === '0%') {
|
| /developtools/smartperf_host/ide/src/base-ui/ |
| D | BaseElement.ts | 44 attributeChangedCallback(name: string, oldValue: string, newValue: string) {}
|
| /developtools/smartperf_host/trace_streamer/src/proto_reader/include/ |
| D | proto_reader.h | 148 uint64_t newValue = 0; variable 149 const uint8_t* nextPos = VarIntDecode(currentReadAddr_, endAddr_, &newValue); 153 currentValue_ = static_cast<cppType>(newValue);
|
| /developtools/smartperf_host/trace_streamer/prebuilts/patch_hiperf/ |
| D | unique_fd.h | 134 void Reset(int newValue) in Reset() argument 139 fd_ = newValue; in Reset()
|
| /developtools/smartperf_host/ide/src/trace/component/trace/base/ |
| D | CustomThemeColor.ts | 208 attributeChangedCallback(name: string, oldValue: string, newValue: string): void { 209 if (name === 'mode' && newValue === '') {
|