Searched defs:rect (Results 126 - 150 of 1054) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/openssl/openssl/apps/
H A Dwinrand.c120 RECT rect; local
127 GetClientRect(hwnd, &rect);
129 &rect, DT_SINGLELINE | DT_CENTER | DT_VCENTER);
/external/chromium_org/third_party/skia/bench/
H A DXfermodeBench.cpp43 SkRect rect = SkRect::MakeXYWH( variable
49 canvas->drawRect(rect, paint);
/external/chromium_org/third_party/skia/gm/
H A Dbigmatrix.cpp61 SkRect rect = {pt.fX - small, pt.fY - small, local
63 canvas->drawRect(rect, paint);
85 rect.setLTRB(pt.fX - small, pt.fY - small,
87 canvas->drawRect(rect, paint);
H A Dmatriximagefilter.cpp25 void draw(SkCanvas* canvas, const SkRect& rect, const SkBitmap& bitmap, argument
31 canvas->saveLayer(&rect, &paint);
H A Dpathinterior.cpp16 SkRect rect = r; local
17 rect.inset(r.width() / 8, r.height() / 8);
18 return rect;
44 SkRect rect; local
46 bool hasInterior = path.hasRectangularInterior(&rect);
60 canvas->drawRect(rect, paint);
67 const SkRect rect = { 0, 0, 80, 80 }; variable
68 const SkScalar RAD = rect.width()/8;
82 SkRect r = insetFirst ? inset(rect) : rect;
[all...]
H A Dstrokerect.cpp14 static void draw_path(SkCanvas* canvas, const SkPath& path, const SkRect& rect, argument
23 canvas->drawRect(rect, paint);
/external/chromium_org/third_party/skia/src/effects/
H A DSkRectShaderImageFilter.cpp16 SkRectShaderImageFilter* SkRectShaderImageFilter::Create(SkShader* s, const SkRect& rect) { argument
19 if (rect.width() == 0 || rect.height() == 0) {
22 CropRect cropRect(rect, flags);
75 SkRect rect = SkRect::MakeWH(SkIntToScalar(bounds.width()), SkIntToScalar(bounds.height())); local
76 canvas.drawRect(rect, paint);
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/gtk/
H A Dbrowser.c19 GdkRectangle rect; local
29 gdk_screen_get_monitor_geometry(screen, monitor, &rect);
31 width = rect.width * 3 / 4;
32 height = rect.height * 3 / 4;
/external/openssl/apps/
H A Dwinrand.c120 RECT rect; local
127 GetClientRect(hwnd, &rect);
129 &rect, DT_SINGLELINE | DT_CENTER | DT_VCENTER);
/external/skia/bench/
H A DXfermodeBench.cpp43 SkRect rect = SkRect::MakeXYWH( variable
49 canvas->drawRect(rect, paint);
/external/skia/gm/
H A Dbigmatrix.cpp61 SkRect rect = {pt.fX - small, pt.fY - small, local
63 canvas->drawRect(rect, paint);
85 rect.setLTRB(pt.fX - small, pt.fY - small,
87 canvas->drawRect(rect, paint);
H A Dmatriximagefilter.cpp25 void draw(SkCanvas* canvas, const SkRect& rect, const SkBitmap& bitmap, argument
31 canvas->saveLayer(&rect, &paint);
H A Dpathinterior.cpp16 SkRect rect = r; local
17 rect.inset(r.width() / 8, r.height() / 8);
18 return rect;
44 SkRect rect; local
46 bool hasInterior = path.hasRectangularInterior(&rect);
60 canvas->drawRect(rect, paint);
67 const SkRect rect = { 0, 0, 80, 80 }; variable
68 const SkScalar RAD = rect.width()/8;
82 SkRect r = insetFirst ? inset(rect) : rect;
[all...]
H A Dstrokerect.cpp14 static void draw_path(SkCanvas* canvas, const SkPath& path, const SkRect& rect, argument
23 canvas->drawRect(rect, paint);
/external/skia/src/effects/
H A DSkRectShaderImageFilter.cpp16 SkRectShaderImageFilter* SkRectShaderImageFilter::Create(SkShader* s, const SkRect& rect) { argument
19 if (rect.width() == 0 || rect.height() == 0) {
22 CropRect cropRect(rect, flags);
75 SkRect rect = SkRect::MakeWH(SkIntToScalar(bounds.width()), SkIntToScalar(bounds.height())); local
76 canvas.drawRect(rect, paint);
/external/chromium_org/ash/shell/
H A Dpanel_window.cc26 views::Widget* PanelWindow::CreatePanelWindow(const gfx::Rect& rect) { argument
28 panel_window->params().bounds = rect;
/external/chromium_org/cc/base/
H A Dregion.cc17 Region::Region(const gfx::Rect& rect) argument
18 : skregion_(gfx::RectToSkIRect(rect)) {
24 const Region& Region::operator=(const gfx::Rect& rect) { argument
25 skregion_ = SkRegion(gfx::RectToSkIRect(rect));
54 bool Region::Contains(const gfx::Rect& rect) const {
55 if (rect.IsEmpty())
57 return skregion_.contains(gfx::RectToSkIRect(rect));
66 bool Region::Intersects(const gfx::Rect& rect) const {
67 return skregion_.intersects(gfx::RectToSkIRect(rect));
74 void Region::Subtract(const gfx::Rect& rect) { argument
82 Union(const gfx::Rect& rect) argument
90 Intersect(const gfx::Rect& rect) argument
[all...]
H A Dregion.h14 #include "ui/gfx/rect.h"
27 Region(const gfx::Rect& rect); // NOLINT(runtime/explicit)
30 const Region& operator=(const gfx::Rect& rect);
39 bool Contains(const gfx::Rect& rect) const;
42 bool Intersects(const gfx::Rect& rect) const;
45 void Subtract(const gfx::Rect& rect);
47 void Union(const gfx::Rect& rect);
49 void Intersect(const gfx::Rect& rect);
69 gfx::Rect rect() const { function in class:cc::Region::Iterator
70 return gfx::SkIRectToRect(it_.rect());
[all...]
/external/chromium_org/cc/debug/
H A Ddebug_rect_history.h12 #include "ui/gfx/rect.h"
61 : type(new_type), rect(new_rect) {}
64 gfx::Rect rect; member in struct:cc::DebugRect
/external/chromium_org/cc/output/
H A Dsoftware_output_device.cc47 void SoftwareOutputDevice::CopyToPixels(const gfx::Rect& rect, void* pixels) { argument
49 SkImageInfo info = SkImageInfo::MakeN32Premul(rect.width(), rect.height());
50 canvas_->readPixels(info, pixels, info.minRowBytes(), rect.x(), rect.y());
/external/chromium_org/cc/quads/
H A Ddraw_quad.cc40 const gfx::Rect& rect,
44 DCHECK(rect.Contains(visible_rect)) << "rect: " << rect.ToString()
47 DCHECK(opaque_rect.IsEmpty() || rect.Contains(opaque_rect))
48 << "rect: " << rect.ToString() << "opaque_rect "
52 this->rect = rect;
114 value->Set("content_space_rect", MathUtil::AsValue(rect)
38 SetAll(const SharedQuadState* shared_quad_state, Material material, const gfx::Rect& rect, const gfx::Rect& opaque_rect, const gfx::Rect& visible_rect, bool needs_blending) argument
[all...]
H A Dpicture_draw_quad.cc24 const gfx::Rect& rect,
36 rect,
49 const gfx::Rect& rect,
61 rect,
23 SetNew(const SharedQuadState* shared_quad_state, const gfx::Rect& rect, const gfx::Rect& opaque_rect, const gfx::Rect& visible_rect, const gfx::RectF& tex_coord_rect, const gfx::Size& texture_size, ResourceFormat texture_format, const gfx::Rect& content_rect, float contents_scale, scoped_refptr<PicturePileImpl> picture_pile) argument
48 SetAll(const SharedQuadState* shared_quad_state, const gfx::Rect& rect, const gfx::Rect& opaque_rect, const gfx::Rect& visible_rect, bool needs_blending, const gfx::RectF& tex_coord_rect, const gfx::Size& texture_size, ResourceFormat texture_format, const gfx::Rect& content_rect, float contents_scale, scoped_refptr<PicturePileImpl> picture_pile) argument
H A Drender_pass_draw_quad.cc39 const gfx::Rect& rect,
53 SetAll(shared_quad_state, rect, opaque_rect, visible_rect, needs_blending,
61 const gfx::Rect& rect,
75 DrawQuad::SetAll(shared_quad_state, DrawQuad::RENDER_PASS, rect, opaque_rect,
37 SetNew( const SharedQuadState* shared_quad_state, const gfx::Rect& rect, const gfx::Rect& visible_rect, RenderPass::Id render_pass_id, bool is_replica, ResourceProvider::ResourceId mask_resource_id, const gfx::Rect& contents_changed_since_last_frame, const gfx::RectF& mask_uv_rect, const FilterOperations& filters, const FilterOperations& background_filters) argument
59 SetAll( const SharedQuadState* shared_quad_state, const gfx::Rect& rect, const gfx::Rect& opaque_rect, const gfx::Rect& visible_rect, bool needs_blending, RenderPass::Id render_pass_id, bool is_replica, ResourceProvider::ResourceId mask_resource_id, const gfx::Rect& contents_changed_since_last_frame, const gfx::RectF& mask_uv_rect, const FilterOperations& filters, const FilterOperations& background_filters) argument
H A Dtexture_draw_quad.cc30 const gfx::Rect& rect,
42 DrawQuad::SetAll(shared_quad_state, DrawQuad::TEXTURE_CONTENT, rect,
57 const gfx::Rect& rect,
66 DrawQuad::SetAll(shared_quad_state, DrawQuad::TEXTURE_CONTENT, rect,
29 SetNew(const SharedQuadState* shared_quad_state, const gfx::Rect& rect, const gfx::Rect& opaque_rect, const gfx::Rect& visible_rect, unsigned resource_id, bool premultiplied_alpha, const gfx::PointF& uv_top_left, const gfx::PointF& uv_bottom_right, SkColor background_color, const float vertex_opacity[4], bool flipped) argument
56 SetAll(const SharedQuadState* shared_quad_state, const gfx::Rect& rect, const gfx::Rect& opaque_rect, const gfx::Rect& visible_rect, bool needs_blending, unsigned resource_id, bool premultiplied_alpha, const gfx::PointF& uv_top_left, const gfx::PointF& uv_bottom_right, SkColor background_color, const float vertex_opacity[4], bool flipped) argument
H A Dtile_draw_quad.cc25 const gfx::Rect& rect,
34 rect,
44 const gfx::Rect& rect,
52 ContentDrawQuadBase::SetAll(shared_quad_state, DrawQuad::TILED_CONTENT, rect,
24 SetNew(const SharedQuadState* shared_quad_state, const gfx::Rect& rect, const gfx::Rect& opaque_rect, const gfx::Rect& visible_rect, unsigned resource_id, const gfx::RectF& tex_coord_rect, const gfx::Size& texture_size, bool swizzle_contents) argument
43 SetAll(const SharedQuadState* shared_quad_state, const gfx::Rect& rect, const gfx::Rect& opaque_rect, const gfx::Rect& visible_rect, bool needs_blending, unsigned resource_id, const gfx::RectF& tex_coord_rect, const gfx::Size& texture_size, bool swizzle_contents) argument

Completed in 541 milliseconds

1234567891011>>