Home
last modified time | relevance | path

Searched refs:left (Results 1 – 25 of 94) sorted by relevance

1234

/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/data/
DRect.ets19 * @param left
26 left: number;
34 * checking is performed, so the caller must ensure that left <= right and
37 * @param left The X coordinate of the left side of the rectangle
42 constructor(left?: number, top?: number, right?: number, bottom?: number, r?: MyRect) {
43 this.left = left == undefined ? 0 : left
48 this.left = r.left;
61 return r == null ? null : new MyRect(r.left, r.top, r.right, r.bottom);
67 …return this.left == o.left && this.top == o.top && this.right == o.right && this.bottom == o.botto…
73 sb += this.left;
[all …]
/developtools/hiperf/src/
Dvirtual_thread.cpp64 std::size_t left {0}; in FindMapIndexByAddr() local
66 std::size_t mid = (right - left) / divisorNum + left; in FindMapIndexByAddr()
67 while (left < right) { in FindMapIndexByAddr()
70 mid = (right - left) / divisorNum + left; in FindMapIndexByAddr()
74 left = mid + 1; in FindMapIndexByAddr()
75 mid = (right - left) / divisorNum + left; in FindMapIndexByAddr()
79 … if (addr >= memMaps_[memMapsIndexs_[left]]->begin && addr < memMaps_[memMapsIndexs_[left]]->end) { in FindMapIndexByAddr()
80 if (left > 0) { in FindMapIndexByAddr()
81 memMaps_[memMapsIndexs_[left]]->prevMap = memMaps_[memMapsIndexs_[left - 1]]; in FindMapIndexByAddr()
83 return static_cast<int64_t>(memMapsIndexs_[left]); in FindMapIndexByAddr()
[all …]
Dreport.cpp560 void Report::OutputStdContentDiff(ReportEventConfigItem &left, ReportEventConfigItem &right) in OutputStdContentDiff() argument
563 HLOGD("first count %zu second count %zu", left.reportItems_.size(), right.reportItems_.size()); in OutputStdContentDiff()
564 ReportItemsConstIt it = left.reportItems_.begin(); in OutputStdContentDiff()
566 while (it != left.reportItems_.end()) { in OutputStdContentDiff()
626 auto left = configs_.begin(); in OutputStdDiff() local
627 while (left != configs_.end()) { in OutputStdDiff()
630 if (*left == *right) { in OutputStdDiff()
631 OutputStdStatistics(*left); in OutputStdDiff()
632 OutputStdHead(*left, true); in OutputStdDiff()
633 OutputStdContentDiff(*left, *right); in OutputStdDiff()
[all …]
/developtools/smartperf_host/ide/src/base-ui/modal/
DLitModal.ts333 srcLeft = clientRect.left;
392 … this.modalElement!.style.left = ev.clientX - srcClientX + srcLeft + clientRect.width / 2 + 'px';
395 this.modalElement!.style.left = clientRect.width / 2 + 'px';
397 … this.modalElement!.style.left = rootRect.width - clientRect.width + clientRect.width / 2 + 'px';
407 e.clientX > srcResizeRect.left - resizeWidth &&
408 e.clientX < srcResizeRect.left + resizeWidth &&
423 e.clientX > srcResizeRect.left - resizeWidth &&
424 e.clientX < srcResizeRect.left + resizeWidth &&
445 …} else if (e.clientX > srcResizeRect.left - resizeWidth && e.clientX < srcResizeRect.left + resize…
474 … this.modalElement!.style.left = srcResizeLeft + srcResizeWidth / 2 + offsetResizeX / 2 + 'px';
[all …]
/developtools/profiler/device/plugins/native_daemon/src/
Dvirtual_thread.cpp66 std::size_t left {0}; in FindMapByAddr() local
68 std::size_t mid = (right - left) / two + left; in FindMapByAddr()
69 while (left < right) { in FindMapByAddr()
72 mid = (right - left) / two + left; in FindMapByAddr()
76 left = mid + 1; in FindMapByAddr()
77 mid = (right - left) / two + left; in FindMapByAddr()
81 if (addr >= (*maps_)[left]->begin and addr < (*maps_)[left]->end) { in FindMapByAddr()
82 if (left > 0) { in FindMapByAddr()
83 (*maps_)[left]->prevMap = (*maps_)[left - 1]; in FindMapByAddr()
85 return (*maps_)[left]; in FindMapByAddr()
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/utils/
DFill.ets138 public fillRect(paint:RectPaint,left:number, top:number, right:number, bottom:number,
159 rectP.setStartPoint([left,top]);
160 rectP.setWidth(right-left);
172 …(gradientDirection == MyDirection.RIGHT? right: gradientDirection == MyDirection.LEFT ? left: left)
173 let leftResult:number = left;
176 …mber=(gradientDirection == MyDirection.RIGHT ? left : gradientDirection == MyDirection.LEFT? righ…
197 imagePaint.x=left;
199 imagePaint.setWidth(right-left)
260 let leftImage:number=(clipRect == null ? 0 : clipRect.left)
/developtools/ace_js2bundle/ace-loader/sample/lite/pages/detail/
Ddetail.hml4 <text style="left:140px;top:50px;width:300px;height:40px">common style</text>
8 style="left:390px;top:227px;width:30px;height:42px"
Ddetail.css2 left: 95px;
/developtools/ace_js2bundle/ace-loader/test/rich/common/css/
Dcommon.css9 padding-left: 40px;
21 margin-left: 60px;
/developtools/smartperf_host/ide/src/trace/component/trace/base/
DExtension.ts33 left?: number;
100 ev.pageX >= rect.left + (cut?.left ?? 0) &&
DRangeSelect.ts52 return this.rowsPaneEL!.containPoint(ev, { left: 248 });
56 return this.trace!.favoriteChartListEL!.containPoint(ev, { left: 248 });
113 left: 248,
220 let mouseX = ev.pageX - this.rowsEL!.getBoundingClientRect().left - 248;
262 let mouseX = ev.pageX - this.rowsPaneEL!.getBoundingClientRect().left - 248;
/developtools/ace_js2bundle/ace-loader/test/lite/testcase/pages/exteriorStyle/
DexteriorStyle.css68 margin-left: -8%;
77 left: 20%;
/developtools/profiler/host/smartperf/client/client_command/
Dsp_utils.cpp201 uint64_t left = curTopPkgStr.find_first_of("["); in GetTopPkgName() local
203 std::string topPkg = curTopPkgStr.substr(left + 1, right - left - 1); in GetTopPkgName()
219 uint64_t left = screenStr.find("activeMode"); in GetScreen() local
221 std::string screen = screenStr.substr(left, right - left); in GetScreen()
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/ability/
DTabPaneHistoryProcesses.ts166 let compareValues = (left: number, right: number) => {
168 return right - left;
170 return left - right;
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/charts/
DLineChart.ets107 …console.log("LineChart left:"+this.lineChartModel.left+", top:"+this.lineChartModel.top+", right:"…
164 left: number = 0;
194 this.left = this.minOffset + this.leftTextWidth;
198 this.lineData.mDisplayRect = new MyRect(this.left, this.top, this.right, this.bottom);
200 …this.xScale = (this.lineData.mDisplayRect.right - this.lineData.mDisplayRect.left) / (this.topAxis…
284 this.clipPath='M'+Utils.convertDpToPixel(rect.left)+' '+Utils.convertDpToPixel(0)
287 +'L'+Utils.convertDpToPixel(rect.left)+' '+Utils.convertDpToPixel(this.height)
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/pages/
DQuestion.ets48 .margin({ top: 10, left: 15, right: 15, bottom: 5 })
51 .margin({ left: 18, right: 18, bottom: 10 })
DReportDetail.ets88 .margin({ top: '10vp', left: '20vp' })
89 }.margin({ left: '4%' })
113 }.width('100%').margin({ left: '10vp' }).height('95')
114 }.margin({ left: '4%' })
DSettingsPage.ets31 Image($r('app.media.icon_language')).width('25vp').height('25vp').margin({ left: '2%' })
36 Image($r('app.media.icon_enter')).width('15vp').height('15vp').margin({ left: '15vp' })
DAppSelectPage.ets49 Image(appInfoItem.appIcon).width('40vp').height('40vp').margin({ left: '2%' })
61 }.margin({ left: '4%' }).height('100%').padding({ top: '20vp' })
DStartTestPage.ets95 Image($r('app.media.logo')).width('70vp').height('70vp').margin({ left: '2%' })
97 Image(this.selectAppIcon).width('70vp').height('70vp').margin({ left: '2%' })
118 … Image($r('app.media.icon_test_index')).width('25vp').height('25vp').margin({ left: '2%' })
144 … Image($r('app.media.icon_test_name')).width('25vp').height('25vp').margin({ left: '2%' })
307 Image(switchItem.switchSrc).width('25vp').height('25vp').margin({ left: '2%' })
350 … Text(Item.name).fontSize('18fp').fontColor($r("app.color.color_333")).margin({ left: 20 })
369 … Text(Item.name).fontSize('18fp').fontColor($r("app.color.color_333")).margin({ left: 20 })
DCPU0LineChartPage.ets65 .margin({ left: 5, top: 1 }) //文本显示
70 .margin({ left: 1,top: 1 }) //文本显示
/developtools/ace_js2bundle/ace-loader/sample/lite/pages/index/
Dindex.css13 left: 0px;
/developtools/hiperf/demo/js/entry/src/main/js/MainAbility/pages/second/
Dsecond.css6 left: 0px;
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/chart/interfaces/datasets/
DICandleDataSet.ets23 * Returns the space that is left out on the left and right side of each
/developtools/ace_js2bundle/ace-loader/test/lite/testcase/pages/sick/
Dsick.css33 margin-left: 130px;

1234