/external/chromium_org/cc/resources/ |
skpicture_content_layer_updater.cc | 25 gfx::Rect content_rect, 31 picture_.beginRecording(content_rect.width(), content_rect.height()); 35 content_rect.origin(), 42 duration, content_rect.width() * content_rect.height());
|
resource_update.cc | 15 gfx::Rect content_rect, 18 CHECK(content_rect.Contains(source_rect)); 22 update.content_rect = content_rect; 31 gfx::Rect content_rect, 34 CHECK(content_rect.Contains(source_rect)); 39 update.content_rect = content_rect;
|
layer_painter.h | 23 gfx::Rect content_rect,
|
resource_update.h | 24 gfx::Rect content_rect, 29 gfx::Rect content_rect, 39 gfx::Rect content_rect; member in struct:cc::ResourceUpdate
|
bitmap_content_layer_updater.cc | 57 gfx::Rect content_rect, 62 if (canvas_size_ != content_rect.size()) { 65 canvas_size_ = content_rect.size(); 77 content_rect.origin(), 85 content_rect.width() * content_rect.height()); 97 content_rect(),
|
layer_tiling_data.cc | 69 void LayerTilingData::ContentRectToTileIndices(gfx::Rect content_rect, 78 DCHECK(!content_rect.IsEmpty()); 80 *left = tiling_data_.TileXIndexFromSrcCoord(content_rect.x()); 81 *top = tiling_data_.TileYIndexFromSrcCoord(content_rect.y()); 82 *right = tiling_data_.TileXIndexFromSrcCoord(content_rect.right() - 1); 83 *bottom = tiling_data_.TileYIndexFromSrcCoord(content_rect.bottom() - 1); 93 gfx::Rect content_rect) const { 94 if (content_rect.IsEmpty()) 99 ContentRectToTileIndices(content_rect, &left, &top, &right, &bottom); 107 gfx::IntersectRects(content_rect, tile->opaque_rect()) [all...] |
caching_bitmap_content_layer_updater.h | 21 virtual void PrepareToUpdate(gfx::Rect content_rect,
|
content_layer_updater.cc | 48 gfx::Rect content_rect(origin, gfx::Size(device->width(), device->height())); 50 gfx::Rect layer_rect = content_rect; 57 content_rect, 1.f / contents_width_scale, 1.f / contents_height_scale); 80 content_rect_ = content_rect;
|
skpicture_content_layer_updater.h | 17 // This class records the content_rect into an SkPicture. Subclasses, provide 30 virtual void PrepareToUpdate(gfx::Rect content_rect,
|
picture_pile_impl.cc | 117 gfx::Rect content_rect(gfx::ToCeiledSize(total_content_size)); 122 gfx::Rect deflated_content_rect = content_rect; 129 gfx::Rect inflated_content_rect = content_rect; 149 gfx::Rect content_rect, 155 content_rect, 1.f / contents_scale); 167 // of the rects will have to fit into |content_rect|, so we can start with 199 region = content_rect; 222 gfx::Rect content_rect = total_content_rect; local 223 content_rect.Intersect(canvas_rect); 225 canvas->clipRect(gfx::RectToSkRect(content_rect), [all...] |
content_layer_updater.h | 38 gfx::Rect content_rect() const { return content_rect_; } function in class:cc::ContentLayerUpdater
|
picture_pile_impl.h | 74 void AnalyzeInRect(gfx::Rect content_rect, 78 void AnalyzeInRect(gfx::Rect content_rect, 85 PixelRefIterator(gfx::Rect content_rect, 133 gfx::Rect content_rect,
|
/external/chromium_org/printing/ |
printed_page.cc | 29 const gfx::Size& paper_size, gfx::Rect* content_rect) const { 30 *content_rect = page_content_rect(); 33 content_rect->set_x(content_rect->x() + diff / 2); 37 content_rect->set_y(content_rect->y() + diff / 2);
|
/external/chromium/chrome/browser/ui/window_snapshot/ |
window_snapshot_win.cc | 23 RECT content_rect = {0, 0, 0, 0}; local 24 ::GetWindowRect(window_handle, &content_rect); 25 content_rect.right++; // Match what PrintWindow wants. 26 int width = content_rect.right - content_rect.left; 27 int height = content_rect.bottom - content_rect.top;
|
/external/chromium_org/cc/quads/ |
picture_draw_quad.cc | 29 gfx::Rect content_rect, 40 this->content_rect = content_rect; 54 gfx::Rect content_rect, 67 this->content_rect = content_rect; 86 value->Set("content_rect", MathUtil::AsValue(content_rect).release());
|
picture_draw_quad.h | 31 gfx::Rect content_rect, 43 gfx::Rect content_rect, 47 gfx::Rect content_rect; member in class:cc::PictureDrawQuad
|
/external/chromium_org/cc/debug/ |
rasterize_and_record_benchmark_impl.cc | 83 gfx::Rect content_rect = (*it)->content_rect(); local 91 content_rect.width(), 92 content_rect.height()); 101 content_rect, contents_scale, &analysis, NULL); 102 picture_pile->RasterToBitmap(&canvas, content_rect, contents_scale, NULL); 110 content_rect.width() * content_rect.height();
|
/external/chromium_org/ui/snapshot/ |
snapshot_win.cc | 19 RECT content_rect = {0, 0, 0, 0}; local 21 ::GetWindowRect(window_handle, &content_rect); 27 content_rect = monitor_info.rcMonitor; 30 content_rect.right++; // Match what PrintWindow wants. 32 return gfx::Rect(content_rect.right - content_rect.left, 33 content_rect.bottom - content_rect.top);
|
/external/chromium_org/cc/layers/ |
content_layer_unittest.cc | 36 gfx::Rect content_rect(10, 10, 100, 100); 49 updater->PrepareToUpdate(content_rect,
|
render_surface_unittest.cc | 48 // Currently, the content_rect, clip_rect, and 96 gfx::Rect content_rect(0, 0, 50, 50); 103 render_surface->SetContentRect(content_rect); 125 EXPECT_RECT_EQ(content_rect, 159 gfx::Rect content_rect(0, 0, 50, 50); 164 render_surface->SetContentRect(content_rect); 174 EXPECT_RECT_EQ(content_rect, pass->output_rect);
|
render_surface.h | 32 void SetContentRect(gfx::Rect content_rect) { content_rect_ = content_rect; } 33 gfx::Rect content_rect() const { return content_rect_; } function in class:cc::RenderSurface
|
/external/chromium_org/cc/input/ |
scrollbar.h | 36 gfx::Rect content_rect) = 0;
|
/sdk/emulator/opengl/host/libs/libOpenglRender/ |
NativeMacSubWindow.m | 45 NSRect content_rect = [win contentRectForFrameRect:[win frame]]; 46 int cocoa_y = (int)content_rect.size.height - (y + height);
|
/external/chromium_org/cc/trees/ |
occlusion_tracker.cc | 62 return target_surface->content_rect(); 335 old_target, false, old_surface->content_rect()); 338 old_target, true, old_surface->content_rect()); 433 layer->render_target()->render_surface()->content_rect()); 500 gfx::Rect content_rect, 506 if (content_rect.IsEmpty()) 531 MathUtil::MapClippedRect(draw_transform, gfx::RectF(content_rect))); 549 gfx::Rect content_rect, 554 return content_rect; 555 if (content_rect.IsEmpty() [all...] |
occlusion_tracker.h | 51 gfx::Rect content_rect, 55 // Gives an unoccluded sub-rect of |content_rect| in the content space of a 61 gfx::Rect content_rect, 65 // Gives an unoccluded sub-rect of |content_rect| in the content space of the 71 gfx::Rect content_rect) const;
|