Home
last modified time | relevance | path

Searched refs:entries (Results 1 – 25 of 105) sorted by relevance

12345

/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/components/
DLegend.ets49 * The legend entries array
54 …* Entries that will be appended to the end of the auto calculated entries after calculating the le…
96 * the space between the legend entries on a horizontal axis, default 6f
101 * the space between the legend entries on a vertical axis, default 5f
106 * the space between the legend entries on a vertical axis, default 2f
125 constructor(entries ?: LegendEntry[]){
130 if (entries != null && entries != undefined) {
131 if(entries.length == 0){
132 throw new Error("entries array is NULL");
134 this.mEntries.concat(entries);
[all …]
/developtools/packing_tool/adapter/ohos/
DUncompress.java215 Enumeration<? extends ZipEntry> entries = appFile.entries(); in uncompressHapAndHspFromAppPath() local
216 while (entries.hasMoreElements()) { in uncompressHapAndHspFromAppPath()
217 entry = entries.nextElement(); in uncompressHapAndHspFromAppPath()
246 Enumeration<? extends ZipEntry> entries = appFile.entries(); in uncompressAllAppByPath() local
247 while (entries.hasMoreElements()) { in uncompressAllAppByPath()
248 entry = entries.nextElement(); in uncompressAllAppByPath()
532 … for (Enumeration<? extends ZipEntry> entries = zipFile.entries(); entries.hasMoreElements(); ) { in unzipFromFile()
534 ZipEntry entry = entries.nextElement(); in unzipFromFile()
632 … for (Enumeration<? extends ZipEntry> entries = zipFile.entries(); entries.hasMoreElements(); ) { in dataTransferAllFiles()
634 ZipEntry entry = entries.nextElement(); in dataTransferAllFiles()
[all …]
DFileUtils.java213 Enumeration<? extends ZipEntry> entries = zipFile.entries(); in unzip() local
215 while (entries.hasMoreElements()) { in unzip()
217 ZipEntry entry = entries.nextElement(); in unzip()
436 final Enumeration<? extends ZipEntry> entries = zipFile.entries(); in getProfileJson() local
437 while (entries.hasMoreElements()) { in getProfileJson()
438 final ZipEntry entry = entries.nextElement(); in getProfileJson()
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/data/
DDataSet.ets21 * The DataSet class represents one group or type of entries (Entry) in the
30 * the entries that this DataSet represents / holds together
56 * Creates a new DataSet object with the given values (entries) it represents. Also, a
60 * @param entries
63 constructor(entries : JArrayList<T>, label : string) {
65 this.mEntries = entries;
145 * Returns the array of entries that this DataSet represents.
165 * Sets the array of entries that this DataSet represents, and calls notifyDataSetChanged()
169 public setEntries(entries : JArrayList<T>) : void {
170 this.mEntries = entries;
[all …]
DCandleDataSet.ets45 * the space between the candle entries, default 0.1f (10%)
90 let entries = new JArrayList<CandleEntry>();
92 entries.add(this.mEntries.get(i).copy());
94 let copied = new CandleDataSet(entries, this.getLabel());
271 * Sets shadow color for all entries
DScatterDataSet.ets61 let entries = new JArrayList<EntryOhos>();
63 entries.add(this.mEntries.get(i).copy());
65 let copied = new ScatterDataSet(entries, this.getLabel());
DRadarDataSet.ets114 let entries = new JArrayList<RadarEntry>();
116 entries.add(this.mEntries.get(i).copy());
118 let copied = new RadarDataSet(entries, this.getLabel());
DEntryOhos.ets64 * Compares value, xIndex and data of the entries. Returns true if entries
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/highlight/
DChartHighlighter.ets131 * Returns a list of Highlight objects representing the entries closest to the given xVal.
176 var entries : JArrayList<EntryOhos> = set.getEntriesForXValue(xVal);
177 if (entries.size() == 0) {
178 // Try to find closest x-value and take all entries for that x-value
183 entries = set.getEntriesForXValue(closest.getX());
187 if (entries.size() == 0)
190 for (let e of entries.dataSouce) {
/developtools/integration_verification/tools/fotff/pkg/gitee_common/
Dsteps_gitee_test.go35 entries, _ := os.ReadDir(m.Workspace)
36 for _, e := range entries {
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/
DSheetUtils.ts25 new ResizeObserver((entries) => {
43 new ResizeObserver((entries) => {
/developtools/profiler/host/smartperf/ide/src/trace/component/
DSpFlags.ts247 for (const [key, value] of Object.entries(config.addInfo)) {
268 for (const [key, value] of Object.entries(config.addInfo)) {
295 for (const [key, value] of Object.entries(configItem.addInfo)) {
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/
DSheetUtils.ts25 new ResizeObserver((entries) => {
/developtools/smartperf_host/ide/src/trace/component/
DSpFlags.ts268 for (const [key, value] of Object.entries(config.addInfo)) {
289 for (const [key, value] of Object.entries(config.addInfo)) {
330 for (const [key, value] of Object.entries(configItem.addInfo)) {
/developtools/smartperf_host/trace_streamer/test/resource/
Dut_bytrace_input_thread.txt4 # entries-in-buffer/entries-written: 1373949/1373949 #P:4
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/hiperf/
DTabPerfSampleList.ts135 new ResizeObserver((entries) => {
176 new ResizeObserver((entries) => {
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/hiperf/
DTabPerfSampleList.ts135 new ResizeObserver((entries) => {
176 new ResizeObserver((entries) => {
/developtools/profiler/device/plugins/native_daemon/src/
Dutilities.cpp411 std::vector<std::string> entries = GetEntriesInDir(basePath); in GetSubDirs() local
413 for (std::size_t index = 0; index < entries.size(); ++index) { in GetSubDirs()
414 if (IsDir(basePath + "/" + entries[index])) { in GetSubDirs()
415 result.push_back(std::move(entries[index])); in GetSubDirs()
/developtools/profiler/device/plugins/ftrace_plugin/include/
Dftrace_common_type.h106 uint64_t entries = 0; member
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/file-system/
DTabPaneVMEvents.ts64 new ResizeObserver((entries) => {
208 let typeEntry = Object.entries(VM_TYPE_MAP).find((entry) => {
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/file-system/
DTabPaneVMEvents.ts64 new ResizeObserver((entries) => {
208 let typeEntry = Object.entries(VM_TYPE_MAP).find((entry) => {
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/renderer/
DLegendRenderer.ets224 var entries : LegendEntry[] = this.mLegend.getEntries();
234 // space between the entries �ѵ����֮�����µĿռ�
319 for (var i : number = 0, count = entries.length; i < count; i++) {
325 var e : LegendEntry = entries[i];
419 for (var i : number = 0; i < entries.length; i++) {
421 var e : LegendEntry = entries[i];
/developtools/profiler/host/smartperf/trace_streamer/src/protos/types/plugins/ftrace_data/default/
Dtrace_plugin_result.proto66 uint64 entries = 2; field
/developtools/smartperf_host/trace_streamer/src/protos/types/plugins/ftrace_data/default/
Dtrace_plugin_result.proto66 uint64 entries = 2; field
/developtools/profiler/host/smartperf/trace_streamer/src/protos/types/plugins/ftrace_data/
Dtrace_plugin_result.proto66 uint64 entries = 2; field

12345