Home
last modified time | relevance | path

Searched refs:toInfo (Results 1 - 16 of 16) sorted by relevance

/foundation/ability/ability_runtime/interfaces/inner_api/ability_manager/src/
H A Dwindow_manager_service_handler_stub.cpp72 sptr<AbilityTransitionInfo> toInfo(data.ReadParcelable<AbilityTransitionInfo>()); in NotifyWindowTransitionInner()
73 if (!toInfo) { in NotifyWindowTransitionInner()
74 TAG_LOGE(AAFwkTag::ABILITYMGR, "read toInfo failed"); in NotifyWindowTransitionInner()
78 NotifyWindowTransition(fromInfo, toInfo, animaEnabled); in NotifyWindowTransitionInner()
H A Dwindow_manager_service_handler_proxy.cpp29 sptr<AbilityTransitionInfo> toInfo, bool& animaEnabled) in NotifyWindowTransition()
41 if (!data.WriteParcelable(toInfo.GetRefPtr())) { in NotifyWindowTransition()
42 TAG_LOGE(AAFwkTag::ABILITYMGR, "Write toInfo failed"); in NotifyWindowTransition()
28 NotifyWindowTransition(sptr<AbilityTransitionInfo> fromInfo, sptr<AbilityTransitionInfo> toInfo, bool& animaEnabled) NotifyWindowTransition() argument
/foundation/ability/ability_runtime/interfaces/inner_api/ability_manager/include/
H A Dwindow_manager_service_handler.h34 virtual void NotifyWindowTransition(sptr<AbilityTransitionInfo> fromInfo, sptr<AbilityTransitionInfo> toInfo,
H A Dwindow_manager_service_handler_proxy.h31 sptr<AbilityTransitionInfo> toInfo, bool& animaEnabled) override;
/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/
H A Dlazy_for_each_builder.cpp619 OperationInfo toInfo; in OperateMove() local
635 toInfo.changeCount = 1; in OperateMove()
643 toInfo.node = iter->second.second; in OperateMove()
644 toInfo.moveIn = true; in OperateMove()
645 toInfo.fromDiffTo = operation.coupleIndex.first - operation.coupleIndex.second; in OperateMove()
647 toInfo.key = operation.key; in OperateMove()
649 toInfo.key = iter->second.first; in OperateMove()
652 operationList_.try_emplace(operation.coupleIndex.second, toInfo); in OperateMove()
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/
H A Dobserver_handler.h90 std::optional<NavDestinationInfo>&& toInfo, NavigationOperation op) in NavDestinationSwitchInfo()
92 to(std::forward<std::optional<NavDestinationInfo>>(toInfo)), operation(op) in NavDestinationSwitchInfo()
/foundation/window/window_manager/wmserver/src/
H A Dwindow_manager_service.cpp227 sptr<WindowTransitionInfo> toInfo = nullptr; in NotifyWindowTransition() local
232 toInfo = new WindowTransitionInfo(to); in NotifyWindowTransition()
235 WindowManagerService::GetInstance().NotifyWindowTransition(fromInfo, toInfo, false); in NotifyWindowTransition()
795 sptr<WindowTransitionInfo>& fromInfo, sptr<WindowTransitionInfo>& toInfo, bool isFromClient) in NotifyWindowTransition()
799 auto task = [this, fromInfo, toInfo]() mutable { in NotifyWindowTransition()
800 return windowController_->NotifyWindowTransition(fromInfo, toInfo); in NotifyWindowTransition()
806 auto task = [this, &fromInfo, &toInfo]() { in NotifyWindowTransition()
807 return windowController_->NotifyWindowTransition(fromInfo, toInfo); in NotifyWindowTransition()
794 NotifyWindowTransition( sptr<WindowTransitionInfo>& fromInfo, sptr<WindowTransitionInfo>& toInfo, bool isFromClient) NotifyWindowTransition() argument
/foundation/ability/ability_runtime/services/abilitymgr/src/
H A Dability_record.cpp622 auto toInfo = CreateAbilityTransitionInfo(); in NotifyAnimationFromTerminatingAbility() local
623 SetAbilityTransitionInfo(abilityInfo_, toInfo); in NotifyAnimationFromTerminatingAbility()
625 windowHandler->NotifyWindowTransition(fromInfo, toInfo, animaEnabled); in NotifyAnimationFromTerminatingAbility()
825 auto toInfo = CreateAbilityTransitionInfo(startOptions, want); in NotifyAnimationFromRecentTask() local
826 toInfo->abilityToken_ = token_; in NotifyAnimationFromRecentTask()
827 toInfo->missionId_ = missionId_; in NotifyAnimationFromRecentTask()
828 SetAbilityTransitionInfo(abilityInfo_, toInfo); in NotifyAnimationFromRecentTask()
832 windowHandler->NotifyWindowTransition(fromInfo, toInfo, animaEnabled); in NotifyAnimationFromRecentTask()
853 auto toInfo = CreateAbilityTransitionInfo(abilityRequest); in NotifyAnimationFromStartingAbility() local
854 toInfo in NotifyAnimationFromStartingAbility()
[all...]
/foundation/window/window_manager/wmserver/test/unittest/
H A Dwindow_manager_service_test.cpp161 sptr<WindowTransitionInfo> toInfo = nullptr; in HWTEST_F() local
162 ASSERT_EQ(WMError::WM_OK, wms->NotifyWindowTransition(fromInfo, toInfo, false)); in HWTEST_F()
164 ASSERT_EQ(WMError::WM_OK, wms->NotifyWindowTransition(fromInfo, toInfo, true)); in HWTEST_F()
166 ASSERT_NE(WMError::WM_ERROR_NO_REMOTE_ANIMATION, wms->NotifyWindowTransition(fromInfo, toInfo, true)); in HWTEST_F()
/foundation/window/window_manager/wmserver/include/
H A Dwindow_controller.h46 WMError NotifyWindowTransition(sptr<WindowTransitionInfo>& fromInfo, sptr<WindowTransitionInfo>& toInfo);
/foundation/arkui/ace_engine/test/unittest/core/pattern/navigation/
H A Dnavigation_test_ng.cpp1543 auto toInfo = to->GetNavPathInfo(); in HWTEST_F()
1544 ASSERT_NE(toInfo, nullptr); in HWTEST_F()
1545 ASSERT_EQ(toInfo->name_, "A"); in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navigation/
H A Dnavigation_pattern.cpp2470 std::optional<NavDestinationInfo> toInfo; in NotifyNavDestinationSwitch() local
2472 BuildNavDestinationInfoFromContext(navigationId, NavDestinationState::ON_SHOWN, to, false, toInfo); in NotifyNavDestinationSwitch()
2474 std::move(fromInfo), std::move(toInfo), operation); in NotifyNavDestinationSwitch()
/foundation/ability/ability_runtime/test/unittest/mission_list_manager_first_test/
H A Dmission_list_manager_first_test.cpp93 virtual void NotifyWindowTransition(sptr<AbilityTransitionInfo> fromInfo, sptr<AbilityTransitionInfo> toInfo, in NotifyWindowTransition() argument
/foundation/window/window_manager/wm/src/
H A Dwindow_impl.cpp2216 sptr<WindowTransitionInfo> toInfo = new(std::nothrow) WindowTransitionInfo(); in NotifyWindowTransition() local
2217 if (fromInfo == nullptr || toInfo == nullptr) { in NotifyWindowTransition()
2238 return SingletonContainer::Get<WindowAdapter>().NotifyWindowTransition(fromInfo, toInfo); in NotifyWindowTransition()
/foundation/ability/ability_runtime/test/unittest/ability_record_test/
H A Dability_record_test.cpp128 virtual void NotifyWindowTransition(sptr<AbilityTransitionInfo> fromInfo, sptr<AbilityTransitionInfo> toInfo, in NotifyWindowTransition() argument
/foundation/ability/ability_runtime/test/unittest/mission_list_manager_test/
H A Dmission_list_manager_test.cpp95 virtual void NotifyWindowTransition(sptr<AbilityTransitionInfo> fromInfo, sptr<AbilityTransitionInfo> toInfo, in NotifyWindowTransition() argument

Completed in 44 milliseconds