/foundation/arkui/ace_engine/adapter/ohos/entrance/ |
H A D | ace_extra_input_data.cpp | 65 const auto& screenLocation = point.GetScreenLocation();
in InsertInterpolatePoints() local 67 location.GetX(), location.GetY(), screenLocation.GetX(), screenLocation.GetY(), info.GetTimeStamp());
in InsertInterpolatePoints()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/functions/ |
H A D | js_gesture_function.cpp | 107 const OHOS::Ace::Offset& screenLocation = fingerInfo.screenLocation_; in CreateFingerInfo() local 113 fingerInfoObj->SetProperty<double>("displayX", PipelineBase::Px2VpWithCurrentDensity(screenLocation.GetX())); in CreateFingerInfo() 114 fingerInfoObj->SetProperty<double>("displayY", PipelineBase::Px2VpWithCurrentDensity(screenLocation.GetY())); in CreateFingerInfo()
|
H A D | js_hover_function.cpp | 70 const OHOS::Ace::Offset& screenLocation = hoverInfo.GetScreenLocation(); in AccessibilityHoverExecute() local 72 hoverObj->SetProperty<double>("displayX", PipelineBase::Px2VpWithCurrentDensity(screenLocation.GetX())); in AccessibilityHoverExecute() 73 hoverObj->SetProperty<double>("displayY", PipelineBase::Px2VpWithCurrentDensity(screenLocation.GetY())); in AccessibilityHoverExecute()
|
H A D | js_touch_function.cpp | 32 const OHOS::Ace::Offset& screenLocation = touchInfo.GetScreenLocation(); in CreateTouchInfo() local 35 touchInfoObj->SetProperty<double>("displayX", PipelineBase::Px2VpWithCurrentDensity(screenLocation.GetX())); in CreateTouchInfo() 36 touchInfoObj->SetProperty<double>("displayY", PipelineBase::Px2VpWithCurrentDensity(screenLocation.GetY())); in CreateTouchInfo()
|
H A D | js_gesture_judge_function.cpp | 82 const OHOS::Ace::Offset& screenLocation = fingerInfo.screenLocation_; in CreateFingerInfo() local 88 fingerInfoObj->SetProperty<double>("displayX", PipelineBase::Px2VpWithCurrentDensity(screenLocation.GetX())); in CreateFingerInfo() 89 fingerInfoObj->SetProperty<double>("displayY", PipelineBase::Px2VpWithCurrentDensity(screenLocation.GetY())); in CreateFingerInfo()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/container_modal/ |
H A D | container_modal_view_enhance_test_ng.cpp | 469 Offset screenLocation; in HWTEST_F() local 470 screenLocation.deltaX_ = 10.2; in HWTEST_F() 472 info.SetScreenLocation(screenLocation); in HWTEST_F() 504 Offset screenLocation; in HWTEST_F() local 505 screenLocation.deltaX_ = 10.2; in HWTEST_F() 507 info.SetScreenLocation(screenLocation); in HWTEST_F() 538 Offset screenLocation; in HWTEST_F() local 539 screenLocation.Zero(); in HWTEST_F() 541 info.SetScreenLocation(screenLocation); in HWTEST_F() 572 Offset screenLocation; in HWTEST_F() local [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/ |
H A D | js_types.cpp | 98 const OHOS::Ace::Offset& screenLocation = point.GetScreenLocation(); in JsGetHistoricalPoints() local 114 ToJSValue("displayX"), ToJSValue(PipelineBase::Px2VpWithCurrentDensity(screenLocation.GetX()))); in JsGetHistoricalPoints() 116 ToJSValue("displayY"), ToJSValue(PipelineBase::Px2VpWithCurrentDensity(screenLocation.GetY()))); in JsGetHistoricalPoints()
|
/foundation/arkui/ace_engine/frameworks/core/event/ |
H A D | mouse_event.h | 314 MouseInfo& SetScreenLocation(const Offset& screenLocation) in SetScreenLocation() argument 316 screenLocation_ = screenLocation; in SetScreenLocation() 385 AccessibilityHoverInfo& SetScreenLocation(const Offset& screenLocation) in SetScreenLocation() argument 387 screenLocation_ = screenLocation; in SetScreenLocation()
|
H A D | axis_event.h | 284 AxisInfo& SetScreenLocation(const Offset& screenLocation) in SetScreenLocation() argument 286 screenLocation_ = screenLocation; in SetScreenLocation()
|
H A D | touch_event.cpp | 427 TouchLocationInfo& TouchLocationInfo::SetScreenLocation(const Offset& screenLocation) in SetScreenLocation() argument 429 screenLocation_ = screenLocation; in SetScreenLocation()
|
H A D | touch_event.h | 217 TouchLocationInfo& SetScreenLocation(const Offset& screenLocation);
|
/foundation/arkui/ace_engine/frameworks/core/gestures/ |
H A D | gesture_event.h | 96 GestureEvent& SetScreenLocation(const Offset& screenLocation) in SetScreenLocation() argument 98 screenLocation_ = screenLocation; in SetScreenLocation()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_web.cpp | 4895 const OHOS::Ace::Offset& screenLocation = touchInfo.GetScreenLocation(); in CreateTouchInfo() local 4898 touchInfoObj->SetProperty<double>("displayX", screenLocation.GetX()); in CreateTouchInfo() 4899 touchInfoObj->SetProperty<double>("displayY", screenLocation.GetY()); in CreateTouchInfo()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/web/ |
H A D | web_pattern.cpp | 6470 const OHOS::Ace::Offset& screenLocation = location.GetScreenLocation(); in SetTouchLocationInfo() local 6473 info.SetScreenLocation(Offset(screenLocation.GetX() - scaleX, screenLocation.GetY() - scaleY)); in SetTouchLocationInfo()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | node_common_modifier.cpp | 6548 const OHOS::Ace::Offset& screenLocation = locationInfo.GetScreenLocation(); in ConvertTouchLocationInfoToPoint() local 6555 touchPoint.screenX = screenLocation.GetX() / density; in ConvertTouchLocationInfoToPoint() 6556 touchPoint.screenY = screenLocation.GetY() / density; in ConvertTouchLocationInfoToPoint()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/ |
H A D | arkts_native_common_bridge.cpp | 6130 const OHOS::Ace::Offset& screenLocation = fingerInfo.screenLocation_; in CreateFingerInfo() local 6138 panda::NumberRef::New(vm, screenLocation.GetX() / density), in CreateFingerInfo() 6139 panda::NumberRef::New(vm, screenLocation.GetY() / density) }; in CreateFingerInfo()
|