/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/functions/ |
H A D | js_click_function.cpp | 57 obj->SetProperty<double>("tiltY", info.GetTiltY().value_or(0.0f)); in Execute() 90 obj->SetProperty<double>("tiltY", info.GetTiltY().value_or(0.0f)); in Execute() 128 obj->SetProperty<double>("tiltY", info.GetTiltY().value_or(0.0f)); in Execute() 174 obj->SetProperty<double>("tiltY", info.GetTiltY().value_or(0.0f)); in Execute() 207 obj->SetProperty<double>("tiltY", info.GetTiltY().value_or(0.0f)); in Execute() 245 obj->SetProperty<double>("tiltY", info.GetTiltY().value_or(0.0f)); in Execute()
|
H A D | js_gesture_function.cpp | 54 gestureInfoObj->SetProperty<double>("tiltY", info.GetTiltY().value_or(0.0f)); in CreateGestureEvent()
|
H A D | js_hover_function.cpp | 40 hoverObj->SetProperty<double>("tiltY", hoverInfo.GetTiltY().value_or(0.0f)); in HoverExecute()
|
H A D | js_touch_function.cpp | 62 eventObj->SetProperty<double>("tiltY", info.GetTiltY().value_or(0.0f)); in CreateJSEventInfo()
|
H A D | js_gesture_judge_function.cpp | 181 obj->SetProperty<double>("tiltY", info->GetTiltY().value_or(0.0f)); in CreateGestureEventObject()
|
/foundation/arkui/ace_engine/frameworks/core/components/xcomponent/ |
H A D | native_interface_xcomponent_impl.cpp | 130 int32_t OH_NativeXComponent::GetTiltY(size_t pointIndex, float* tiltY) in GetTiltY() function in OH_NativeXComponent 135 (*tiltY) = xcomponentImpl_->GetTiltY(pointIndex); in GetTiltY()
|
H A D | native_interface_xcomponent_impl.h | 249 float GetTiltY(size_t pointIndex) const in GetTiltY() function in OHOS::Ace::NativeXComponentImpl 486 int32_t GetTiltY(size_t pointIndex, float* tiltY);
|
H A D | render_xcomponent.cpp | 174 xcomponentTouchPoint.tiltY = pointTouchInfo.GetTiltY().value_or(0.0f); in SetTouchPoint()
|
/foundation/arkui/ace_engine/frameworks/core/event/ |
H A D | ace_events.h | 152 std::optional<float> GetTiltY() const in GetTiltY() function in OHOS::Ace::KeyCode::BaseEventInfo
|
H A D | touch_event.cpp | 744 touchEvent.tiltY = changedTouches_.front().GetTiltY(); in ConvertToTouchEvent()
|
/foundation/multimodalinput/input/frameworks/proxy/events/include/ |
H A D | event_log_helper.h | 385 item.GetTiltY(), item.GetToolDisplayX(), item.GetToolDisplayY(), item.GetToolWindowX(), in Print() 398 item.GetTiltY(), item.GetToolDisplayX(), item.GetToolDisplayY(), item.GetToolWindowX(), in Print() 418 item.GetTiltX(), item.GetTiltY(), item.GetToolDisplayX(), item.GetToolDisplayY(), in Print() 432 item.GetTiltX(), item.GetTiltY(), item.GetToolDisplayX(), item.GetToolDisplayY(), in Print()
|
/foundation/window/window_manager/window_scene/intention_event/src/ |
H A D | intention_event_manager.cpp | 61 pointerEvent->GetPointerAction(), item.GetPressure(), item.GetTiltX(), item.GetTiltY()); in LogPointInfo() 70 item.GetTiltX(), item.GetTiltY()); in LogPointInfo()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_location_button.cpp | 110 clickEventParam->SetProperty<double>("tiltY", info.GetTiltY().value_or(0.0f)); in Execute()
|
H A D | js_save_button.cpp | 110 clickEventParam->SetProperty<double>("tiltY", info.GetTiltY().value_or(0.0f)); in Execute()
|
H A D | js_paste_button.cpp | 109 clickEventParam->SetProperty<double>("tiltY", info.GetTiltY().value_or(0.0f)); in Execute()
|
/foundation/arkui/ace_engine/interfaces/native/ |
H A D | native_interface_xcomponent.cpp | 88 return component->GetTiltY(pointIndex, tiltY); in OH_NativeXComponent_GetTouchPointTiltY()
|
/foundation/arkui/ace_engine/adapter/ohos/entrance/ |
H A D | mmi_event_convertor.cpp | 73 touchPoint.tiltY = pointerItem.GetTiltY(); in ConvertTouchPoint() 570 item.GetPressure(), item.GetTiltX(), item.GetTiltY()); in LogPointInfo() 580 item.GetTiltX(), item.GetTiltY()); in LogPointInfo()
|
/foundation/multimodalinput/input/interfaces/native/innerkits/event/include/ |
H A D | pointer_event.h | 1032 double GetTiltY() const;
|
/foundation/multimodalinput/input/test/unittest/common/src/ |
H A D | event_util_test.cpp | 227 << ",TiltY:" << std::fixed << std::setprecision(precision) << item.GetTiltY() in DumpInputEvent()
|
/foundation/arkui/ace_engine/interfaces/napi/kits/observer/ |
H A D | ui_observer_listener.cpp | 358 if (clickInfo.GetTiltY().has_value()) { in AddBaseEventInfo() 359 napi_create_double(env_, clickInfo.GetTiltY().value(), &napiTiltY); in AddBaseEventInfo()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/ |
H A D | arkts_native_frame_node_bridge.cpp | 529 if (info.GetTiltY().has_value()) { 531 panda::NumberRef::New(vm, static_cast<int32_t>(info.GetTiltY().value()))); 587 panda::NumberRef::New(vm, static_cast<int32_t>(info.GetTiltY().value_or(0.0f)))); 921 if (info.GetTiltY().has_value()) { 923 panda::NumberRef::New(vm, static_cast<int32_t>(info.GetTiltY().value())));
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/xcomponent/ |
H A D | xcomponent_pattern.cpp | 1218 xcomponentTouchPoint.tiltY = pointTouchInfo.GetTiltY().value_or(0.0f); in SetTouchPoint() 1258 point.titlY = item.GetTiltY().value_or(0.0f); in SetHistoryPoint()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | node_gesture_modifier.cpp | 289 rawInputEvent.actionTouchPoint.tiltY = info->GetTiltY().value_or(0.0f);
|
/foundation/multimodalinput/input/frameworks/proxy/events/src/ |
H A D | pointer_event.cpp | 189 double PointerEvent::PointerItem::GetTiltY() const in GetTiltY() function in OHOS::MMI::PointerEvent::PointerItem
|
/foundation/multimodalinput/input/frameworks/proxy/events/test/ |
H A D | pointer_event_test.cpp | 1634 * @tc.desc: Test the funcation SetTiltY and GetTiltY 1644 ASSERT_EQ(item.GetTiltY(), y); in HWTEST_F()
|