Home
last modified time | relevance | path

Searched refs:label (Results 1 – 25 of 100) sorted by relevance

1234

/developtools/ace_ets2bundle/compiler/sample/pages/
Dwilldo.ets28 { label: "Wash the car" },
29 { label: "Buy some milk" },
30 { label: "Make the report" },
31 { label: "Buy flight tickets" },
32 { label: "Update profile" },
33 { label: "Change tyres" },
34 { label: "Walk the dog" },
35 { label: "Feed the dog" },
36 { label: "Paint the walls" },
37 { label: "Wash dishes" },
[all …]
/developtools/packing_tool/adapter/ohos/
DModuleShortcut.java35 private String label = ""; field in ModuleShortcut
58 return label; in getLabel()
61 public void setLabel(String label) { in setLabel() argument
62 this.label = label; in setLabel()
DUncompressResult.java33 private String label = ""; field in UncompressResult
59 void setLabel(String label) { in setLabel() argument
60 this.label = label; in setLabel()
114 return label; in getLabel()
DModuleResult.java45 private String label = ""; field in ModuleResult
80 return label; in getLabel()
84 label = labelRes; in setLabel()
DModuleAdaption.java60 uncomperssResult.setLabel(profileInfo.moduleAppInfo.label); in convertToUncompressResult()
82 appInfo.label = moduleAppInfo.label; in convertToAppInfo()
181 shortcut.label = value.getLabel(); in convertToShortcut()
234 abilityInfo.label = info.label; in convertToAbilityInfo()
236 abilityInfo.labelRes = info.label; in convertToAbilityInfo()
DDefPermissionGroup.java41 public String label = ""; field in DefPermissionGroup
/developtools/ace_ets2bundle/compiler/sample/pages/testcases/
DstateArrayReverseCustomView.ets18 label:string = '';
20 constructor(id:number, label:string){
22 this.label = label;
32 Text("label: ")
33 Text(this.item.label)
35 Text(this.item.label.toUpperCase())
37 Text(this.item.label.split("").reverse().join(""))
48 Text(this.item.label)
DstateArrayReverse.ets35 label:string;
37 constructor(id:number, label:string){
39 this.label = label;
58 (item:Item1) => {Text(item.label)},
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/gpu/
DTabPaneGpuClickSelect.ts47 let label = document.createElement('label');
48 label.style.cursor = 'pointer';
49 i === 0 ? (label.innerHTML = titleArr[i]) : (label.innerHTML = '/' + titleArr[i]);
50 td.appendChild(label);
154 let label = labels[i].innerHTML; variable
156 if ((label.includes('Window') && i === 0) || (label.includes('Module') && i === 0)) {
159 } else if (label.includes('Module') && i === 1) {
162 … } else if ((label.includes('Category') && i === 2) || (label.includes('Category') && i === 1)) {
DTabPaneGpuClickSelectComparison.ts77 let label = document.createElement('label');
78 label.style.cursor = 'pointer';
79 i == 0 ? (label.innerHTML = titleArr[i]) : (label.innerHTML = '/' + titleArr[i]);
80 td.appendChild(label);
/developtools/integration_verification/cases/smoke/basic/screenshot32/acls_check/
Dtoken_info_1717730191843813600_7001005458323933328a5a60fe3a3900.txt1416 "label": "",
1428 "label": "$string:ohos_lab_accelerometer",
1440 "label": "",
1452 "label": "",
1464 "label": "",
1476 "label": "",
1488 "label": "",
1500 "label": "",
1512 "label": "$string:ohos_lab_access_bluetooth",
1524 "label": "",
[all …]
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/components/
DLimitLine.ets36 /** the style of the label text */
39 /** label string that is drawn next to the limit line */
45 /** indicates the position of the LimitLine label */
48 constructor(limit: number, label?: string) {
51 this.mLabel = label;
164 * Sets the position of the LimitLine value label (either on the right or on
174 * Returns the position of the LimitLine label (value).
183 * Sets the label that is drawn next to the limit line. Provide "" if no
184 * label is required.
186 * @param label
[all …]
DLegend.ets113 * actual label/text
173 var label: string = entry.label;
174 if (label == null) {
178 var length: number = Utils.calcTextWidth(p, label);
198 var label: string = entry.label;
199 if (label == null) {
203 var length: number = Utils.calcTextHeight(p, label);
234 entry.label = labels[i];
250 * * A null label will start a group.
481 * returns the space between the form and the actual label/text
[all …]
DLegendEntry.ets22 * @param label The legend entry text. A `null` label will start a group.
30 label?: string,
37 this.label = label;
47 * A `null` label will start a group.
49 public label: string;
DYAxis.ets45 * indicates if the bottom y-label entry is drawn or not
50 * indicates if the top y-label entry is drawn or not
100 * the horizontal offset of the y-label
188 * returns the horizontal offset of the y-label
195 * sets the horizontal offset of the y-label
204 * returns true if drawing the top y-axis label entry is enabled
213 * returns true if drawing the bottom y-axis label entry is enabled
222 * set this to true to enable drawing the top y-label entry. Disabling this can be helpful
223 * when the top y-label and
224 * left x-label interfere with each other. default: true
[all …]
/developtools/bytrace/
DREADME_zh.md14 2. 命令行部分通过使能对应的label,来获取打点信息。通过该工具可以打开想要查看的用户态和内核label(通过命令行“bytrace -l”,查看支持的所有label),然后通过命令行进行抓取…
58 - 查询支持的label
71 - 设置4M缓存,抓取10秒,抓取label为ability的trace信息。
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/cpu/
DTabPanePTS.ts60 let label = labels[i].innerHTML;
62 if (label.includes('Process') && i === 0) {
65 } else if (label.includes('Thread') && i === 1) {
68 } else if (label.includes('State') && i === 2) {
DTabPaneSPT.ts72 let label = labels[i].innerHTML;
74 if (label.includes('State') && i === 0) {
77 } else if (label.includes('Process') && i === 1) {
80 } else if (label.includes('Thread') && i === 2) {
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/renderer/
DLegendRenderer.ets120 let label: string;
123 label = labelIndex < sLabels.length ? sLabels[labelIndex] : null;
125 label = null;
129 label,
152 let label: string;
154 label = null;
156 label = data.getDataSetByIndex(i).getLabel();
160 label,
353 let isStacked: boolean = e.label == null; // grouped forms have null labels
390 paints.push(this.drawLabel(posX, posY, e.label));
[all …]
DXAxisRenderer.ets221 …let label = this.mXAxis.getValueFormatter().getFormattedValue(this.mXAxis.mEntries[i / 2], this.mX…
226 let width = Utils.calcTextWidth(this.mAxisLabelPaint, label);
233 let width = Utils.calcTextWidth(this.mAxisLabelPaint, label);
238 …labelPaint.push(this.drawLabel(label, this.getXRelativeValue(x), pos, anchor, labelRotationAngleDe…
241 …let label = this.mXAxis.getValueFormatter().getFormattedValue(this.mXAxis.mEntries[i / 2], this.mX…
242 …labelPaint.push(this.drawLabel(label, this.getXRelativeValue(x), pos, anchor, labelRotationAngleDe…
411 let label = limitLine.getLabel();
413 // if drawing the limit-value label is enabled
414 if (label != null && label.length > 0) {
425 textPaint.setText(label);
[all …]
/developtools/smartperf_host/ide/src/base-ui/chart/column/
DLitChartColumn.ts49 label: string; property
219 label:
326 label: `${getProbablyTime(maxValue - valGap * index)} `,
374 c.fillText(it.label, this.offset!.x! - c.measureText(it.label).width - 2, it.y + 11);
376 c.fillText(it.label, this.offset!.x! - c.measureText(it.label).width - 2, it.y + 4);
420 if (this.litChartColumnCfg?.label) {
424 …this.litChartColumnCfg!.label!.content ? this.litChartColumnCfg!.label!.content(it.obj) : it.yLabe…
DLitChartColumnConfig.ts27 label: property
/developtools/smartperf_host/trace_streamer/src/rpc/
Dffrt_converter.cpp176 const std::string &label, in ReplaceSchedWakeLog() argument
182 (void)sprintf_s(result.get(), MAX_LEN, "comm=%s ", label.c_str()); in ReplaceSchedWakeLog()
205 const std::string &label, in ReplaceTracingMarkLog() argument
214 (void)sprintf_s(result.get(), MAX_LEN, " %s-%s ", label.c_str(), taskId.c_str()); in ReplaceTracingMarkLog()
410 std::string label; in GetLabel() local
415 label = line.substr(beginPos + 1, endPos - beginPos - 1); in GetLabel()
421 label = line.substr(beginPos, endPos - beginPos); in GetLabel()
427 label = line.substr(beginPos + 1, endPos - beginPos - 1); in GetLabel()
433 label = line.substr(beginPos, endPos - beginPos); in GetLabel()
436 return label; in GetLabel()
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/binder/
DTabPaneBinders.ts116 let label = labels[i].innerHTML;
118 if (label.includes('Process') && i === 0) {
124 } else if (label.includes('Thread') && i === 1) {
/developtools/smartperf_host/ide/src/base-ui/chart/pie/
DLitChartPieConfig.ts24 label: { property

1234