HomeSort by relevance Sort by last modified time
    Searched refs:rect (Results 251 - 275 of 1773) sorted by null

<<11121314151617181920>>

  /external/chromium_org/cc/quads/
tile_draw_quad.h 18 gfx::Rect rect,
19 gfx::Rect opaque_rect,
26 gfx::Rect rect,
27 gfx::Rect opaque_rect,
28 gfx::Rect visible_rect,
yuv_video_draw_quad.h 23 gfx::Rect rect,
24 gfx::Rect opaque_rect,
32 gfx::Rect rect,
33 gfx::Rect opaque_rect,
34 gfx::Rect visible_rect,
picture_draw_quad.cc 23 gfx::Rect rect,
24 gfx::Rect opaque_rect,
28 gfx::Rect content_rect,
33 rect, opaque_rect, tex_coord_rect, texture_size,
42 gfx::Rect rect,
43 gfx::Rect opaque_rect,
44 gfx::Rect visible_rect,
49 gfx::Rect content_rect
    [all...]
  /external/chromium_org/cc/test/
fake_picture_layer_tiling_client.cc 19 recorded_region_ = Region(gfx::Rect(size));
37 gfx::Rect rect) {
43 rect,
44 gfx::Rect(),
layer_test_common.h 22 namespace gfx { class Rect; }
32 gfx::Rect rect);
  /external/chromium_org/chrome/browser/ui/tabs/
