HomeSort by relevance Sort by last modified time
    Searched defs:contentRect (Results 1 - 13 of 13) sorted by null

  /external/webkit/Source/WebKit2/WebProcess/WebPage/qt/
TiledDrawingAreaQt.cpp 51 IntRect contentRect = enclosingIntRect(FloatRect(tileRect.x() / scale,
55 m_webPage->drawRect(graphicsContext, contentRect);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
RenderSurfaceChromium.h 61 IntRect contentRect() const { return m_contentRect; }
LayerTilerChromium.cpp 130 void LayerTilerChromium::invalidateTiles(const IntRect& contentRect)
139 if (tileRect.intersects(contentRect))
148 void LayerTilerChromium::contentRectToTileIndices(const IntRect& contentRect, int& left, int& top, int& right, int& bottom) const
150 const IntRect layerRect = contentRectToLayerRect(contentRect);
158 IntRect LayerTilerChromium::contentRectToLayerRect(const IntRect& contentRect) const
160 IntPoint pos(contentRect.x() - m_layerPosition.x(), contentRect.y() - m_layerPosition.y());
161 IntRect layerRect(pos, contentRect.size());
165 layerRect = IntRect(IntPoint(0, 0), IntSize(contentRect.width() + pos.x(), contentRect.height() + pos.y()))
    [all...]
LayerRendererChromium.cpp 176 void LayerRendererChromium::setViewport(const IntRect& visibleRect, const IntRect& contentRect, const IntPoint& scrollPosition)
181 m_viewportContentRect = contentRect;
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGImage.cpp 188 IntRect contentRect = enclosingIntRect(repaintRectInLocalCoordinates());
189 if (!contentRect.isEmpty())
190 rects.append(contentRect);
  /external/webkit/Source/WebCore/rendering/
RenderSlider.cpp 116 IntRect contentRect = contentBoxRect();
118 thumbRect.setX(contentRect.x() + (contentRect.width() - thumbRect.width()) / 2);
119 thumbRect.setY(contentRect.y() + static_cast<int>(nextafter((contentRect.height() - thumbRect.height()) + 1, 0) * (1 - fraction)));
121 thumbRect.setX(contentRect.x() + static_cast<int>(nextafter((contentRect.width() - thumbRect.width()) + 1, 0) * fraction));
122 thumbRect.setY(contentRect.y() + (contentRect.height() - thumbRect.height()) / 2);
RenderVideo.cpp 160 IntRect contentRect = contentBoxRect();
161 if (elementSize.isEmpty() || contentRect.isEmpty())
164 IntRect renderBox = contentRect;
171 renderBox.move((contentRect.width() - renderBox.width()) / 2, 0);
176 renderBox.move(0, (contentRect.height() - renderBox.height()) / 2);
RenderEmbeddedObject.cpp 160 FloatRect contentRect;
166 if (!getReplacementTextGeometry(tx, ty, contentRect, path, replacementTextRect, font, run, textWidth))
170 context->clip(contentRect);
184 bool RenderEmbeddedObject::getReplacementTextGeometry(int tx, int ty, FloatRect& contentRect, Path& path, FloatRect& replacementTextRect, Font& font, TextRun& run, float& textWidth)
186 contentRect = contentBoxRect();
187 contentRect.move(tx, ty);
205 float x = (contentRect.size().width() / 2 - replacementTextRect.size().width() / 2) + contentRect.location().x();
206 float y = (contentRect.size().height() / 2 - replacementTextRect.size().height() / 2) + contentRect.location().y()
    [all...]
  /development/ndk/sources/android/native_app_glue/
android_native_app_glue.h 154 ARect contentRect;
251 * find the new content rect in android_app::contentRect.
  /external/webkit/Source/WebKit/chromium/src/
WebViewImpl.cpp     [all...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityRenderObject.cpp 685 IntRect contentRect = m_renderer->absoluteClippedOverflowRect();
688 viewRect.intersect(contentRect);
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp 602 SkIRect contentRect;
603 contentRect.set(0, 0, width, height);
604 SkIRect total(contentRect);
645 if (!contentRect.contains(total)) {
    [all...]
  /prebuilt/darwin-x86_64/swt/
swt.jar 

Completed in 352 milliseconds