Home
last modified time | relevance | path

Searched refs:AddRect (Results 1 – 16 of 16) sorted by relevance

/external/webrtc/webrtc/modules/desktop_capture/
Ddesktop_region_unittest.cc53 r.AddRect(rect); in TEST()
61 r.AddRect(rect); in TEST()
95 r.AddRect(cases[i].rects[j]); in TEST()
104 r.AddRect(cases[i].rects[j]); in TEST()
199 r.AddRect(cases[i].input_rect1); in TEST()
200 r.AddRect(cases[i].input_rect2); in TEST()
207 r.AddRect(cases[i].input_rect2); in TEST()
208 r.AddRect(cases[i].input_rect1); in TEST()
224 base_region.AddRect(DesktopRect::MakeXYWH(5, 0, 5, 1)); in TEST()
226 base_region.AddRect(DesktopRect::MakeXYWH(15, 0, 5, 1)); in TEST()
[all …]
Dscreen_capturer_helper_unittest.cc162 region.AddRect(DesktopRect::MakeXYWH(x - 1, y - 1, 1, 1)); in TEST_F()
163 expanded_region_expected.AddRect(DesktopRect::MakeXYWH( in TEST_F()
167 region.AddRect(DesktopRect::MakeXYWH(x, y - 1, 1, 1)); in TEST_F()
168 expanded_region_expected.AddRect(DesktopRect::MakeXYWH( in TEST_F()
172 region.AddRect(DesktopRect::MakeXYWH(x - 1, y, 1, 1)); in TEST_F()
173 expanded_region_expected.AddRect(DesktopRect::MakeXYWH( in TEST_F()
177 region.AddRect(DesktopRect::MakeXYWH(x, y, 1, 1)); in TEST_F()
178 expanded_region_expected.AddRect(DesktopRect::MakeXYWH( in TEST_F()
Ddesktop_region.cc32 AddRect(rect); in DesktopRegion()
85 AddRect(rect); in SetRect()
88 void DesktopRegion::AddRect(const DesktopRect& rect) { in AddRect() function in webrtc::DesktopRegion
146 AddRect(rects[i]); in AddRects()
172 AddRect(it.rect()); in AddRegion()
271 region.AddRect(rect); in IntersectWith()
366 region.AddRect(rect); in Subtract()
Dscreen_capturer_helper.cc41 invalid_region_.AddRect(DesktopRect::MakeSize(size)); in InvalidateScreen()
100 result->AddRect(DesktopRect::MakeLTRB(left, top, right, bottom)); in ExpandToGrid()
Ddesktop_region.h110 void AddRect(const DesktopRect& rect);
Ddiffer.cc199 region->AddRect(DesktopRect::MakeXYWH(left, top, width, height)); in MergeBlocks()
Dscreen_capturer_x11.cc335 updated_region->AddRect(DesktopRect::MakeXYWH( in CaptureScreen()
Dscreen_capturer_mac.mm920 region.AddRect(rect);
/external/libchrome/mojo/public/cpp/bindings/tests/
Dstruct_traits_unittest.cc66 void AddRect(const RectChromium& r) override { in AddRect() function in mojo::test::__anon784102510111::ChromiumRectServiceImpl
90 void AddRect(const RectBlink& r) override { in AddRect() function in mojo::test::__anon784102510111::BlinkRectServiceImpl
211 chromium_proxy->AddRect(RectChromium(1, 1, 4, 5)); in TEST_F()
212 chromium_proxy->AddRect(RectChromium(-1, -1, 2, 2)); in TEST_F()
231 chromium_proxy->AddRect(RectChromium(1, 1, 4, 5)); in TEST_F()
232 chromium_proxy->AddRect(RectChromium(2, 2, 5, 5)); in TEST_F()
249 chromium_proxy->AddRect(RectChromium(-1, -1, 2, 2)); in TEST_F()
261 blink_proxy->AddRect(RectBlink(1, 1, 4, 5)); in TEST_F()
262 blink_proxy->AddRect(RectBlink(10, 10, 20, 20)); in TEST_F()
281 blink_proxy->AddRect(RectBlink(1, 1, 4, 5)); in TEST_F()
[all …]
/external/libchrome/mojo/public/interfaces/bindings/tests/
Dtest_native_types.mojom35 AddRect(TypemappedRect r);
/external/dng_sdk/source/
Ddng_bad_pixels.h184 void AddRect (const dng_rect &r);
Ddng_bad_pixels.cpp306 void dng_bad_pixel_list::AddRect (const dng_rect &r) in AddRect() function in dng_bad_pixel_list
644 fList->AddRect (r); in dng_opcode_FixBadPixelsList()
/external/mesa3d/src/imgui/
Dimgui.cpp2381 …window->DrawList->AddRect(p_min+ImVec2(1,1), p_max+ImVec2(1,1), GetColorU32(ImGuiCol_BorderShadow)… in RenderFrame()
2382 …window->DrawList->AddRect(p_min, p_max, GetColorU32(ImGuiCol_Border), rounding, ImDrawCornerFlags_… in RenderFrame()
2393 …window->DrawList->AddRect(p_min+ImVec2(1,1), p_max+ImVec2(1,1), GetColorU32(ImGuiCol_BorderShadow)… in RenderFrameBorder()
2394 …window->DrawList->AddRect(p_min, p_max, GetColorU32(ImGuiCol_Border), rounding, ImDrawCornerFlags_… in RenderFrameBorder()
2480 …window->DrawList->AddRect(display_rect.Min + ImVec2(THICKNESS*0.5f,THICKNESS*0.5f), display_rect.M… in RenderNavHighlight()
2486 …window->DrawList->AddRect(display_rect.Min, display_rect.Max, GetColorU32(ImGuiCol_NavHighlight), … in RenderNavHighlight()
4813 …window->DrawList->AddRect(window->Pos, window->Pos + window->Size, GetColorU32(ImGuiCol_Border), r… in RenderOuterBorders()
5301 …window->DrawList->AddRect(bb.Min, bb.Max, GetColorU32(ImGuiCol_NavWindowingHighlight, g.NavWindowi… in Begin()
7226 draw_list->AddRect(curr.Min, curr.Max, IM_COL32(255,200,0,100)); in NavScoreItem()
7227 draw_list->AddRect(cand.Min, cand.Max, IM_COL32(255,255,0,200)); in NavScoreItem()
[all …]
Dimgui.h1831 …IMGUI_API void AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding = 0.0f, int ro…
Dimgui_draw.cpp1056 void ImDrawList::AddRect(const ImVec2& a, const ImVec2& b, ImU32 col, float rounding, int rounding_… in AddRect() function in ImDrawList
Dimgui_widgets.cpp857 window->DrawList->AddRect(bb.Min, bb.Max, GetColorU32(border_col), 0.0f); in Image()
4459 …window->DrawList->AddRect(bb.Min, bb.Max, GetColorU32(ImGuiCol_FrameBg), rounding); // Color butto… in ColorButton()