/ohos5.0/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_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_function.cpp | 53 gestureInfoObj->SetProperty<double>("tiltX", info.GetTiltX().value_or(0.0f)); in CreateGestureEvent()
|
H A D | js_gesture_judge_function.cpp | 180 obj->SetProperty<double>("tiltX", info->GetTiltX().value_or(0.0f)); in CreateGestureEventObject()
|
/ohos5.0/foundation/multimodalinput/input/frameworks/proxy/events/include/ |
H A D | event_log_helper.h | 386 … item.GetWindowX(), item.GetWindowY(), item.GetWidth(), item.GetHeight(), item.GetTiltX(), in Print() 396 … item.GetWindowX(), item.GetWindowY(), item.GetWidth(), item.GetHeight(), item.GetTiltX(), in Print() 415 … item.GetTiltX(), item.GetTiltY(), item.GetToolDisplayX(), item.GetToolDisplayY(), in Print() 427 … item.GetTiltX(), item.GetTiltY(), item.GetToolDisplayX(), item.GetToolDisplayY(), in Print()
|
/ohos5.0/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 | 242 float GetTiltX(size_t pointIndex) const in GetTiltX() function 497 int32_t GetTiltX(size_t pointIndex, float* tiltX);
|
H A D | render_xcomponent.cpp | 175 xcomponentTouchPoint.tiltX = pointTouchInfo.GetTiltX().value_or(0.0f); in SetTouchPoint()
|
/ohos5.0/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()
|
/ohos5.0/base/msdp/device_status/intention/cooperate/plugin/src/input_event_transmission/ |
H A D | inner_pointer_item.cpp | 40 innerItem.tiltX = mmiItem.GetTiltX(); in Transform()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/event/ |
H A D | ace_events.h | 143 std::optional<float> GetTiltX() const in GetTiltX() function
|
H A D | touch_event.h | 1006 touchEvent.tiltX = changedTouches_.front().GetTiltX(); in ConvertToTouchEvent()
|
/ohos5.0/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 __anon8ae4816e0402() 299 … TouchEventInfo& info) { unknownTiltX = info.GetTiltX().value_or(0.0); }; in __anon8ae4816e0602()
|
/ohos5.0/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_paste_button.cpp | 108 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()
|
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/entrance/ |
H A D | mmi_event_convertor.cpp | 79 touchPoint.tiltX = pointerItem.GetTiltX(); in ConvertTouchPoint() 561 item.GetPressure(), item.GetTiltX(), item.GetTiltY()); in LogPointInfo() 571 item.GetTiltX(), item.GetTiltY()); in LogPointInfo()
|
/ohos5.0/foundation/arkui/ace_engine/interfaces/native/ |
H A D | native_interface_xcomponent.cpp | 83 return component->GetTiltX(pointIndex, tiltX); in OH_NativeXComponent_GetTouchPointTiltX()
|
/ohos5.0/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()
|
/ohos5.0/foundation/arkui/ace_engine/interfaces/napi/kits/observer/ |
H A D | ui_observer_listener.cpp | 363 if (clickInfo.GetTiltX().has_value()) { in AddBaseEventInfo() 364 napi_create_double(env_, clickInfo.GetTiltX().value(), &napiTiltX); in AddBaseEventInfo()
|
/ohos5.0/foundation/multimodalinput/input/interfaces/native/innerkits/event/include/ |
H A D | pointer_event.h | 1056 double GetTiltX() const;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/ |
H A D | arkts_native_frame_node_bridge.cpp | 509 if (info.GetTiltX().has_value()) { in CreateGestureEventInfo() 511 panda::NumberRef::New(vm, static_cast<int32_t>(info.GetTiltX().value()))); in CreateGestureEventInfo() 569 panda::NumberRef::New(vm, static_cast<int32_t>(info.GetTiltX().value_or(0.0f)))); in CreateTouchEventInfo() 904 if (info.GetTiltX().has_value()) { in CreateMouseInfo() 906 panda::NumberRef::New(vm, static_cast<int32_t>(info.GetTiltX().value()))); in CreateMouseInfo()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/xcomponent/ |
H A D | xcomponent_pattern.cpp | 1237 xcomponentTouchPoint.tiltX = pointTouchInfo.GetTiltX().value_or(0.0f); in SetTouchPoint() 1277 point.titlX = item.GetTiltX().value_or(0.0f); in SetHistoryPoint()
|
/ohos5.0/foundation/multimodalinput/input/frameworks/proxy/events/src/ |
H A D | pointer_event.cpp | 178 double PointerEvent::PointerItem::GetTiltX() const in GetTiltX() function in OHOS::MMI::PointerEvent::PointerItem
|