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

1 2

  /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 621 SkRect bounds1, bounds2; local
623 canvas1->getClipBounds(&bounds1) == canvas2->getClipBounds(&bounds2),
625 REPORTER_ASSERT_MESSAGE(reporter, bounds1 == bounds2,
    [all...]
ImageFilterTest.cpp 730 SkRect bounds2 = SkRect::MakeXYWH(20, 20, 10, 10); local
731 canvas.saveLayer(&bounds2, &filterPaint);
734 canvas.drawRect(bounds2, greenPaint);
PathOpsExtendedTest.cpp 351 const SkRect& bounds2 = two.getBounds();
353 larger.join(bounds2);
  /external/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 621 SkRect bounds1, bounds2; local
623 canvas1->getClipBounds(&bounds1) == canvas2->getClipBounds(&bounds2),
625 REPORTER_ASSERT_MESSAGE(reporter, bounds1 == bounds2,
    [all...]
ImageFilterTest.cpp 730 SkRect bounds2 = SkRect::MakeXYWH(20, 20, 10, 10); local
731 canvas.saveLayer(&bounds2, &filterPaint);
734 canvas.drawRect(bounds2, greenPaint);
  /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 135 const gfx::Rect bounds2 = gfx::Rect(100, 100, 200, 200); local
136 window->SetBounds(bounds2);
137 EXPECT_EQ(bounds2.ToString(), window->GetBoundsInScreen().ToString());
180 const gfx::Rect bounds2 = gfx::Rect(100, 100, 200, 200); local
181 maximized_window->SetBounds(bounds2);
182 fullscreen_window->SetBounds(bounds2);
  /external/chromium_org/ash/wm/overview/
window_selector_unittest.cc 620 gfx::Rect bounds2(650, 0, 400, 400);
624 scoped_ptr<aura::Window> window3(CreateWindow(bounds2));
625 scoped_ptr<aura::Window> window4(CreateWindow(bounds2));
628 scoped_ptr<aura::Window> panel3(CreatePanelWindow(bounds2));
629 scoped_ptr<aura::Window> panel4(CreatePanelWindow(bounds2));
697 gfx::Rect bounds2(450, 0, 100, 100);
699 scoped_ptr<aura::Window> window2(CreateWindow(bounds2));
701 scoped_ptr<aura::Window> window4(CreatePanelWindow(bounds2));
987 gfx::RectF bounds2 = GetTransformedBoundsInRootWindow(window2); local
    [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
app_window_custom_bindings.js 314 function boundsEqual(bounds1, bounds2) {
315 if (!bounds1 || !bounds2)
317 return (bounds1.left == bounds2.left && bounds1.top == bounds2.top &&
318 bounds1.width == bounds2.width && bounds1.height == bounds2.height);
  /external/chromium_org/apps/
app_window_geometry_cache_unittest.cc 287 gfx::Rect bounds2(200, 400, 600, 800);
309 extension_id, kWindowId, bounds2, screen_bounds1, ui::SHOW_STATE_NORMAL);
316 extension_id, kWindowId, bounds2, screen_bounds2, ui::SHOW_STATE_NORMAL);
324 bounds2,
  /external/chromium_org/mojo/services/view_manager/
test_change_tracker.h 59 gfx::Rect bounds2; member in struct:mojo::view_manager::service::Change
test_change_tracker.cc 52 RectToString(change.bounds2).c_str());
182 change.bounds2 = new_bounds.To<gfx::Rect>();
  /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/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/skia/src/pathops/
SkDCubicIntersection.cpp 340 const SkDRect& bounds2) {
359 if (!bounds2.intersects(&lineBounds)) {

Completed in 786 milliseconds

1 2