Home
last modified time | relevance | path

Searched refs:rects (Results 51 - 75 of 151) sorted by relevance

1234567

/foundation/graphic/graphic_surface/interfaces/inner_api/surface/
H A Dexternal_window.h85 /** if rects is nullptr, fill the Buffer dirty size by default */
91 } *rects; member
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/
H A Dskia_surface.h72 void SetDrawingArea(const std::vector<RectI>& rects) override;
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/draw/
H A Dsurface.h203 void SetDrawingArea(const std::vector<RectI>& rects);
/foundation/arkui/ace_engine/test/unittest/core/pattern/rich_editor/
H A Drich_editor_content_modifier_test_ng.cpp163 TestParagraphRect paragraphRect = { .start = 0, .end = 2, .rects = { { -400.0, -400.0, 200.0, 200.0 } } }; in HWTEST_F()
252 TestParagraphRect paragraphRect = { .start = 0, .end = 2, .rects = { { -400.0, -400.0, 200.0, 200.0 } } }; in HWTEST_F()
H A Drich_editor_pattern_testfive_ng.cpp187 std::vector<RectF> rects { RectF(0.0, 0.0, 200.0, 200.0) }; in HWTEST_F()
191 EXPECT_CALL(*paragraph, GetRectsForRange(_, _, _)).WillRepeatedly(SetArgReferee<THIRD_PARAM>(rects)); in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_base_render_engine.h103 void SetDamageRegion(const std::vector<RectI> &rects) in SetDamageRegion() argument
106 surfaceFrame_->SetDamageRegion(rects); in SetDamageRegion()
/foundation/graphic/graphic_2d/frameworks/surfaceimage/test/systemtest/
H A Dnative_image_system_test.cpp95 region->rects = rect; in ProducerThread()
248 region->rects = rect; in CreateNativeWindowAndRequestBuffer001()
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/skia_adapter/
H A Dskia_surface_test.cpp149 const std::vector<RectI>& rects; in HWTEST_F() local
150 surface->SetDrawingArea(rects); in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/render_context/
H A Drender_context_test.cpp413 auto rects = {rect}; in HWTEST_F() local
414 renderContext->DamageFrame(rects); in HWTEST_F()
/foundation/window/window_manager/utils/include/
H A Dwindow_property.h78 void SetTouchHotAreas(const std::vector<Rect>& rects);
130 void GetTouchHotAreas(std::vector<Rect>& rects) const;
/foundation/window/window_manager/wmserver/src/
H A Dinput_window_monitor.cpp33 static inline void convertRectsToMmiRects(const std::vector<Rect>& rects, std::vector<MMI::Rect>& mmiRects) in convertRectsToMmiRects() argument
35 for (const auto& rect : rects) { in convertRectsToMmiRects()
/foundation/graphic/graphic_surface/surface/test/unittest/
H A Dnative_window_test.cpp646 region->rects = rect; in HWTEST_F()
770 region->rects = rect; in HWTEST_F()
980 region->rects = rect; in HWTEST_F()
1004 region->rects = rect; in HWTEST_F()
1024 region->rects = nullptr; in HWTEST_F()
1034 region->rects = rect; in HWTEST_F()
1082 region->rects = rect; in HWTEST_F()
1131 region->rects = rect; in HWTEST_F()
1937 region->rects = nullptr; in HWTEST_F()
1946 region->rects in HWTEST_F()
[all...]
/foundation/arkui/ace_engine/test/unittest/core/pattern/text/
H A Dtext_testtwo_ng.cpp770 std::vector<RectF> rects { RectF(0, 0, 20, 20) }; in HWTEST_F()
771 EXPECT_CALL(*paragraph, GetRectsForRange(_, _, _)).WillRepeatedly(SetArgReferee<2>(rects)); in HWTEST_F()
825 std::vector<RectF> rects { RectF(0, 0, 20, 20) }; in HWTEST_F()
826 EXPECT_CALL(*paragraph, GetRectsForRange(_, _, _)).WillRepeatedly(SetArgReferee<2>(rects)); in HWTEST_F()
1545 std::vector<RectF> rects { RectF(0, 0, 40, 40) }; in HWTEST_F()
1546 EXPECT_CALL(*paragraph, GetRectsForRange(_, _, _)).WillRepeatedly(SetArgReferee<2>(rects)); in HWTEST_F()
1599 std::vector<RectF> rects { RectF(0, 0, 40, 40) }; in HWTEST_F()
1600 EXPECT_CALL(*paragraph, GetRectsForRange(_, _, _)).WillRepeatedly(SetArgReferee<2>(rects)); in HWTEST_F()
1733 std::vector<RectF> rects { RectF(0, 0, 20, 20) }; in HWTEST_F()
1734 EXPECT_CALL(*paragraph, GetRectsForRange(_, _, _)).Times(2).WillRepeatedly(SetArgReferee<2>(rects)); in HWTEST_F()
[all...]
/foundation/graphic/graphic_2d/frameworks/opengl_wrapper/src/EGL/
H A Degl_wrapper_entry.cpp1280 EGLint *rects, EGLint nRects) in EglSwapBuffersWithDamageKHRImpl()
1289 return display->SwapBuffersWithDamageKHR(draw, rects, nRects); in EglSwapBuffersWithDamageKHRImpl()
1293 EGLint *rects, EGLint nRects) in EglSetDamageRegionKHRImpl()
1302 return display->SetDamageRegionKHR(surf, rects, nRects); in EglSetDamageRegionKHRImpl()
1392 EGLBoolean EglSwapBuffersWithDamageEXTImpl(EGLDisplay dpy, EGLSurface surface, const EGLint *rects, EGLint nRects) in EglSwapBuffersWithDamageEXTImpl() argument
1399 return display->SwapBuffersWithDamageEXT(surface, rects, nRects); in EglSwapBuffersWithDamageEXTImpl()
1279 EglSwapBuffersWithDamageKHRImpl(EGLDisplay dpy, EGLSurface draw, EGLint *rects, EGLint nRects) EglSwapBuffersWithDamageKHRImpl() argument
1292 EglSetDamageRegionKHRImpl(EGLDisplay dpy, EGLSurface surf, EGLint *rects, EGLint nRects) EglSetDamageRegionKHRImpl() argument
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/pipeline/
H A Drs_dirty_region_manager.h75 void UpdateVisitedDirtyRects(const std::vector<RectI>& rects);
/foundation/graphic/graphic_2d/rosen/samples/hello_native_window/
H A Dhello_native_window.cpp109 region->rects = rect; in main()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/render_context/
H A Drender_context.h74 void DamageFrame(const std::vector<RectI> &rects);
/foundation/window/window_manager/window_scene/session_manager/include/
H A Dscene_session_dirty_manager.h34 std::string DumpRect(const std::vector<MMI::Rect>& rects);
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/
H A Dtext_field_select_overlay.cpp84 auto rects = pattern->GetTextBoxes(); in UpdatePattern() local
85 if (!rects.empty() && NearEqual(rects.size(), 1) && NearZero(rects[0].Width())) { in UpdatePattern()
/foundation/arkui/ace_engine/frameworks/core/components/select_popup/
H A Drender_select_popup.cpp67 std::vector<Rect> rects; in OnPaintFinish() local
72 rects.emplace_back(renderPositioned_->GetRectBasedWindowTopLeft()); in OnPaintFinish()
73 SubwindowManager::GetInstance()->SetHotAreas(rects); in OnPaintFinish()
/foundation/multimodalinput/input/service/window_manager/include/
H A Dinput_windows_manager.h305 bool IsInHotArea(int32_t x, int32_t y, const std::vector<Rect> &rects, const WindowInfo &window) const;
306 bool InWhichHotArea(int32_t x, int32_t y, const std::vector<Rect> &rects, PointerStyle &pointerStyle) const;
307 bool InWhichHotArea(int32_t x, int32_t y, const std::vector<Rect> &rects) const;
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/drawable/
H A Drs_display_render_node_drawable.cpp81 Drawing::Region GetFlippedRegion(std::vector<RectI>& rects, ScreenInfo& screenInfo) in GetFlippedRegion() argument
85 for (const auto& r : rects) { in GetFlippedRegion()
241 auto rects = RSUniRenderUtil::ScreenIntersectDirtyRects(dirtyRegion, screenInfo); in MergeDirtyHistory() local
243 rects.emplace_back(rect); in MergeDirtyHistory()
248 return rects; in MergeDirtyHistory()
265 auto rects = RSUniRenderUtil::ScreenIntersectDirtyRects(dirtyRegion, screenInfo); in MergeDirtyHistoryInVirtual() local
267 rects.emplace_back(rect); in MergeDirtyHistoryInVirtual()
270 return rects; in MergeDirtyHistoryInVirtual()
/foundation/multimodalinput/input/service/window_manager/test/
H A Dinput_windows_manager_test.cpp1136 std::vector<Rect> rects = {{0, 0, 30, 40}}; in HWTEST_F() local
1138 bool ret = WIN_MGR->IsInHotArea(x, y, rects, window); in HWTEST_F()
1142 ret = WIN_MGR->IsInHotArea(x, y, rects, window); in HWTEST_F()
1146 ret = WIN_MGR->IsInHotArea(x, y, rects, window); in HWTEST_F()
1161 std::vector<Rect> rects = {{0, 0, 100, 100}, {100, 100, 200, 200}}; in HWTEST_F() local
1163 WIN_MGR->InWhichHotArea(x, y, rects, pointerStyle); in HWTEST_F()
1167 WIN_MGR->InWhichHotArea(x, y, rects, pointerStyle); in HWTEST_F()
3592 std::vector<Rect> rects; in HWTEST_F() local
3597 rects.push_back(rect); in HWTEST_F()
3598 EXPECT_FALSE(inputWindowsManager.IsInHotArea(x, y, rects, windo in HWTEST_F()
3622 std::vector<Rect> rects; HWTEST_F() local
[all...]
/foundation/graphic/graphic_surface/surface/src/
H A Dnative_window.cpp215 if ((region.rectNumber != 0) && (region.rects != nullptr)) { in NativeWindowFlushBuffer()
219 .x = region.rects[i].x, in NativeWindowFlushBuffer()
220 .y = region.rects[i].y, in NativeWindowFlushBuffer()
221 .w = static_cast<int32_t>(region.rects[i].w), in NativeWindowFlushBuffer()
222 .h = static_cast<int32_t>(region.rects[i].h), in NativeWindowFlushBuffer()
/foundation/ability/ability_runtime/test/mock/frameworks_kits_ability_native_test/include/
H A Dmock_window.h164 virtual WMError SetTouchHotAreas(const std::vector<Rect>& rects) {return WMError::WM_OK;} in SetTouchHotAreas() argument
165 virtual void GetRequestedTouchHotAreas(std::vector<Rect>& rects) const {} in GetRequestedTouchHotAreas()

Completed in 39 milliseconds

1234567