/external/webkit/Source/WebKit/android/jni/ |
WebCoreViewBridge.h | 43 m_bounds.setWidth(320); 44 m_bounds.setHeight(240); 45 m_visibleBounds = m_bounds; 46 m_windowBounds = m_bounds; 56 return m_bounds; 71 m_bounds.setWidth(w); 72 m_bounds.setHeight(h); 83 m_bounds.setX(x); 84 m_bounds.setY(y); 94 int width() const { return m_bounds.width(); 108 WebCore::IntRect m_bounds; member in class:WebCoreViewBridge [all...] |
/external/chromium/chrome/browser/ui/tabs/ |
dock_info_win.cc | 283 const gfx::Rect& m_bounds = info.monitor_bounds(); local 284 int mid_x = m_bounds.x() + m_bounds.width() / 2; 285 int mid_y = m_bounds.y() + m_bounds.height() / 2; 288 info.CheckMonitorPoint(screen_point, mid_x, m_bounds.y(), 290 info.CheckMonitorPoint(screen_point, mid_x, m_bounds.bottom(), 292 info.CheckMonitorPoint(screen_point, m_bounds.x(), mid_y, 294 info.CheckMonitorPoint(screen_point, m_bounds.right(), mid_y,
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
android_graphics.cpp | 54 if (canvas->quickReject(m_bounds, SkCanvas::kAA_EdgeType)) { 57 m_bounds.x(), m_bounds.y(), m_bounds.width(), m_bounds.height()); 142 m_bounds = m_node->bounds(m_frame); 147 m_bounds = m_node->hitBounds(m_frame); 150 m_rings.append(m_bounds); 154 m_bounds.inflate(SkScalarCeil(colors.outerWidth()));
|
android_graphics.h | 66 IntRect m_bounds; member in class:android::CursorRing
|
/external/webkit/Source/WebKit2/Platform/ |
Region.cpp | 44 : m_bounds(rect) 413 m_bounds.x(), m_bounds.y(), m_bounds.width(), m_bounds.height()); 420 if (!m_bounds.intersects(region.m_bounds)) { 422 m_bounds = IntRect(); 429 m_bounds = m_shape.bounds(); 437 m_bounds.unite(region.m_bounds) [all...] |
Region.h | 41 WebCore::IntRect bounds() const { return m_bounds; } 42 bool isEmpty() const { return m_bounds.isEmpty(); } 114 WebCore::IntRect m_bounds; member in class:WebKit::Region
|
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/ |
CCLayerImpl.h | 130 const IntSize& bounds() const { return m_bounds; } 131 void setBounds(const IntSize& bounds) { m_bounds = bounds; } 154 IntSize m_bounds; member in class:WebCore::CCLayerImpl
|
/external/webkit/Source/WebCore/platform/graphics/chromium/ |
LayerChromium.h | 88 const IntSize& bounds() const { return m_bounds; } 250 IntSize m_bounds; member in class:WebCore::LayerChromium
|
LayerChromium.cpp | 195 m_bounds = size; 298 layer->setBounds(m_bounds);
|