Home
last modified time | relevance | path

Searched refs:newValue (Results 1 – 25 of 36) sorted by relevance

12

/developtools/smartperf_host/ide/src/base-ui/tabs/
Dlit-tabpane.ts99 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);
Dlit-tabs.ts352 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/
DLitCheckBoxWithText.ts95 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;
DLitCheckBox.ts176 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/
DLitMainMenuGroup.ts174 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);
DLitMainMenuItem.ts195 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/
DSpCheckDesBox.ts108 attributeChangedCallback(name: string, oldValue: string, newValue: string) {
110 this._checkBox!.checked = newValue !== null;
113 this._checkBox!.value = newValue;
116 this._des!.textContent = newValue;
DSpHilogRecord.ts83 attributeChangedCallback(name: string, oldValue: string, newValue: string): void {
84 super.attributeChangedCallback(name, oldValue, newValue);
/developtools/smartperf_host/ide/src/base-ui/popover/
DLitPopContent.ts76 attributeChangedCallback(name: string, oldValue: string, newValue: string) {
79 if (newValue === null || newValue === 'false') {
DLitPopoverTitle.ts48 attributeChangedCallback(name: string, oldValue: string, newValue: string) {
51 if (this.titleText) this.titleText.textContent = newValue;
DLitPopoverV.ts478 attributeChangedCallback(name: any, oldValue: any, newValue: any) {
480 if (newValue === 'false') {
/developtools/smartperf_host/ide/src/base-ui/tree/
DLitTreeNode.ts301 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/
DLitRadioBox.ts241 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/
Dlit-switch.ts190 attributeChangedCallback(name: string, oldValue: string, newValue: string) {
192 if (newValue !== null) {
199 if (newValue !== null) {
/developtools/smartperf_host/ide/src/base-ui/drawer/
DLitDrawer.ts338 attributeChangedCallback(name: string, oldValue: string, newValue: string) {
341 if (newValue !== null) {
347 if (newValue === 'bottom') {
/developtools/smartperf_host/ide/src/base-ui/select/
DLitAllocationSelect.ts174 attributeChangedCallback(name: any, oldValue: any, newValue: any) {
177 this.selectAllocationInputEl!.value = newValue;
180 this.selectAllocationInputEl!.placeholder = newValue;
DLitSelectOption.ts112 attributeChangedCallback(name: any, oldValue: any, newValue: any) {}
/developtools/smartperf_host/ide/src/base-ui/slicer/
Dlit-slicer.ts55 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/
Dlit-table-group.ts49 attributeChangedCallback(name: string, oldValue: string, newValue: string) {}
Dlit-table-column.ts56 attributeChangedCallback(name: string, oldValue: string, newValue: string) {}
/developtools/smartperf_host/ide/src/base-ui/slider/
DLitSlider.ts321 attributeChangedCallback(name: string, oldValue: string, newValue: string) {
324 if (newValue === null || newValue === '0%') {
/developtools/smartperf_host/ide/src/base-ui/
DBaseElement.ts44 attributeChangedCallback(name: string, oldValue: string, newValue: string) {}
/developtools/smartperf_host/trace_streamer/src/proto_reader/include/
Dproto_reader.h148 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/
Dunique_fd.h134 void Reset(int newValue) in Reset() argument
139 fd_ = newValue; in Reset()
/developtools/smartperf_host/ide/src/trace/component/trace/base/
DCustomThemeColor.ts208 attributeChangedCallback(name: string, oldValue: string, newValue: string): void {
209 if (name === 'mode' && newValue === '') {

12