HomeSort by relevance Sort by last modified time
    Searched refs:bounds2 (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/third_party/skia/tests/
PathOpsBoundsTest.cpp 53 const SkPathOpsBounds& bounds2 = static_cast<const SkPathOpsBounds&>(sectTests[index][1]); local
54 SkASSERT(ValidBounds(bounds2));
55 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2);
61 const SkPathOpsBounds& bounds2 = static_cast<const SkPathOpsBounds&>(noSectTests[index][1]); local
62 SkASSERT(ValidBounds(bounds2));
63 bool touches = SkPathOpsBounds::Intersects(bounds1, bounds2);
CanvasTest.cpp 588 SkRect bounds1, bounds2; local
590 canvas1->getClipBounds(&bounds1) == canvas2->getClipBounds(&bounds2),
592 REPORTER_ASSERT_MESSAGE(reporter, bounds1 == bounds2,
    [all...]
PathOpsExtendedTest.cpp 234 const SkRect& bounds2 = two.getBounds();
236 larger.join(bounds2);
ImageFilterTest.cpp 1021 SkRect bounds2 = SkRect::MakeXYWH(20, 20, 10, 10); local
    [all...]
PathTest.cpp 3507 SkRect bounds, bounds2; local
    [all...]
  /external/chromium_org/chrome/browser/ui/panels/
panel_drag_controller.cc 36 int GetHorizontalOverlap(const gfx::Rect& bounds1, const gfx::Rect& bounds2) {
38 if (bounds1.right() <= bounds2.x() || bounds1.x() >= bounds2.right())
42 if (bounds2.x() <= bounds1.x() && bounds1.right() <= bounds2.right())
45 if (bounds1.x() <= bounds2.x() && bounds2.right() <= bounds1.right())
46 return bounds2.width();
49 return (bounds1.x() < bounds2.x()) ? (bounds1.right() - bounds2.x()
    [all...]
panel_manager.cc 56 gfx::Rect bounds2 = panel2->GetBounds(); local
59 if (bounds1.x() > bounds2.x())
61 if (bounds1.x() < bounds2.x())
65 return bounds1.y() < bounds2.y();
stacked_panel_browsertest.cc 550 gfx::Rect bounds2 = panel2->GetBounds(); local
553 gfx::Vector2d drag_delta_to_stack(bounds2.x() - bounds1.x(),
554 bounds2.y() - bounds1.bottom());
1415 gfx::Rect bounds2 = panel2->GetBounds(); local
    [all...]
panel_drag_browsertest.cc 118 gfx::Rect bounds2 = panel2->GetBounds(); local
120 bounds2.x() - bounds1.x(),
121 bounds2.bottom() - bounds1.y() +
130 gfx::Rect bounds2 = panel2->GetBounds(); local
138 gfx::Rect bounds2 = panel2->GetBounds(); local
143 bounds2.x() - bounds1.x(),
144 bounds2.y() - bottom -
153 gfx::Rect bounds2 = panel2->GetBounds(); local
162 gfx::Rect bounds2 = panel2->GetBounds(); local
164 bounds2.x() - bounds1.width() - bounds1.x()
174 gfx::Rect bounds2 = panel2->GetBounds(); local
    [all...]
  /external/chromium_org/ash/wm/
lock_layout_manager_unittest.cc 136 const gfx::Rect bounds2 = gfx::Rect(100, 100, 200, 200); local
137 window->SetBounds(bounds2);
138 EXPECT_EQ(bounds2.ToString(), window->GetBoundsInScreen().ToString());
181 const gfx::Rect bounds2 = gfx::Rect(100, 100, 200, 200); local
182 maximized_window->SetBounds(bounds2);
183 fullscreen_window->SetBounds(bounds2);
  /external/chromium_org/mojo/services/view_manager/
test_change_tracker.h 59 gfx::Rect bounds2; member in struct:mojo::service::Change
test_change_tracker.cc 43 RectToString(change.bounds2).c_str());
157 change.bounds2 = new_bounds.To<gfx::Rect>();
  /external/chromium_org/extensions/renderer/resources/
app_window_custom_bindings.js 318 function boundsEqual(bounds1, bounds2) {
319 if (!bounds1 || !bounds2)
321 return (bounds1.left == bounds2.left && bounds1.top == bounds2.top &&
322 bounds1.width == bounds2.width && bounds1.height == bounds2.height);
  /external/chromium_org/ash/wm/overview/
window_selector_unittest.cc 646 gfx::Rect bounds2(650, 0, 400, 400);
650 scoped_ptr<aura::Window> window3(CreateWindow(bounds2));
651 scoped_ptr<aura::Window> window4(CreateWindow(bounds2));
654 scoped_ptr<aura::Window> panel3(CreatePanelWindow(bounds2));
655 scoped_ptr<aura::Window> panel4(CreatePanelWindow(bounds2));
723 gfx::Rect bounds2(450, 0, 100, 100);
725 scoped_ptr<aura::Window> window2(CreateWindow(bounds2));
727 scoped_ptr<aura::Window> window4(CreatePanelWindow(bounds2));
1049 gfx::RectF bounds2 = GetTransformedBoundsInRootWindow(window2); local
    [all...]
  /external/chromium_org/extensions/browser/app_window/
app_window_geometry_cache_unittest.cc 352 gfx::Rect bounds2(200, 400, 600, 800);
374 extension_id, kWindowId, bounds2, screen_bounds1, ui::SHOW_STATE_NORMAL);
381 extension_id, kWindowId, bounds2, screen_bounds2, ui::SHOW_STATE_NORMAL);
389 bounds2,
  /external/chromium_org/third_party/skia/experimental/Intersection/
EdgeWalker_TestUtility.cpp 245 const SkRect& bounds2 = two.getBounds(); local
247 larger.join(bounds2);
351 const SkRect& bounds2 = two.getBounds(); local
353 larger.join(bounds2);
367 canvas.translate(-bounds2.fLeft + 1, -bounds2.fTop + 1);
CubicIntersection.cpp 314 static bool intersectEnd(const Cubic& cubic1, bool start, const Cubic& cubic2, const _Rect& bounds2,
338 if (!bounds2.intersects(lineBounds)) {
  /external/chromium_org/ash/wm/panels/
panel_layout_manager.cc 175 bool BoundsAdjacent(const gfx::Rect& bounds1, const gfx::Rect& bounds2) {
176 return bounds1.x() == bounds2.right() ||
177 bounds1.y() == bounds2.bottom() ||
178 bounds1.right() == bounds2.x() ||
179 bounds1.bottom() == bounds2.y();
    [all...]
  /external/chromium_org/ash/wm/dock/
docked_window_layout_manager.cc 342 bool compare_two_windows(const gfx::Rect bounds1, const gfx::Rect bounds2) {
345 bool result1 = compare_bounds(bounds1, bounds2);
346 bool result2 = compare_bounds(bounds2, bounds1);
352 return bounds1.CenterPoint().y() < bounds2.CenterPoint().y();
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkDCubicIntersection.cpp 340 const SkDRect& bounds2) {
359 if (!bounds2.intersects(&lineBounds)) {
  /external/chromium_org/ui/aura/
window_event_dispatcher_unittest.cc 111 gfx::Rect bounds2(300, 400, kWindowWidth, kWindowHeight);
115 delegate2.get(), -5678, bounds2, root_window()));
    [all...]

Completed in 468 milliseconds