Home
last modified time | relevance | path

Searched refs:GetTiltX (Results 1 - 25 of 29) sorted by relevance

12

/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/functions/
H A Djs_click_function.cpp56 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 Djs_gesture_function.cpp53 gestureInfoObj->SetProperty<double>("tiltX", info.GetTiltX().value_or(0.0f)); in CreateGestureEvent()
H A Djs_hover_function.cpp39 hoverObj->SetProperty<double>("tiltX", hoverInfo.GetTiltX().value_or(0.0f)); in HoverExecute()
H A Djs_touch_function.cpp61 eventObj->SetProperty<double>("tiltX", info.GetTiltX().value_or(0.0f)); in CreateJSEventInfo()
H A Djs_gesture_judge_function.cpp180 obj->SetProperty<double>("tiltX", info->GetTiltX().value_or(0.0f)); in CreateGestureEventObject()
/foundation/arkui/ace_engine/frameworks/core/components/xcomponent/
H A Dnative_interface_xcomponent_impl.cpp121 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 Dnative_interface_xcomponent_impl.h241 float GetTiltX(size_t pointIndex) const in GetTiltX() function in OHOS::Ace::NativeXComponentImpl
485 int32_t GetTiltX(size_t pointIndex, float* tiltX);
H A Drender_xcomponent.cpp173 xcomponentTouchPoint.tiltX = pointTouchInfo.GetTiltX().value_or(0.0f); in SetTouchPoint()
/foundation/arkui/ace_engine/frameworks/core/event/
H A Dace_events.h143 std::optional<float> GetTiltX() const in GetTiltX() function in OHOS::Ace::KeyCode::BaseEventInfo
H A Dtouch_event.cpp743 touchEvent.tiltX = changedTouches_.front().GetTiltX(); in ConvertToTouchEvent()
/foundation/multimodalinput/input/frameworks/proxy/events/include/
H A Devent_log_helper.h384 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 Dtouch_event_test_ng.cpp214 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 Dintention_event_manager.cpp61 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 Djs_location_button.cpp109 clickEventParam->SetProperty<double>("tiltX", info.GetTiltX().value_or(0.0f)); in Execute()
H A Djs_save_button.cpp109 clickEventParam->SetProperty<double>("tiltX", info.GetTiltX().value_or(0.0f)); in Execute()
H A Djs_paste_button.cpp108 clickEventParam->SetProperty<double>("tiltX", info.GetTiltX().value_or(0.0f)); in Execute()
/foundation/arkui/ace_engine/interfaces/native/
H A Dnative_interface_xcomponent.cpp80 return component->GetTiltX(pointIndex, tiltX); in OH_NativeXComponent_GetTouchPointTiltX()
/foundation/arkui/ace_engine/adapter/ohos/entrance/
H A Dmmi_event_convertor.cpp72 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 Dpointer_event.h1017 double GetTiltX() const;
/foundation/multimodalinput/input/test/unittest/common/src/
H A Devent_util_test.cpp226 << ",TiltX:" << std::fixed << std::setprecision(precision) << item.GetTiltX() in DumpInputEvent()
/foundation/arkui/ace_engine/interfaces/napi/kits/observer/
H A Dui_observer_listener.cpp355 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 Darkts_native_frame_node_bridge.cpp525 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 Dxcomponent_pattern.cpp1217 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 Dnode_gesture_modifier.cpp288 rawInputEvent.actionTouchPoint.tiltX = info->GetTiltX().value_or(0.0f);
/foundation/multimodalinput/input/frameworks/proxy/events/src/
H A Dpointer_event.cpp179 double PointerEvent::PointerItem::GetTiltX() const in GetTiltX() function in OHOS::MMI::PointerEvent::PointerItem

Completed in 25 milliseconds

12