/ohos5.0/foundation/multimodalinput/input/tools/event_inject/src/ |
H A D | processing_finger_device.cpp | 58 touchPadCoordinates.yPos = posXYItem.yPos; in AnalysisTouchPadFingerDate() 71 int32_t yPos = 0; in AnalysisTouchPadFingerPressData() local 74 yPos = touchPadInputEvent.events[i].yPos; in AnalysisTouchPadFingerPressData() 81 SetPositionY(inputEventArray, FINGER_BLOCK_TIME, yPos); in AnalysisTouchPadFingerPressData() 88 SetEvAbsY(inputEventArray, FINGER_BLOCK_TIME, yPos); in AnalysisTouchPadFingerPressData() 97 int32_t yPos = 0; in AnalysisTouchPadFingerMoveData() local 100 yPos = touchPadInputEvent.events[i].yPos; in AnalysisTouchPadFingerMoveData() 105 SetPositionY(inputEventArray, FINGER_BLOCK_TIME, yPos); in AnalysisTouchPadFingerMoveData() 109 SetEvAbsY(inputEventArray, FINGER_BLOCK_TIME, yPos); in AnalysisTouchPadFingerMoveData()
|
H A D | processing_touch_screen_device.cpp | 75 touchScreenCoordinates.yPos = posXYItem.yPos; in AnalysisTouchScreenDate() 95 touchSingleEventData.yPos = item.yPos; in AnalysisSingleTouchScreenDate() 106 int32_t yPos = 0; in AnalysisTouchScreenPressData() local 109 yPos = touchScreenInputEvent.events[i].yPos; in AnalysisTouchScreenPressData() 113 SetPositionY(inputEventArray, 0, yPos); in AnalysisTouchScreenPressData() 124 int32_t yPos = 0; in AnalysisTouchScreenMoveData() local 127 yPos = touchScreenInputEvent.events[i].yPos; in AnalysisTouchScreenMoveData() 129 SetPositionY(inputEventArray, 0, yPos); in AnalysisTouchScreenMoveData() 165 SetPositionY(inputEventArray, 0, touchSingleEventData.yPos); in AnalysisTouchScreenPressData() 180 SetPositionY(inputEventArray, 0, touchSingleEventData.yPos); in AnalysisTouchScreenMoveData()
|
H A D | processing_pen_device.cpp | 62 SetEvAbsY(inputEventArray, 0, penEvent.yPos); in SetPenApproachPadEvent() 92 SetEvAbsY(inputEventArray, 0, penEvent.yPos); in SetPenSlidePadEvent() 168 penEvent.yPos = event.yPos; in AnalysisPenApproachPadEvent() 186 penEvent.yPos = event.yPos; in AnalysisPenSlidePadEvent() 209 penEvent.yPos = event.yPos; in AnalysisPenLeavePadEvent()
|
H A D | input_parse.cpp | 117 cJSON* yPos = cJSON_GetArrayItem(eventArray, 1); in ParseEvents() local 118 if (!cJSON_IsNumber(yPos)) { in ParseEvents() 122 pos.yPos = yPos->valueint; in ParseEvents() 143 GetJsonData(eventInfo, "yPos", event.yPos); in ParseEventsObj() 183 ss << "pos(" << xPos << "," << yPos << ")"; in ToString() 204 << ",yPos:" << yPos in ToString()
|
H A D | processing_mouse_device.cpp | 72 mouseEvent.yPos = item.yPos; in AnalysisMouseEvent() 111 SetRelY(inputEventArray, mouseEvent.blockTime, mouseEvent.yPos); in TransformMouseMoveEvent()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/linear_layout/ |
H A D | linear_layout_utils.cpp | 223 float yPos = 0.0f; in Layout() local 230 yPos += frameSize.Height(); in Layout() 231 yPos += space; in Layout() 260 float yPos = 0.0f; in LayoutCondition() local 273 yPos += blankSpace; in LayoutCondition() 277 yPos += blankSpace; in LayoutCondition() 284 yPos += blankSpace / 2; in LayoutCondition() 288 yPos += blankSpace; in LayoutCondition() 300 yPos += frameSize.Height(); in LayoutCondition() 303 yPos += layoutConditions.space; in LayoutCondition() [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/select_popup/ |
H A D | rosen_render_select_popup.cpp | 94 auto yPos = isTop ? GetOptionTop() : GetOptionBottom() - NormalizeToPx(GRADIENT_HEIGHT); in PaintGradient() local 95 gradientRect.SetOffset(Offset(GetOptionLeft() + interval, yPos)); in PaintGradient() 118 auto yPos = isTop ? GetOptionTop() : GetOptionBottom() - NormalizeToPx(GRADIENT_HEIGHT); in PaintGradient() local 119 gradientRect.SetOffset(Offset(GetOptionLeft() + interval, yPos)); in PaintGradient()
|
/ohos5.0/foundation/multimodalinput/input/tools/event_inject/include/ |
H A D | input_parse.h | 26 int32_t yPos { 0 }; 38 int32_t yPos { 0 };
|
H A D | processing_touch_screen_device.h | 28 int32_t yPos { 0 }; 36 int32_t yPos { 0 };
|
H A D | processing_finger_device.h | 27 int32_t yPos { 0 };
|
H A D | processing_mouse_device.h | 27 int32_t yPos { 0 };
|
H A D | processing_pen_device.h | 28 int32_t yPos { 0 };
|
/ohos5.0/foundation/arkui/ui_lite/test/uitest/test_ui_analog_clock/ |
H A D | ui_test_analog_clock.cpp | 145 int16_t yPos = clock_->GetY(); in OnClick() local 152 yPos -= grid_; in OnClick() 154 yPos += grid_; in OnClick() 156 clock_->SetPosition(xPos, yPos); in OnClick()
|
/ohos5.0/foundation/distributedhardware/distributed_screen/services/common/imageJpeg/src/ |
H A D | jpeg_image_processor.cpp | 151 if (item.xPos > screenWidth || item.yPos > screenHeight || in DecodeDamageData() 152 item.width > screenWidth - item.xPos || item.height > screenHeight - item.yPos) { in DecodeDamageData() 185 …uint8_t *yData = lastFrameIdx + static_cast<uint32_t>(configParam_.GetScreenWidth() * rect.yPos + … in ReplaceDamage2LastFrame() 187 … static_cast<uint32_t>(configParam_.GetScreenWidth() * (rect.yPos / TWO) + rect.xPos); in ReplaceDamage2LastFrame()
|
/ohos5.0/foundation/arkui/ui_lite/test/uitest/test_button/ |
H A D | ui_test_button.cpp | 455 int16_t yPos = uiView_->GetY(); in OnClick() local 462 yPos = yPos - grid_; in OnClick() 464 yPos = yPos + grid_; in OnClick() 467 uiView_->SetY(yPos); in OnClick()
|
/ohos5.0/foundation/arkui/ace_engine/test/mock/core/rosen/ |
H A D | testing_camera.h | 35 virtual void SetCameraPos(float xPos, float yPos, float zPos) {} in SetCameraPos() argument
|
/ohos5.0/foundation/arkui/ui_lite/test/uitest/test_vector_font/ |
H A D | ui_test_vector_font.h | 84 int16_t yPos = 5; // 5 : y initial position variable
|
/ohos5.0/drivers/peripheral/camera/vdi_base/common/adapter/platform/v4l2/src/driver_adapter/main_test/ |
H A D | v4l2_main.cpp | 235 int yPos, uPos, vPos; in ProcessImage() local 237 yPos = 0; in ProcessImage() 247 y0 = in[yPos]; in ProcessImage() 256 yPos += 2; // 2:y position in ProcessImage() 264 yPos = 0; in ProcessImage()
|
/ohos5.0/foundation/distributedhardware/distributed_screen/services/common/databuffer/include/ |
H A D | data_buffer.h | 29 int32_t yPos; member
|
/ohos5.0/drivers/peripheral/camera/test/ut/usb_camera/ |
H A D | test_camera_base.cpp | 314 int yPos, uPos, vPos; in ProcessImage() local 317 yPos = 0; // 0:Pixel initial value in ProcessImage() 329 y0 = in[yPos]; in ProcessImage() 340 yPos += yPosIncrement; in ProcessImage() 348 yPos = 0; // 0:Pixel initial value in ProcessImage()
|
/ohos5.0/drivers/peripheral/camera/test/ut/v4l2/ |
H A D | test_camera_base.cpp | 303 int yPos, uPos, vPos; in ProcessImage() local 306 yPos = 0; // 0:Pixel initial value in ProcessImage() 318 y0 = in[yPos]; in ProcessImage() 329 yPos += yPosIncrement; in ProcessImage() 337 yPos = 0; // 0:Pixel initial value in ProcessImage()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/button/ |
H A D | button_pattern.cpp | 430 void ButtonPattern::SetButtonPress(double xPos, double yPos) in SetButtonPress() argument 446 auto y = Dimension(yPos, DimensionUnit::VP); in SetButtonPress() 447 info.SetLocalLocation(Offset(xPos, yPos)); in SetButtonPress()
|
H A D | button_model_ng.h | 82 static void TriggerClick(FrameNode* frameNode, double xPos, double yPos);
|
H A D | button_model_ng.cpp | 565 void ButtonModelNG::TriggerClick(FrameNode* frameNode, double xPos, double yPos) in TriggerClick() argument 575 pattern->SetButtonPress(xPos, yPos); in TriggerClick()
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/ |
H A D | ts-basic-components-button.md | 380 type ButtonTriggerClickCallback = (xPos: number, yPos: number) => void 393 | yPos | number | 是 | 点击位置y的坐标。 |
|