/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/functions/ |
H A D | js_click_function.cpp | 56 obj->SetProperty<double>("tiltX", info.GetTiltX().value_or(0.0f)); in Execute() 89 obj->SetProperty<double>("tiltX", info.GetTiltX().value_or(0.0f)); in Execute() 127 obj->SetProperty<double>("tiltX", info.GetTiltX().value_or(0.0f)); in Execute() 173 obj->SetProperty<double>("tiltX", info.GetTiltX().value_or(0.0f)); in Execute() 206 obj->SetProperty<double>("tiltX", info.GetTiltX().value_or(0.0f)); in Execute() 244 obj->SetProperty<double>("tiltX", info.GetTiltX().value_or(0.0f)); in Execute()
|
H A D | js_gesture_function.cpp | 53 gestureInfoObj->SetProperty<double>("tiltX", info.GetTiltX().value_or(0.0f)); in CreateGestureEvent()
|
H A D | js_hover_function.cpp | 39 hoverObj->SetProperty<double>("tiltX", hoverInfo.GetTiltX().value_or(0.0f)); in HoverExecute()
|
H A D | js_touch_function.cpp | 61 eventObj->SetProperty<double>("tiltX", info.GetTiltX().value_or(0.0f)); in CreateJSEventInfo()
|
H A D | js_gesture_judge_function.cpp | 180 obj->SetProperty<double>("tiltX", info->GetTiltX().value_or(0.0f)); in CreateGestureEventObject()
|
/foundation/arkui/ace_engine/frameworks/core/components/xcomponent/ |
H A D | native_interface_xcomponent_impl.cpp | 121 int32_t OH_NativeXComponent::GetTiltX(size_t pointIndex, float* tiltX) in GetTiltX() function in OH_NativeXComponent 126 (*tiltX) = xcomponentImpl_->GetTiltX(pointIndex); in GetTiltX()
|
H A D | native_interface_xcomponent_impl.h | 241 float GetTiltX(size_t pointIndex) const in GetTiltX() function in OHOS::Ace::NativeXComponentImpl 485 int32_t GetTiltX(size_t pointIndex, float* tiltX);
|
H A D | render_xcomponent.cpp | 173 xcomponentTouchPoint.tiltX = pointTouchInfo.GetTiltX().value_or(0.0f); in SetTouchPoint()
|
/foundation/arkui/ace_engine/frameworks/core/event/ |
H A D | ace_events.h | 143 std::optional<float> GetTiltX() const in GetTiltX() function in OHOS::Ace::KeyCode::BaseEventInfo
|
H A D | touch_event.cpp | 743 touchEvent.tiltX = changedTouches_.front().GetTiltX(); in ConvertToTouchEvent()
|
/foundation/multimodalinput/input/frameworks/proxy/events/include/ |
H A D | event_log_helper.h | 384 item.GetWindowX(), item.GetWindowY(), item.GetWidth(), item.GetHeight(), item.GetTiltX(), in Print() 397 item.GetWindowX(), item.GetWindowY(), item.GetWidth(), item.GetHeight(), item.GetTiltX(), 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/arkui/ace_engine/test/unittest/core/event/ |
H A D | touch_event_test_ng.cpp | 214 TouchEventInfo& info) { unknownTiltX = info.GetTiltX().value_or(0.0); }; in HWTEST_F() 299 TouchEventInfo& info) { unknownTiltX = info.GetTiltX().value_or(0.0); }; in HWTEST_F()
|
/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 | 109 clickEventParam->SetProperty<double>("tiltX", info.GetTiltX().value_or(0.0f)); in Execute()
|
H A D | js_save_button.cpp | 109 clickEventParam->SetProperty<double>("tiltX", info.GetTiltX().value_or(0.0f)); in Execute()
|
H A D | js_paste_button.cpp | 108 clickEventParam->SetProperty<double>("tiltX", info.GetTiltX().value_or(0.0f)); in Execute()
|
/foundation/arkui/ace_engine/interfaces/native/ |
H A D | native_interface_xcomponent.cpp | 80 return component->GetTiltX(pointIndex, tiltX); in OH_NativeXComponent_GetTouchPointTiltX()
|
/foundation/arkui/ace_engine/adapter/ohos/entrance/ |
H A D | mmi_event_convertor.cpp | 72 touchPoint.tiltX = pointerItem.GetTiltX(); 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 | 1017 double GetTiltX() const;
|
/foundation/multimodalinput/input/test/unittest/common/src/ |
H A D | event_util_test.cpp | 226 << ",TiltX:" << std::fixed << std::setprecision(precision) << item.GetTiltX() in DumpInputEvent()
|
/foundation/arkui/ace_engine/interfaces/napi/kits/observer/ |
H A D | ui_observer_listener.cpp | 355 if (clickInfo.GetTiltX().has_value()) { in AddBaseEventInfo() 356 napi_create_double(env_, clickInfo.GetTiltX().value(), &napiTiltX); in AddBaseEventInfo()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/ |
H A D | arkts_native_frame_node_bridge.cpp | 525 if (info.GetTiltX().has_value()) { 527 panda::NumberRef::New(vm, static_cast<int32_t>(info.GetTiltX().value()))); 585 panda::NumberRef::New(vm, static_cast<int32_t>(info.GetTiltX().value_or(0.0f)))); 917 if (info.GetTiltX().has_value()) { 919 panda::NumberRef::New(vm, static_cast<int32_t>(info.GetTiltX().value())));
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/xcomponent/ |
H A D | xcomponent_pattern.cpp | 1217 xcomponentTouchPoint.tiltX = pointTouchInfo.GetTiltX().value_or(0.0f); in SetTouchPoint() 1257 point.titlX = item.GetTiltX().value_or(0.0f); in SetHistoryPoint()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | node_gesture_modifier.cpp | 288 rawInputEvent.actionTouchPoint.tiltX = info->GetTiltX().value_or(0.0f);
|
/foundation/multimodalinput/input/frameworks/proxy/events/src/ |
H A D | pointer_event.cpp | 179 double PointerEvent::PointerItem::GetTiltX() const in GetTiltX() function in OHOS::MMI::PointerEvent::PointerItem
|