/developtools/smartperf_host/ide/src/trace/component/trace/sheet/fps/ |
D | TabPaneFps.ts | 44 let last = fpsResult[fpsResult.length - 1]; 45 last.timeStr = Utils.getTimeString(last.startNS); 46 this.fpsTbl!.recycleDataSource = [last];
|
/developtools/smartperf_host/ide/src/trace/database/data-trafic/ |
D | SliceReceiver.ts | 48 let last = arr[arr.length - 1]; 50 if (last && (last.dur === -1 || last.dur === null || last.dur === undefined)) { 52 last.dur = slice.startTime - last.startTime; 82 let last = arr[arr.length - 1]; //@ts-ignore 83 if (last && (last.dur === -1 || last.dur === null || last.dur === undefined)) { 86 last.dur = totalNs - last.startTime;
|
D | NativeMemoryDataReceiver.ts | 129 let last = data.dataList[data.dataList.length - 1]; 131 last.dur = item.startTime! - last.startTime!; 132 if (last.dur > filterLevel || finish) { 136 item.density = last.density! + tempDensity + 1; 138 item.heapSize = last.heapSize! + tempSize + ne.heapSize; 141 item.density = last.density! + tempDensity - 1; 143 item.heapSize = last.heapSize! + tempSize - ne.heapSize; 187 let last = calls![calls!.length - 1]; 189 data.heapSize += hook.applySize - last.applySize - (hook.releaseSize - last.releaseSize); 191 data.density += hook.applyCount - last.applyCount - (hook.releaseCount - last.releaseCount); [all …]
|
/developtools/smartperf_host/ide/src/trace/database/logic-worker/ |
D | ProcedureLogicWorkerCpuState.ts | 87 let last = arr[i - 1]; 89 if (current.startTs > last.endTs) { 91 cs.startTs = last.endTs; 93 cs.dur = current.startTs - last.endTs;
|
/developtools/smartperf_host/ide/src/base-ui/chart/pagenation/ |
D | PageNation.ts | 22 last: unknown; property in PageNation 44 this.last = null; 175 this.last = this.origin.cloneNode(true); // @ts-ignore 176 this.last.innerText = '>>'; // @ts-ignore 177 this.last.name = 'last'; // @ts-ignore 178 this.last.style.padding = '5px'; // @ts-ignore 179 this.last.style.margin = '0px 5px'; // @ts-ignore 180 this.element.appendChild(this.last); 212 this.setElementStyles(this.last, disable); 215 this.setElementStyles(this.last, enable);
|
/developtools/hdc/hdc_rust/src/ |
D | utils.rs | 95 let head = format!("{}:{}", file!().split('/').last().unwrap(), line!()); 113 let head = format!("{}:{}", file!().split('/').last().unwrap(), line!()); 131 let head = format!("{}:{}", file!().split('/').last().unwrap(), line!()); 149 let head = format!("{}:{}", file!().split('/').last().unwrap(), line!()); 167 let head = format!("{}:{}", file!().split('/').last().unwrap(), line!()); 185 let head = format!("{}:{}", file!().split('/').last().unwrap(), line!());
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/profiler/item/ |
D | Power.ets | 86 console.error('last CurrentNow-->push' + powerValue); 92 console.error('last VoltageNow-->push' + powerValue); 104 console.error('last CurrentNow-->pop' + lastValue); 107 console.error('last CurrentNowAVG-->' + avgCurrentNum); 117 console.error('last VoltageNow-->pop' + lastValue); 120 console.error('last VoltageNowAVG-->' + avgCurrentNum);
|
/developtools/profiler/device/plugins/native_daemon/test/unittest/common/native/ |
D | hashlist_test.cpp | 106 auto last = hashList.end(); variable 107 last--; 108 EXPECT_EQ(*last, count); 120 const auto last = hashList.cend(); variable 121 auto temp = last; 135 auto last = hashList.rbegin(); variable 136 EXPECT_EQ(*last, count); 148 const auto last = hashList.crbegin(); variable 149 EXPECT_EQ(*last, count);
|
/developtools/hiperf/test/unittest/common/native/ |
D | hashlist_test.cpp | 106 auto last = hashList.end(); variable 107 last--; 108 EXPECT_EQ(*last, count); 120 const auto last = hashList.cend(); variable 121 auto temp = last; 135 auto last = hashList.rbegin(); variable 136 EXPECT_EQ(*last, count); 148 const auto last = hashList.crbegin(); variable 149 EXPECT_EQ(*last, count);
|
/developtools/profiler/device/plugins/ftrace_plugin/src/ |
D | string_utils.cpp | 47 auto last = str.find_last_not_of(blanks); in Strip() local 48 if (last == std::string::npos) { in Strip() 51 return str.substr(first, last - first + 1); in Strip()
|
/developtools/smartperf_host/trace_streamer/src/base/ |
D | string_help.cpp | 100 auto last = str.find_last_not_of(blanks); in Strip() local 101 if (last == std::string::npos) { in Strip() 104 return str.substr(first, last - first + 1); in Strip()
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/listener/ |
D | ChartTouchListener.ets | 39 * the last touch gesture that has been performed 58 * the last highlighted object (via touch) 98 * Sets the last value that was highlighted via touch. 116 * Returns the last gesture that has been performed on the chart.
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/highlight/ |
D | Highlight.ets | 63 * the x-position (pixels) on which this highlight object was last drawn 68 * the y-position (pixels) on which this highlight object was last drawn 178 * Sets the x- and y-position (pixels) where this highlight was last drawn. 189 * Returns the x-position in pixels where this highlight object was last drawn. 198 * Returns the y-position in pixels where this highlight object was last drawn.
|
/developtools/ace_js2bundle/ace-loader/src/ |
D | genBin-plugin.js | 36 const last = '\n' + '})(this.__appProto__);' + '\n' + '})' constant 62 newContent = forward + newContent + last
|
/developtools/smartperf_host/trace_streamer/doc/ |
D | des_binder.md | 4 the last binder msg which reply the calling one. 31 ### binder last TAG A needReply, this is TAG B needReply!!!
|
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/clock/ |
D | TabPaneClockCounter.ts | 125 selectCounterData.last = `${list[list.length - 1].value}`; 126 …selectCounterData.delta = `${parseInt(selectCounterData.last) - parseInt(selectCounterData.first)}…
|
/developtools/smartperf_host/ide/src/trace/database/ui-worker/ |
D | ProcedureWorkerHeap.ts | 110 let last = heapList[i - 1]; 111 if (last.frame?.x !== it.frame!.x || last.frame.width !== it.frame!.width) {
|
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/process/ |
D | TabPaneCounter.ts | 155 counterData.last = `${list[list.length - 1].value}`; 156 counterData.delta = `${parseInt(counterData.last) - parseInt(counterData.first)}`;
|
/developtools/profiler/device/plugins/native_daemon/include/ |
D | hashlistpp.h | 505 std::size_t last {numItem_ - 1}; 506 for (std::size_t index = 0; index < last;) { 510 pData_[last].link_.next_ = &freeHead_; 533 std::size_t last {numItem_ - 1}; in reserve() 534 for (std::size_t index = 0; index < last;) { in reserve() 538 pData_[last].link_.next_ = &freeHead_; in reserve() 815 auto HashList<Key, Val>::erase(const Iterator first, const Iterator last) 819 if (first <= last) { 821 while (curPos < last) { 824 return last;
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/renderer/ |
D | AxisRenderer.ets | 222 let last = interval == 0.0 ? 0.0 : Utils.nextUp(Math.floor(yMax / interval) * interval); 227 if (interval != 0.0 && last != first) { 228 for (f = first; f <= last; f += interval) { 231 } else if (last == first && n == 0) {
|
D | YAxisRendererRadarChart.ets | 97 … let last: number = interval == 0.0 ? 0.0 : Utils.nextUp(Math.floor(yMax / interval) * interval); 103 for (f = first; f <= last; f += interval) {
|
/developtools/hiperf/include/ |
D | hashlist.h | 205 Iterator erase(const Iterator first, const Iterator last); 705 std::size_t last {numItem_ - 1}; 706 for (std::size_t index = 0; index < last;) { 710 pData_[last].link_.next_ = &freeHead_; 733 std::size_t last {numItem_ - 1}; in reserve() 734 for (std::size_t index = 0; index < last;) { in reserve() 738 pData_[last].link_.next_ = &freeHead_; in reserve() 1015 auto HashList<Key, Val>::erase(const Iterator first, const Iterator last) 1019 if (first <= last) { 1021 while (curPos < last) { [all …]
|
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/components/ |
D | XAxis.ets | 57 * if set to true, the chart will avoid that the first and last label entry 107 * if set to true, the chart will avoid that the first and last label entry
|
/developtools/ace_ets2bundle/compiler/ |
D | .eslintrc | 44 "eol-last": 2,
|
/developtools/hdc/hdc_rust/src/common/ |
D | hdctransfer.rs | 181 let last = transfer.local_path.rfind(Base::get_path_sep()); in check_local_path() localVariable 182 match last { in check_local_path()
|