tab_audio_indicator.cc 12 #include "ui/gfx/rect.h"
87 void TabAudioIndicator::Paint(gfx::Canvas* canvas, const gfx::Rect& rect) {
89 canvas->ClipRect(rect);
97 int x = rect.right();
105 int y = rect.bottom() - levels[i] * 2;
109 gfx::Rect equalizer_rect(x, y, image->width(), image->height());
124 int dst_x = rect.x() - (favicon_.width() - rect.width()) / 2;
125 int dst_y = rect.y() - (favicon_.height()- rect.height()) / 2
    [all...]
  /external/chromium_org/chrome/browser/ui/views/download/
download_shelf_context_menu_view.cc 25 const gfx::Rect& rect,
47 rect,
download_shelf_context_menu_view.h 20 class Rect;
34 // |rect| is the bounding area for positioning the menu in screen coordinates.
35 // The menu will be positioned above or below but not overlapping |rect|.
37 const gfx::Rect& rect,
  /external/chromium_org/content/renderer/
paint_aggregator.h 12 #include "ui/gfx/rect.h"
22 // calls. If |scroll_rect| is non-empty, then that rect should be scrolled
32 // Returns the rect damaged by scrolling within |scroll_rect| by
33 // |scroll_delta|. This rect must be repainted.
34 gfx::Rect GetScrollDamage() const;
36 // Returns the smallest rect containing all paint rects.
37 gfx::Rect GetPaintBounds() const;
40 gfx::Rect scroll_rect;
41 std::vector<gfx::Rect> paint_rects;
52 // The given rect should be repainted
    [all...]
  /external/chromium_org/content/renderer/pepper/
ppb_widget_impl.h 15 class Rect;
34 virtual PP_Bool Paint(const PP_Rect* rect, PP_Resource ) OVERRIDE;
40 // Notifies the plugin instance that the given rect needs to be repainted.
46 virtual PP_Bool PaintInternal(const gfx::Rect& rect,
  /external/chromium_org/ppapi/c/dev/
ppb_widget_dev.h 47 const struct PP_Rect* rect,
73 const struct PP_Rect* rect,
  /external/chromium_org/ppapi/c/
ppb_view.h 71 * @param rect A <code>PP_Rect</code> receiving the rectangle on success.
76 PP_Bool (*GetRect)(PP_Resource resource, struct PP_Rect* rect);
165 * @param clip Output argument receiving the clip rect on success.
168 * clip rect was filled in, <code>PP_FALSE</code> if not.
206 PP_Bool (*GetRect)(PP_Resource resource, struct PP_Rect* rect);
  /external/chromium_org/ppapi/utility/graphics/
paint_aggregator.h 12 #include "ppapi/cpp/rect.h"
53 Rect scroll_rect;
59 std::vector<Rect> paint_rects;
62 Rect paint_bounds;
68 /// Setter function setting the max ratio of paint rect area to scroll rect
72 /// rect grows too large, then we might as well just treat
73 /// the scroll rect as a paint rect.
75 /// @param[in] area The max ratio of paint rect area to scroll rect area tha
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
RenderedDocumentMarker.h 52 static const LayoutRect rect = LayoutRect(-1, -1, -1, -1); local
53 return rect;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerFilterInfo.h 58 void expandDirtySourceRect(const LayoutRect& rect) { m_dirtySourceRect.unite(rect); }
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGSVGElement.idl 51 NodeList getIntersectionList([Default=Undefined] optional SVGRect rect,
53 NodeList getEnclosureList([Default=Undefined] optional SVGRect rect,
56 [Default=Undefined] optional SVGRect rect);
58 [Default=Undefined] optional SVGRect rect);
  /external/chromium_org/third_party/skia/src/core/
SkScan.h 35 static void FillRect(const SkRect& rect, const SkRasterClip& clip,
37 SkScan::FillXRect(*(const SkXRect*)&rect, clip, blitter);
39 static void AntiFillRect(const SkRect& rect, const SkRasterClip& clip,
41 SkScan::AntiFillXRect(*(const SkXRect*)&rect, clip, blitter);
71 static void FillRect(const SkRect& rect, const SkRegion* clip,
73 SkScan::FillXRect(*(const SkXRect*)&rect, clip, blitter);
75 static void AntiFillRect(const SkRect& rect, const SkRegion* clip,
77 SkScan::AntiFillXRect(*(const SkXRect*)&rect, clip, blitter);
97 /** Assign an SkXRect from a SkIRect, by promoting the src rect's coordinates
108 /** Assign an SkXRect from a SkRect, by promoting the src rect's coordinate
    [all...]
  /external/chromium_org/ui/views/widget/
monitor_win.cc 10 #include "ui/gfx/rect.h"
14 gfx::Rect GetMonitorBoundsForRect(const gfx::Rect& rect) {
15 RECT p_rect = rect.ToRECT();
21 return gfx::Rect(mi.rcWork);
24 return gfx::Rect();
  /external/skia/gm/
arcofzorro.cpp 34 SkRect rect = SkRect::MakeXYWH(10, 10, 200, 200); variable
50 canvas->drawArc(rect, 0, arc, false, p);
  /external/skia/src/core/
SkScan.h 35 static void FillRect(const SkRect& rect, const SkRasterClip& clip,
37 SkScan::FillXRect(*(const SkXRect*)&rect, clip, blitter);
39 static void AntiFillRect(const SkRect& rect, const SkRasterClip& clip,
41 SkScan::AntiFillXRect(*(const SkXRect*)&rect, clip, blitter);
71 static void FillRect(const SkRect& rect, const SkRegion* clip,
73 SkScan::FillXRect(*(const SkXRect*)&rect, clip, blitter);
75 static void AntiFillRect(const SkRect& rect, const SkRegion* clip,
77 SkScan::AntiFillXRect(*(const SkXRect*)&rect, clip, blitter);
97 /** Assign an SkXRect from a SkIRect, by promoting the src rect's coordinates
108 /** Assign an SkXRect from a SkRect, by promoting the src rect's coordinate
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
signalbar.cpp 54 opts.rect = option.rect;
  /external/chromium/webkit/glue/media/
web_video_renderer.h 23 // This method is called with the same rect as the Paint() method and could
29 virtual void SetRect(const gfx::Rect& rect) = 0;
36 const gfx::Rect& dest_rect) = 0;
  /external/chromium_org/ash/wm/
coordinate_conversion.h 17 class Rect;
28 // Returns the RootWindow that shares the most area with |rect| in
30 ASH_EXPORT aura::RootWindow* GetRootWindowMatching(const gfx::Rect& rect);
  /external/chromium_org/chrome/browser/ui/cocoa/tabs/
tab_projecting_image_view.h 22 - (id)initWithFrame:(NSRect)rect
  /external/chromium_org/content/browser/renderer_host/
text_input_client_message_filter.h 12 class Rect;
39 void OnGotFirstRectForRange(const gfx::Rect& rect);

Completed in 351 milliseconds

<<11121314151617181920>>