| /developtools/smartperf_host/ide/src/base-ui/switch/ |
| D | lit-switch.ts | 100 get checked() { method in LitSwitch 104 set checked(value) { method in LitSwitch 136 this.checked = this.checked; 138 this.checked = this.switch!.checked; 141 checked: this.checked, 149 this.checked = !this.checked; 152 checked: this.checked, 200 this.switch.checked = true; 202 this.switch.checked = false; 209 checked: boolean; property
|
| /developtools/smartperf_host/ide/src/trace/component/setting/ |
| D | SpCheckDesBox.ts | 53 get checked() { method in SpCheckDesBox 57 set checked(checked: boolean) { method in SpCheckDesBox 58 if (checked) { 60 this._checkBox!.checked = true; 63 this._checkBox!.checked = false; 103 this.checked = detail!.checked; 110 this._checkBox!.checked = newValue !== null;
|
| D | SpProbesConfig.ts | 55 if (this.hitrace && this.hitrace.checked) { 90 if (this.hitrace && this.hitrace.checked) { 103 if (logLevel.checked) { 116 checkDesBox.checked = configBean.isSelect; 130 checkDesBox.checked = configBean.isSelect; 144 checkDesBox.checked = configBean.isSelect; 160 litCheckBox.checked = hitraceConfig.isSelect; 163 if (this.hitrace?.checked === false) { 164 this.hitrace.checked = detail!.checked; 166 if (!detail!.checked && this.hitrace?.checked === true) { [all …]
|
| D | SpRecordTemplate.ts | 107 if (detail!.checked) { 121 if (this.frameTimeline?.checked || this.appStartup?.checked || this.dynamicEffectEl?.checked) { 128 if (this.appStartup?.checked) { 166 if (this.schedulingAnalysis?.checked) { 178 if (this.taskPoolEl!.checked) {
|
| D | SpArkTs.ts | 150 if (detail.checked) { 162 if (detail.checked) { 165 if (!this.cpuSwitch?.checked) { 166 this.litSwitch!.checked = false; 177 if (!detail.checked && !this.memorySwitch?.checked) { 178 this.litSwitch!.checked = false; 180 } else if (detail.checked) { 191 this.litSwitch!.checked = true; 239 item.checked = false; 259 item.checked = true;
|
| D | SpAllocations.ts | 94 let value = this.fpUnWind?.checked; 102 let value = this.recordAccurately?.checked; 110 let value = this.offlineSymbol?.checked; 133 let value = this.responseLibMode?.checked; 141 let value = this.startupMode?.checked; 150 this.startupMode.checked = value; 249 if (detail.checked) {
|
| D | SpHilogRecord.ts | 34 return this.vmTrackerSwitch!.checked; 55 if (this.vmTrackerSwitch?.checked) {
|
| /developtools/smartperf_host/ide/src/base-ui/tree/ |
| D | LitTreeNode.ts | 131 get checked(): boolean { method in LitTreeNode 135 set checked(value) { method in LitTreeNode 157 this.onChange(!this.data?.checked); 161 onChange(checked: boolean): void { 162 this.checked = checked; 163 this.data!.checked = checked; 165 this.dispatchEvent(new CustomEvent('change', { detail: checked })); 185 this.checkboxElement!.checked = true; 191 if (this.checked) { 196 if (this.checked) { [all …]
|
| D | LitTree.ts | 25 checked?: boolean; property 233 node.checked = a.checked || false; // 是否勾选 238 item.checked = item.data!.key === node.data!.key; 239 item.data!.checked = item.checked; 242 var litTreeNodes = this.nodeList.filter((it) => it.checked); 244 node.checked = true; 245 node.data!.checked = true; 247 …that.dispatchEvent(new CustomEvent('onChange', { detail: { data: (node as any).data, checked: e.de… 499 insertNode.checked = a.checked || false; // 是否勾选 504 node.checked = node.data!.key === insertNode.data!.key; [all …]
|
| /developtools/smartperf_host/ide/src/base-ui/checkbox/ |
| D | LitCheckBox.ts | 126 get checked() { method in LitCheckBox 130 set checked(boxCheck: boolean) { method in LitCheckBox 166 this.checked = this.checkbox!.checked; 169 checked: this.checked, 178 this.checkbox.checked = newValue !== null; 188 checked: boolean; property
|
| D | LitCheckBoxWithText.ts | 53 get checked() { method in LitCheckBoxWithText 57 set checked(checked: boolean) { method in LitCheckBoxWithText 58 if (checked) { 97 this._checkBox!.checked = newValue !== null;
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/ |
| D | TabPaneFilter.ts | 446 checkList.push(row[index].querySelector<LitCheckBox>('lit-check-box')!.checked) 463 this.treeCheckClickSwitch(idx, !check!.checked, row); 465 check!.checked = !check!.checked; 469 this.treeCheckClickSwitch(idx, ev.target.checked, row); 480 radioList![Number(this.transferChecked)].checked = true; 482 radioList![radioList.length - 1].checked = true; 490 row[0].checked = false; 491 row[1].checked = false; 493 if (filterData.callTreeConstraints.checked === true) { 496 check!.checked = false; [all …]
|
| /developtools/smartperf_host/ide/src/base-ui/radiobox/ |
| D | LitRadioBox.ts | 171 get checked() { method in LitRadioBox 179 set checked(radioValue: boolean) { method in LitRadioBox 230 this.checked = this.checked; 235 siblingNode.checked = false; 237 this.checked = true; 243 this.radio.checked = newValue !== null;
|
| /developtools/smartperf_host/ide/test/base-ui/checkbox/ |
| D | LitCheckBox.test.ts | 27 expect(litCheckBox.checked).toBeFalsy(); 32 litCheckBox.checked = true; 33 expect(litCheckBox.checked).toBeTruthy(); 51 litCheckBox.checked = false; 52 expect(litCheckBox.checked).toBeFalsy();
|
| D | LitCheckBoxWithText.test.ts | 27 expect(litCheckBoxWithText.checked).toBeFalsy(); 32 litCheckBoxWithText.checked = true; 33 expect(litCheckBoxWithText.checked).toBeTruthy(); 38 litCheckBoxWithText.checked = false; 39 expect(litCheckBoxWithText.checked).toBeFalsy();
|
| /developtools/smartperf_host/ide/test/trace/component/setting/ |
| D | SpCheckDesBox.test.ts | 37 spCheckDesBox.checked = false; 38 expect(spCheckDesBox.checked).toBeFalsy(); 42 spCheckDesBox.checked = true; 43 expect(spCheckDesBox.checked).toBeTruthy();
|
| /developtools/smartperf_host/ide/src/trace/component/schedulingAnalysis/ |
| D | CheckCpuSetting.ts | 94 bigCheckBox.checked = cpuSetting.big; 96 midCheckBox.checked = cpuSetting.middle; 98 smallCheckBox.checked = cpuSetting.small; 100 midCheckBox.checked = false; 101 smallCheckBox.checked = false; 108 bigCheckBox.checked = false; 109 smallCheckBox.checked = false; 116 midCheckBox.checked = false; 117 bigCheckBox.checked = false;
|
| /developtools/smartperf_host/ide/src/base-ui/popover/ |
| D | LitPopoverV.ts | 452 checkbox.checked = !checkbox.checked; 453 this.visible = checkbox.checked; 482 this.shadowRoot!.querySelector('.trigger-click')!.checked = false; 485 this.shadowRoot!.querySelector('.trigger-click')!.checked = true;
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/file-system/ |
| D | TabPaneVirtualMemoryStatisticsAnalysis.ts | 83 this.hideProcessCheckBox!.checked = false; 84 this.hideThreadCheckBox!.checked = false; 171 if (this.hideProcessCheckBox!.checked && this.hideThreadCheckBox!.checked) { 174 } else if (this.hideProcessCheckBox!.checked && !this.hideThreadCheckBox!.checked) { 193 if (this.hideProcessCheckBox?.checked) { 196 if (this.hideThreadCheckBox?.checked) { 276 if (this.hideProcessCheckBox?.checked) { 284 if (this.hideThreadCheckBox?.checked) { 285 if (this.hideProcessCheckBox?.checked) { 417 if (this.hideThreadCheckBox!.checked) { [all …]
|
| D | TabPaneIOTierStatisticsAnalysis.ts | 83 this.hideProcessCheckBox!.checked = false; 84 this.hideThreadCheckBox!.checked = false; 174 if (this.hideProcessCheckBox!.checked && this.hideThreadCheckBox!.checked) { 177 } else if (this.hideProcessCheckBox!.checked && !this.hideThreadCheckBox!.checked) { 197 if (this.hideProcessCheckBox?.checked) { 200 if (this.hideThreadCheckBox?.checked) { 281 if (this.hideProcessCheckBox?.checked) { 289 if (this.hideThreadCheckBox?.checked) { 290 if (this.hideProcessCheckBox?.checked) { 413 if (this.hideThreadCheckBox!.checked) { [all …]
|
| D | TabPaneFilesystemStatisticsAnalysis.ts | 85 this.hideProcessCheckBox!.checked = false; 86 this.hideThreadCheckBox!.checked = false; 157 if (this.hideProcessCheckBox!.checked && this.hideThreadCheckBox!.checked) { 160 } else if (this.hideProcessCheckBox!.checked && !this.hideThreadCheckBox!.checked) { 179 if (this.hideProcessCheckBox?.checked) { 182 if (this.hideThreadCheckBox?.checked) { 272 if (this.hideProcessCheckBox?.checked) { 280 if (this.hideThreadCheckBox?.checked) { 281 if (this.hideProcessCheckBox?.checked) { 414 if (this.hideThreadCheckBox!.checked) { [all …]
|
| /developtools/smartperf_host/ide/src/trace/component/trace/sheet/hiperf/ |
| D | TabPanePerfAnalysis.ts | 80 this.hideProcessCheckBox!.checked = false; 81 this.hideThreadCheckBox!.checked = false; 120 if (this.hideProcessCheckBox?.checked && this.hideThreadCheckBox?.checked) { 176 (this.hideProcessCheckBox!.checked && this.hideThreadCheckBox!.checked) || 177 (this.hideThreadCheckBox!.checked && 184 } else if (this.hideProcessCheckBox!.checked && !this.hideThreadCheckBox!.checked) { 260 if (this.hideThreadCheckBox?.checked) { 273 (this.hideProcessCheckBox?.checked && this.hideThreadCheckBox?.checked) || 274 …(this.hideProcessCheckBox?.checked && this.tabName!.textContent === 'Statistic By Thread Count') || 275 (this.hideThreadCheckBox?.checked && [all …]
|
| /developtools/smartperf_host/ide/test/base-ui/switch/ |
| D | LitSwitch.test.ts | 20 litSwitch.checked = true; 21 litSwitch.checked = false; 34 expect(litSwitch.checked).toBeFalsy();
|
| /developtools/smartperf_host/ide/test/base-ui/radiobox/ |
| D | LitRadioBox.test.ts | 26 litRadioBox.checked = true; 27 litRadioBox.checked = false;
|
| /developtools/smartperf_host/ide/test/base-ui/tree/ |
| D | lit-tree-node.test.ts | 28 litTabPane.checked = 'checked'; 51 expect(litTabPane.checked).toBeTruthy();
|