Home
last modified time | relevance | path

Searched refs:resultRect (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/window/window_manager/wmserver/test/unittest/
H A Dwindow_node_test.cpp684 auto resultRect = windowNode->GetOriginRect(); variable
685 ASSERT_EQ(testRect, resultRect);
708 std::vector<Rect> resultRect; variable
709 windowNode->GetTouchHotAreas(resultRect);
710 ASSERT_EQ(1, resultRect.size());
711 ASSERT_EQ(rect1, resultRect[0]);
734 std::vector<Rect> resultRect; variable
735 windowNode->GetPointerHotAreas(resultRect);
736 ASSERT_EQ(1, resultRect.size());
737 ASSERT_EQ(rect1, resultRect[0]);
/ohos5.0/foundation/window/window_manager/window_scene/test/unittest/
H A Dkeyboard_session_test.cpp1117 Rosen::WSRect resultRect{ 0, 0, 0, 0 }; variable
1121 …callingSession->updateRectCallback_ = [&resultRect](const WSRect& rect, const SizeChangeReason rea… in __anonf7c393050c02()
1122 resultRect.posX_ = rect.posX_; in __anonf7c393050c02()
1123 resultRect.posY_ = rect.posY_; in __anonf7c393050c02()
1124 resultRect.width_ = rect.width_; in __anonf7c393050c02()
1125 resultRect.height_ = rect.height_; in __anonf7c393050c02()
1134 ASSERT_EQ(resultRect, emptyRect);
1152 ASSERT_EQ(resultRect, emptyRect);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline/
H A Dpipeline_context.cpp1112 Rect resultRect = composeElement->GetRenderRect(); in GetBoundingRectData() local
1113 rect.SetWidth(resultRect.Width()); in GetBoundingRectData()
1114 rect.SetHeight(resultRect.Height()); in GetBoundingRectData()
1115 rect.SetTop(resultRect.Top()); in GetBoundingRectData()
1116 rect.SetLeft(resultRect.Left()); in GetBoundingRectData()