/ohos5.0/base/msdp/device_status/test/unittest/frameworks/src/ |
H A D | interaction_drag_drawing_test.cpp | 210 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 255 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 297 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 339 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 376 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 409 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 442 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 474 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 506 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 538 ret = InteractionManager::GetInstance()->StopDrag(dropResult); [all …]
|
H A D | interaction_manager_test.cpp | 1951 InteractionManager::GetInstance()->StopDrag(dropResult); 2001 InteractionManager::GetInstance()->StopDrag(dropResult); 2055 InteractionManager::GetInstance()->StopDrag(dropResult); 2167 InteractionManager::GetInstance()->StopDrag(dropResult); 2225 InteractionManager::GetInstance()->StopDrag(dropResult); 2321 InteractionManager::GetInstance()->StopDrag(dropResult); 2379 InteractionManager::GetInstance()->StopDrag(dropResult); 2411 InteractionManager::GetInstance()->StopDrag(dropResult); 2441 InteractionManager::GetInstance()->StopDrag(dropResult); 2472 InteractionManager::GetInstance()->StopDrag(dropResult); [all …]
|
/ohos5.0/base/msdp/device_status/test/unittest/intention/drag/src/ |
H A D | drag_manager_test.cpp | 484 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 515 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 547 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 583 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 621 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 658 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 693 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 728 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 763 ret = InteractionManager::GetInstance()->StopDrag(dropResult); 798 ret = InteractionManager::GetInstance()->StopDrag(dropResult); [all …]
|
/ohos5.0/base/msdp/device_status/frameworks/native/interaction/src/ |
H A D | interaction_manager.cpp | 108 int32_t InteractionManager::StopDrag(const DragDropResult &dropResult) in StopDrag() function in OHOS::Msdp::DeviceStatus::InteractionManager 110 return INTER_MGR_IMPL.StopDrag(dropResult); in StopDrag()
|
H A D | drag_manager_impl.cpp | 56 int32_t DragManagerImpl::StopDrag(const DragDropResult &dropResult) in StopDrag() function in OHOS::Msdp::DeviceStatus::DragManagerImpl 59 return DeviceStatusClient::GetInstance().StopDrag(dropResult); in StopDrag()
|
H A D | interaction_manager_impl.cpp | 259 int32_t InteractionManagerImpl::StopDrag(const DragDropResult &dropResult) in StopDrag() function in OHOS::Msdp::DeviceStatus::InteractionManagerImpl 262 return dragManagerImpl_.StopDrag(dropResult); in StopDrag()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/common/interaction/ |
H A D | interaction_interface.h | 45 virtual int32_t StopDrag(DragDropRet result) = 0;
|
/ohos5.0/foundation/arkui/ace_engine/adapter/preview/entrance/msdp/ |
H A D | interaction_impl.h | 43 int32_t StopDrag(DragDropRet result) override;
|
H A D | interaction_impl.cpp | 63 int32_t InteractionImpl::StopDrag(DragDropRet result) in StopDrag() function in OHOS::Ace::InteractionImpl
|
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/capability/interaction/ |
H A D | interaction_impl.h | 44 int32_t StopDrag(DragDropRet result) override;
|
H A D | interaction_impl.cpp | 109 int32_t InteractionImpl::StopDrag(DragDropRet result) in StopDrag() function in OHOS::Ace::InteractionImpl 113 auto ret = InteractionManager::GetInstance()->StopDrag(dragDropResult); in StopDrag()
|
/ohos5.0/foundation/arkui/ace_engine/test/mock/core/common/ |
H A D | mock_interaction_interface.h | 46 MOCK_METHOD(int32_t, StopDrag, (DragDropRet result), (override));
|
/ohos5.0/base/msdp/device_status/frameworks/native/interaction/include/ |
H A D | drag_manager_impl.h | 42 int32_t StopDrag(const DragDropResult &dropResult);
|
H A D | interaction_manager_impl.h | 51 int32_t StopDrag(const DragDropResult &dropResult);
|
/ohos5.0/base/msdp/device_status/services/interaction/drag/src/ |
H A D | event_hub.cpp | 85 context->GetDragManager().StopDrag(dropResult); in OnReceiveEvent()
|
/ohos5.0/foundation/multimodalinput/input/intention/prototype/include/ |
H A D | i_drag_manager.h | 44 …virtual int32_t StopDrag(const DragDropResult &dropResult, const std::string &packageName = "") = …
|
/ohos5.0/base/msdp/device_status/services/communication/base/ |
H A D | i_devicestatus.h | 51 virtual int32_t StopDrag(const DragDropResult &dropResult) = 0;
|
/ohos5.0/foundation/multimodalinput/input/intention/drag/client/include/ |
H A D | drag_client.h | 40 int32_t StopDrag(ITunnelClient &tunnel, const DragDropResult &dropResult);
|
/ohos5.0/base/msdp/device_status/intention/drag/client/include/ |
H A D | drag_client.h | 40 int32_t StopDrag(ITunnelClient &tunnel, const DragDropResult &dropResult);
|
/ohos5.0/base/msdp/device_status/intention/prototype/include/ |
H A D | i_drag_manager.h | 43 virtual int32_t StopDrag(const DragDropResult &dropResult, const std::string &packageName = "",
|
/ohos5.0/base/msdp/device_status/interfaces/innerkits/include/ |
H A D | devicestatus_client.h | 59 int32_t StopDrag(const DragDropResult &dropResult);
|
/ohos5.0/foundation/multimodalinput/input/intention/frameworks/client/src/ |
H A D | intention_manager.cpp | 280 int32_t IntentionManager::StopDrag(const DragDropResult &dropResult) in StopDrag() function in OHOS::Msdp::DeviceStatus::IntentionManager 283 return drag_.StopDrag(*tunnel_, dropResult); in StopDrag()
|
/ohos5.0/base/msdp/device_status/intention/frameworks/client/src/ |
H A D | intention_manager.cpp | 287 int32_t IntentionManager::StopDrag(const DragDropResult &dropResult) in StopDrag() function in OHOS::Msdp::DeviceStatus::IntentionManager 290 return drag_.StopDrag(*tunnel_, dropResult); in StopDrag()
|
/ohos5.0/base/msdp/device_status/interfaces/innerkits/interaction/include/ |
H A D | interaction_manager.h | 157 int32_t StopDrag(const DragDropResult &dropResult);
|
/ohos5.0/base/msdp/device_status/services/communication/client/include/ |
H A D | devicestatus_srv_proxy.h | 53 virtual int32_t StopDrag(const DragDropResult &dropResult) override;
|