Home
last modified time | relevance | path

Searched refs:currentX (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/base/msdp/device_status/tools/vdev/src/
H A Dvirtual_mouse.cpp261 int32_t currentX = monitor->GetX(); in MoveProcess() local
263 int32_t targetX = currentX + dx; in MoveProcess()
268 (currentX < g_screenWidth && currentX > 0) && (currentY < g_screenHeight && currentY > 0)) { in MoveProcess()
271 currentX = monitor->GetX(); in MoveProcess()
273 if (targetX == currentX && targetY == currentY) { in MoveProcess()
276 Move(targetX - currentX, targetY - currentY); in MoveProcess()
/ohos5.0/foundation/multimodalinput/input/service/event_resample/include/
H A Devent_resample.h228 float currentX = GetHistory(0)->GetPointerById(id).coordX; in RecentCoordinatesAreIdentical() local
232 if (currentX == previousX && currentY == previousY) { in RecentCoordinatesAreIdentical()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-custom-component-layout.md167 let currentX = 0;
179 child.layout({ x: currentX, y: 0 })
181 currentX += child.measureResult.width + margin.start + margin.end;
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/dialog/source/
H A Ddialog.ets310 let currentX: number = 0;
314 child.layout({ x: currentX, y: currentY });
589 let currentX: number = 0;
593 child.layout({ x: currentX, y: currentY });
934 let currentX: number = 0;
938 child.layout({ x: currentX, y: currentY });
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-custom-component-layout.md374 let currentX = 0;
386 child.layout({ x: currentX, y: 0 })
388 currentX += child.measureResult.width + margin.start + margin.end;
/ohos5.0/foundation/multimodalinput/input/service/touch_event_normalize/src/
H A Dtouchpad_transform_processor.cpp705 auto currentX = libinput_event_touchpad_get_x(event); in CanAddToPointerMaps() local
707 pointerMaps[seatSlot] = {currentX, currentY}; in CanAddToPointerMaps()
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/dialog/interfaces/
H A Ddialog.js743 let currentX = 0; variable
747 child.layout({ x: currentX, y: currentY });
1444 let currentX = 0; variable
1448 child.layout({ x: currentX, y: currentY });
2435 let currentX = 0; variable
2439 child.layout({ x: currentX, y: currentY });
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/subheader/source/
H A Dsubheader.ets1176 let currentX: number = 0;
1180 child.layout({ x: currentX, y: currentY });
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/swiper/
H A Drender_swiper.cpp2053 double currentX = swiperWidth_ - stableOffset; in UpdateIndicatorPosition() local
2054 position.SetX(currentX); in UpdateIndicatorPosition()