Home
last modified time | relevance | path

Searched refs:label (Results 1 – 25 of 98) 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/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/components/
DLimitLine.ets37 /** the style of the label text */
40 /** label string that is drawn next to the limit line */
46 /** indicates the position of the LimitLine label */
49 constructor(limit: number, label?: string) {
52 this.mLabel = label;
163 * Sets the position of the LimitLine value label (either on the right or on
173 * Returns the position of the LimitLine label (value).
182 * Sets the label that is drawn next to the limit line. Provide "" if no
183 * label is required.
185 * @param label
[all …]
DLegendEntry.ets22 * @param label The legend entry text. A `null` label will start a group.
29 constructor(label ?: string, form ?: LegendForm, formSize ?: number, formLineWidth ?: number,
31 // if (label && form && formSize && formLineWidth && formLineDashEffect && formColor) {
32 this.label = label;
43 * A `null` label will start a group.
45 public label:string;
DLegend.ets108 * actual label/text
170 var label:string= entry.label;
171 if (label == null) continue;
173 var length:number =Utils.calcTextWidth(p, label);
193 var label:string = entry.label;
194 if (label == null) continue;
196 var length:number = Utils.calcTextHeight(p, label);
226 entry.label = labels[i];
242 * * A null label will start a group.
473 * returns the space between the form and the actual label/text
[all …]
DYAxis.ets44 * indicates if the bottom y-label entry is drawn or not
49 * indicates if the top y-label entry is drawn or not
99 * the horizontal offset of the y-label
187 * returns the horizontal offset of the y-label
194 * sets the horizontal offset of the y-label
203 * returns true if drawing the top y-axis label entry is enabled
212 * returns true if drawing the bottom y-axis label entry is enabled
221 * set this to true to enable drawing the top y-label entry. Disabling this can be helpful
222 * when the top y-label and
223 * 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/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/renderer/
DLegendRenderer.ets125 var label : string;
128 label = labelIndex < sLabels.length ? sLabels[labelIndex] : null;
130 label = null;
134 label,
144 // add the legend description label
159 var label : string;
163 label = null;
164 } else { // add label to the last entry
165 label = data.getDataSetByIndex(i).getLabel();
169 label,
[all …]
DXAxisRenderer.ets211 …let label = this.mXAxis.getValueFormatter().getFormattedValue(this.mXAxis.mEntries[i / 2], this.mX…
217 let width = Utils.calcTextWidth(this.mAxisLabelPaint, label);
226 let width = Utils.calcTextWidth(this.mAxisLabelPaint, label);
231 …labelPaint.push(this.drawLabel(label, this.getXRelativeValue(x), pos, anchor, labelRotationAngleDe…
234 …let label = this.mXAxis.getValueFormatter().getFormattedValue(this.mXAxis.mEntries[i / 2], this.mX…
235 …labelPaint.push(this.drawLabel(label, this.getXRelativeValue(x), pos, anchor, labelRotationAngleDe…
377 let label = limitLine.getLabel();
379 // if drawing the limit-value label is enabled
380 if (label != null && label.length > 0 ){
391 textPaint.setText(label);
[all …]
/developtools/profiler/host/smartperf/ide/src/base-ui/chart/column/
DLitChartColumn.ts49 label: string; property
210 label: `${getProbablyTime(maxValue - valGap * i)}`,
262 label: `${getProbablyTime(maxValue - valGap * index)} `,
335 c.fillText(it.label, this.offset!.x! - c.measureText(it.label).width - 2, it.y + 11);
337 c.fillText(it.label, this.offset!.x! - c.measureText(it.label).width - 2, it.y + 4);
381 if (this.litChartColumnCfg?.label) {
385 …this.litChartColumnCfg!.label!.content ? this.litChartColumnCfg!.label!.content(it.obj) : it.yLabe…
DLitChartColumnConfig.ts25 label: property
/developtools/smartperf_host/ide/src/base-ui/chart/column/
DLitChartColumn.ts49 label: string; property
210 label: `${getProbablyTime(maxValue - valGap * i)}`,
262 label: `${getProbablyTime(maxValue - valGap * index)} `,
335 c.fillText(it.label, this.offset!.x! - c.measureText(it.label).width - 2, it.y + 11);
337 c.fillText(it.label, this.offset!.x! - c.measureText(it.label).width - 2, it.y + 4);
381 if (this.litChartColumnCfg?.label) {
385 …this.litChartColumnCfg!.label!.content ? this.litChartColumnCfg!.label!.content(it.obj) : it.yLabe…
DLitChartColumnConfig.ts25 label: property
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/gpu/
DTabPaneGpuClickSelect.ts35 … let label = this.gpuTbl!.shadowRoot!.querySelector('.thead')?.firstChild?.firstChild?.firstChild;
36 if (label) {
37 …(label as HTMLLabelElement).innerHTML = gpu.type === 'total' ? 'Module / Category' : 'Window / Mod…
DTabPaneGpuClickSelectComparison.ts68 …let label = this.gpuComparisonTbl!.shadowRoot!.querySelector('.thead')?.firstChild?.firstChild?.fi…
69 if (label) {
70 …(label as HTMLLabelElement).innerHTML = type === 'total' ? 'Module / Category' : 'Window / Module …
/developtools/profiler/host/smartperf/ide/src/base-ui/chart/pie/
DLitChartPieConfig.ts23 label: { property
/developtools/smartperf_host/ide/src/base-ui/chart/pie/
DLitChartPieConfig.ts24 label: { property
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/data/
DBarLineScatterCandleBubbleDataSet.ets32 constructor(yVals: JArrayList<T>, label: string) {
33 super(yVals, label);
/developtools/packing_tool/
DREADME_zh.md316 | label | String | 返回入口组件的label,如果没有入口组件,则返回第一个组件的label信息 | NA |
348 | appName | String | 标识显示在桌面上的ability的label
349 | appNameEN | String | 标识显示在桌面上的ability的label
356 | label | String | 标识应用的label
410 | label | String | 标识ability对用户显示的名称 | NA …
497 | label | String | 标识ShortCut的标签信息 | NA …
561 | label | String | 标识extensionAbility对用户显示的名称 | stage模…
669 | label | String | 标识DefPermission的标签 | NA |
684 | label | String | 标识DefPermission的标签 …
696 | label | String | 标识DefPermissionGroup的标签 | NA |

1234