OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:clip_rect_
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/cc/layers/
render_surface.h
86
gfx::Rect clip_rect() const { return
clip_rect_
; }
87
void SetClipRect(gfx::Rect clip_rect) {
clip_rect_
= clip_rect; }
133
gfx::Rect
clip_rect_
;
member in class:cc::RenderSurface
render_surface_impl.h
105
gfx::Rect clip_rect() const { return
clip_rect_
; }
163
gfx::Rect
clip_rect_
;
member in class:cc::RenderSurfaceImpl
render_surface_impl.cc
68
if (
clip_rect_
== clip_rect)
72
clip_rect_
= clip_rect;
157
clip_rect_
,
/external/chromium_org/content/child/npapi/
webplugin_delegate_impl_mac.mm
412
gfx::Rect old_clip_rect =
clip_rect_
;
415
clip_rect_
= clip_rect;
416
bool clip_rect_changed = (
clip_rect_
!= old_clip_rect);
422
if (old_clip_rect.IsEmpty() !=
clip_rect_
.IsEmpty()) {
495
window_.clipRect.left =
clip_rect_
.x();
496
window_.clipRect.top =
clip_rect_
.y();
497
window_.clipRect.right =
clip_rect_
.x() +
clip_rect_
.width();
498
window_.clipRect.bottom =
clip_rect_
.y() +
clip_rect_
.height()
[
all
...]
webplugin_delegate_impl_gtk.cc
168
if (window_rect == window_rect_ && clip_rect ==
clip_rect_
)
172
clip_rect_
= clip_rect;
199
window_.clipRect.top =
clip_rect_
.y();
200
window_.clipRect.left =
clip_rect_
.x();
201
window_.clipRect.bottom =
clip_rect_
.y() +
clip_rect_
.height();
202
window_.clipRect.right =
clip_rect_
.x() +
clip_rect_
.width();
220
if (window_rect == window_rect_ && clip_rect ==
clip_rect_
)
223
clip_rect_
= clip_rect
[
all
...]
webplugin_delegate_impl_win.cc
780
if (window_rect_ == window_rect &&
clip_rect_
== clip_rect)
803
clip_rect_
= clip_rect;
824
window_.clipRect.top = std::max(0,
clip_rect_
.y());
825
window_.clipRect.left = std::max(0,
clip_rect_
.x());
826
window_.clipRect.bottom = std::max(0,
clip_rect_
.y() +
clip_rect_
.height());
827
window_.clipRect.right = std::max(0,
clip_rect_
.x() +
clip_rect_
.width());
[
all
...]
webplugin_delegate_impl.h
125
gfx::Rect GetClipRect() const { return
clip_rect_
; }
330
gfx::Rect
clip_rect_
;
member in class:content::WebPluginDelegateImpl
/external/chromium_org/ui/views/corewm/
image_grid.h
68
return grid_->top_left_painter_->
clip_rect_
;
71
return grid_->top_right_painter_->
clip_rect_
;
74
return grid_->bottom_left_painter_->
clip_rect_
;
77
return grid_->bottom_right_painter_->
clip_rect_
;
149
gfx::Rect
clip_rect_
;
member in class:views::corewm::ImageGrid::ImagePainter
image_grid.cc
228
if (clip_rect !=
clip_rect_
) {
229
clip_rect_
= clip_rect;
235
if (!
clip_rect_
.IsEmpty())
236
canvas->ClipRect(
clip_rect_
);
/external/chromium_org/content/renderer/npapi/
webplugin_delegate_proxy.h
256
gfx::Rect
clip_rect_
;
member in class:content::WebPluginDelegateProxy
webplugin_delegate_proxy.cc
529
param.clip_rect =
clip_rect_
;
580
clip_rect_
= clip_rect;
[
all
...]
Completed in 984 milliseconds