Searched defs:bounds (Results 1 - 25 of 849) sorted by relevance

1234567891011>>

/external/chromium_org/tools/telemetry/telemetry/timeline/
H A Dbounds_unittest.py6 from telemetry.timeline import bounds namespace
13 self.assertEquals(0, bounds.Bounds.GetOverlap(10, 20, 30, 40))
14 self.assertEquals(0, bounds.Bounds.GetOverlap(30, 40, 10, 20))
16 self.assertEquals(10, bounds.Bounds.GetOverlap(10, 30, 20, 40))
17 self.assertEquals(10, bounds.Bounds.GetOverlap(20, 40, 10, 30))
19 self.assertEquals(10, bounds.Bounds.GetOverlap(10, 40, 20, 30))
20 self.assertEquals(10, bounds.Bounds.GetOverlap(20, 30, 10, 40))
/external/chromium_org/ui/gfx/
H A Dcolor_profile_win_unittest.cc11 bool TestColorProfileUsingScreenBounds(const gfx::Rect& bounds) { argument
13 return gfx::GetDisplayColorProfile(bounds, &color_profile);
/external/chromium_org/cc/layers/
H A Dpaint_properties.h16 gfx::Size bounds; member in struct:cc::PaintProperties
/external/chromium_org/extensions/common/
H A Ddraggable_region.h14 gfx::Rect bounds; member in struct:extensions::DraggableRegion
/external/chromium_org/third_party/WebKit/public/web/
H A DWebDraggableRegion.h42 WebRect bounds; member in struct:blink::WebDraggableRegion
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawSaveLayer.h30 SkDrawRect* bounds; member in class:SkSaveLayer
/external/skia/src/animator/
H A DSkDrawSaveLayer.h30 SkDrawRect* bounds; member in class:SkSaveLayer
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_contents_resizing_strategy.h19 const gfx::Rect& bounds);
24 const gfx::Rect& bounds() const { return bounds_; } function in class:DevToolsContentsResizingStrategy
28 // Contents bounds. When non-empty, used instead of insets.
37 // Applies contents resizing strategy, producing bounds for devtools and
40 // When unknown, providing empty rect as previous devtools and contents bounds
/external/chromium_org/chrome/browser/ui/panels/
H A Ddetached_panel_browsertest.cc22 gfx::Rect bounds(300, 200, 250, 200);
23 CreatePanelParams params("1", bounds, SHOW_AS_ACTIVE);
32 EXPECT_EQ(bounds.x(), panel->GetBounds().x());
36 EXPECT_EQ(bounds.y(), panel->GetBounds().y());
37 EXPECT_EQ(bounds.width(), panel->GetBounds().width());
38 EXPECT_EQ(bounds.height(), panel->GetBounds().height());
168 gfx::Rect bounds = panel->GetBounds(); local
169 EXPECT_LE(primary_work_area.x(), bounds.x());
170 EXPECT_LE(bounds.x(), primary_work_area.right());
171 EXPECT_LE(primary_work_area.y(), bounds
204 gfx::Rect bounds = panel->GetBounds(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DBoxShape.h40 BoxShape(const FloatRoundedRect& bounds) argument
42 , m_bounds(bounds)
H A DBoxShapeTest.cpp44 PassOwnPtr<Shape> createBoxShape(const RoundedRect& bounds, float shapeMargin) argument
46 return Shape::createLayoutBoxShape(bounds, TopToBottomWritingMode, shapeMargin);
88 // A BoxShape's bounds include the top edge but not the bottom edge.
/external/chromium_org/third_party/skia/src/gpu/
H A DGrPathRenderer.cpp17 SkRect* bounds) {
19 *bounds = SkRect::MakeWH(SkIntToScalar(devW), SkIntToScalar(devH));
22 *bounds = path.getBounds();
23 matrix.mapRect(bounds);
14 GetPathDevBounds(const SkPath& path, int devW, int devH, const SkMatrix& matrix, SkRect* bounds) argument
/external/chromium_org/ui/aura/
H A Dlayout_manager.cc18 const gfx::Rect& bounds) {
19 child->SetBoundsInternal(bounds);
17 SetChildBoundsDirect(aura::Window* child, const gfx::Rect& bounds) argument
/external/skia/src/gpu/
H A DGrPathRenderer.cpp17 SkRect* bounds) {
19 *bounds = SkRect::MakeWH(SkIntToScalar(devW), SkIntToScalar(devH));
22 *bounds = path.getBounds();
23 matrix.mapRect(bounds);
14 GetPathDevBounds(const SkPath& path, int devW, int devH, const SkMatrix& matrix, SkRect* bounds) argument
/external/chromium_org/ash/wm/
H A Dwm_event.cc17 SetBoundsEvent::SetBoundsEvent(WMEventType type, const gfx::Rect& bounds) argument
19 requested_bounds_(bounds) {
/external/chromium_org/chrome/browser/chromeos/first_run/steps/
H A Dtray_step.cc25 gfx::Rect bounds = shell_helper()->GetTrayBubbleBounds(); local
26 actor()->AddRectangularHole(bounds.x(), bounds.y(), bounds.width(),
27 bounds.height());
29 position.SetTop(bounds.y());
35 position.SetRight(GetOverlaySize().width() - bounds.x());
37 position.SetLeft(bounds.right());
/external/chromium_org/third_party/skia/gm/
H A Dlerpmode.cpp15 SkRect r, bounds = { 10, 10, 110, 110 }; local
17 r = bounds;
18 r.fRight = bounds.centerX();
21 canvas->saveLayer(&bounds, NULL);
24 r = bounds;
29 r = bounds;
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsTightBounds.cpp26 SkPathOpsBounds bounds = current->bounds(); local
29 bounds.add(current->bounds());
31 *result = bounds;
/external/chromium_org/tools/telemetry/telemetry/web_perf/metrics/
H A Dfast_metric.py7 from telemetry.timeline import bounds namespace
73 bounds.Bounds.GetOverlap(r.start, r.end, s.start, s.end)
/external/chromium_org/ui/aura/test/
H A Dtest_window_tree_client.cc23 const gfx::Rect& bounds) {
21 GetDefaultParent(Window* context, Window* window, const gfx::Rect& bounds) argument
/external/chromium_org/ui/v2/src/
H A Dlayout.cc25 void Layout::SetChildBoundsDirect(View* child, const gfx::Rect& bounds) { argument
26 ViewPrivate(child).set_bounds(bounds);
H A Dview_private.h30 void set_bounds(const gfx::Rect& bounds) { view_->bounds_ = bounds; } argument
/external/chromium_org/ui/wm/test/
H A Dwm_test_helper.cc48 const gfx::Rect& bounds) {
46 GetDefaultParent(aura::Window* context, aura::Window* window, const gfx::Rect& bounds) argument
/external/qemu/android/skin/
H A Dregion.h38 extern void skin_region_get_bounds( SkinRegion* r, SkinRect* bounds );
92 SkinRect bounds; member in struct:SkinRegion
/external/skia/gm/
H A Dlerpmode.cpp15 SkRect r, bounds = { 10, 10, 110, 110 }; local
17 r = bounds;
18 r.fRight = bounds.centerX();
21 canvas->saveLayer(&bounds, NULL);
24 r = bounds;
29 r = bounds;

Completed in 5021 milliseconds

1234567891011>>