| /developtools/packing_tool/adapter/ohos/ |
| D | Shortcut.java | 47 private HashMap<String, String> labels = new HashMap<>(); field in Shortcut 50 return labels; in getLabels() 53 public void setLabels(HashMap<String, String> labels) { in setLabels() argument 54 this.labels = labels; in setLabels()
|
| D | DefinePermission.java | 62 private HashMap<String, String> labels = new HashMap<>(); field in DefinePermission 73 return labels; in getLabels() 76 public void setLabels(HashMap<String, String> labels) { in setLabels() argument 77 this.labels = labels; in setLabels()
|
| D | DefPermission.java | 57 private HashMap<String, String> labels = new HashMap<>(); field in DefPermission 70 return labels; in getLabels() 73 public void setLabels(HashMap<String, String> labels) { in setLabels() argument 74 this.labels = labels; in setLabels()
|
| D | ModuleShortcut.java | 37 private HashMap<String, String> labels = new HashMap<>(); field in ModuleShortcut 66 return labels; in getLabels() 69 public void setLabels(HashMap<String, String> labels) { in setLabels() argument 70 this.labels = labels; in setLabels()
|
| D | ModuleAbilityInfo.java | 95 private HashMap<String, String> labels = new HashMap<>(); field in ModuleAbilityInfo 97 public void setLabels(HashMap<String, String> labels) { in setLabels() argument 98 this.labels = labels; in setLabels() 110 return labels; in getLabels()
|
| D | ExtensionAbilityInfo.java | 93 private HashMap<String, String> labels = new HashMap<>(); field in ExtensionAbilityInfo 96 return labels; in getLabels() 107 public void setLabels(HashMap<String, String> labels) { in setLabels() argument 108 this.labels = labels; in setLabels()
|
| D | ModuleAppInfo.java | 138 private HashMap<String, String> labels = new HashMap<>(); field in ModuleAppInfo 144 public void setLabels(HashMap<String, String> labels) { in setLabels() argument 145 this.labels = labels; in setLabels() 162 return labels; in getLabels()
|
| D | AppInfo.java | 127 private HashMap<String, String> labels = new HashMap<>(); field in AppInfo 218 public void setLabels(HashMap<String, String> labels) { in setLabels() argument 219 this.labels = labels; in setLabels() 223 return labels; in getLabels()
|
| D | AbilityInfo.java | 201 private HashMap<String, String> labels = new HashMap<>(); field in AbilityInfo 224 public void setLabels(HashMap<String, String> labels) { in setLabels() argument 225 this.labels = labels; in setLabels() 229 return labels; in getLabels()
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/components/ |
| D | XAxis.ets | 20 * Class representing the x-axis labels settings. Only use the setter methods to 29 * width of the x-axis labels in pixels - this is automatically 35 * height of the x-axis labels in pixels - this is automatically 41 * width of the (rotated) x-axis labels in pixels - this is automatically 47 * height of the (rotated) x-axis labels in pixels - this is automatically 53 * This is the angle for drawing the X axis labels (in degrees) 64 * the position of the x-labels relative to the chart 76 * returns the position of the x-labels 83 * sets the position of the x-labels 92 * returns the angle for drawing the X axis labels (in degrees) [all …]
|
| D | ComponentBase.ets | 39 * the typeface used for the labels 44 * the text size of the labels 49 * the text color to use for the labels 60 * labels. This offset is applied before and after the label. 69 * Sets the used x-axis offset for the labels on this axis. 78 * Returns the used offset on the x-axis for drawing the axis labels. This 88 * Sets the used y-axis offset for the labels on this axis. For the legend, 99 * returns the Typeface used for the labels, returns null if none is set 108 * sets a specific Typeface for the labels 133 * returns the text size that is currently set for the labels, in pixels [all …]
|
| D | AxisBase.ets | 25 * Base-class of all axes (previously called labels). 44 * axis label entries only used for centered labels 69 * When true, axis labels are controlled by the `granularity` property. 77 * if true, the set number of y-labels will be forced 92 * flag that indicates of the labels of this axis should be drawn or not 162 * The minumum number of labels on the axis 169 * The minumum number of labels on the axis 171 public setAxisMinLabels(labels: number): void { 172 if (labels > 0) 173 this.mAxisMinLabels = labels; [all …]
|
| D | Legend.ets | 60 * Are the legend labels/colors a custom value or auto calculated? If false, 151 * returns the maximum length in pixels across all legend labels + formsize 183 * returns the maximum height in pixels across all legend labels 215 …public setExtra(colors ?: number[], labels ?: string[], entries ?: JArrayList<LegendEntry>) : void… 216 if (entries && !colors && !labels) { 223 for (var i : number = 0; i < Math.min(colors.length, labels.length); i++) { 226 entry.label = labels[i]; 642 // grouped forms have null labels 706 // add the spacing appropriate for stacked labels/forms 710 // grouped forms have null labels [all …]
|
| D | YAxis.ets | 22 * Class representing the y-axis labels settings and its entries. Only use the setter methods to 94 * the position of the y-labels relative to the chart 171 * returns the position of the y-labels 178 * sets the position of the y-labels
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/data/ |
| D | RadarData.ets | 34 * Sets the labels that should be drawn around the RadarChart at the end of each web line. 36 * @param labels 38 public setLabels(labels : JArrayList<string>) : void { 39 this.mLabels = labels;
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/renderer/ |
| D | AxisRenderer.ets | 81 * Returns the Paint object used for drawing the axis (labels). 128 // calculate the starting and entry point of the y-labels (depending on 153 * Sets up the axis values. Computes the desired number of labels between the two given extremes. 275 * Draws the axis labels to the screen.
|
| D | LegendRenderer.ets | 47 * paint for the legend labels 76 * Returns the Paint object used for drawing the Legend labels. 97 * Prepares the legend and calculates all needed forms, labels and colors. 107 // loop for building up the colors and labels used in the legend 344 var isStacked : boolean = e.label == null; // grouped forms have null labels
|
| D | YAxisRenderer.ets | 47 * draws the y-axis labels to the screen 113 * draws the y-labels on the specified x-position 256 // only fill y values, x values are not needed for y-labels
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/formatter/ |
| D | IAxisValueFormatter.ets | 19 * axis labels before they are being drawn.
|
| D | IValueFormatter.ets | 30 * Called when a value (from labels inside the chart) is formatted
|
| /developtools/bytrace/ |
| D | README.md | 14 … want to view (run the **bytrace -l** command to query all the supported labels) and run the corre… 56 - Run the following command to query supported labels:
|
| /developtools/packing_tool/ |
| D | README_zh.md | 363 | labels | HashMap\<String, String> | 标识多语言应用程序AppJson的标签。 | NA | 439 | labels | HashMap\<String, String> | 标识多语言下ability对用户显示的名称 | NA … 500 | labels | HashMap\<String, String> | 标识多语言下ShortCut对用户显示的名称 | NA | 573 | labels | HashMap\<String, String> | 标识多语言下extensionAbility对用户显示的名称 | NA … 672 | labels | HashMap\<String, String> | 标识多语言应用程序DefPermission的标签 | NA | 687 | labels | HashMap\<String, String> | 标识多语言应用程序DefPermission的标签 | NA…
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/interfaces/datasets/ |
| D | IBarDataSet.ets | 75 * Returns the labels used for the different value-stacks in the legend.
|
| D | IDataSet.ets | 344 * Sets the color the value-labels of this DataSet should have. 358 * Sets a Typeface for the value-labels of this DataSet. 365 * Sets the text-size of the value-labels of this DataSet in dp.
|
| /developtools/ace_ets2bundle/compiler/ |
| D | .eslintrc | 59 "no-labels": 2,
|