HomeSort by relevance Sort by last modified time
    Searched refs:IntSize (Results 376 - 400 of 678) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/platform/graphics/filters/
FEConvolveMatrix.cpp 37 FEConvolveMatrix::FEConvolveMatrix(Filter* filter, const IntSize& kernelSize,
52 PassRefPtr<FEConvolveMatrix> FEConvolveMatrix::create(Filter* filter, const IntSize& kernelSize,
61 IntSize FEConvolveMatrix::kernelSize() const
66 void FEConvolveMatrix::setKernelSize(const IntSize& kernelSize)
418 IntSize paintSize = absolutePaintRect().size();
  /external/webkit/Source/WebCore/platform/graphics/haiku/
ImageBufferHaiku.cpp 43 ImageBufferData::ImageBufferData(const IntSize& size)
69 ImageBuffer::ImageBuffer(const IntSize& size, ImageColorSpace imageColorSpace, RenderingMode, bool& success)
215 static PassRefPtr<ImageData> getImageData(const IntRect& rect, const ImageBufferData& imageData, const IntSize& size, bool premultiplied)
217 RefPtr<ImageData> result = ImageData::create(IntSize(rect.width(), rect.height()));
272 static void putImageData(ImageData* source, const IntRect& sourceRect, const IntPoint& destPoint, ImageBufferData& imageData, const IntSize& size, bool premultiplied)
  /external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.cpp 423 void MediaPlayerPrivatePhonon::setSize(const IntSize& newSize)
437 IntSize MediaPlayerPrivatePhonon::naturalSize() const
442 return IntSize();
448 return IntSize();
452 IntSize naturalSize(videoSize.width(), videoSize.height());
MediaPlayerPrivateQt.cpp 531 void MediaPlayerPrivateQt::setSize(const IntSize& size)
543 IntSize MediaPlayerPrivateQt::naturalSize() const
547 return IntSize();
633 virtual IntSize size() const
635 return m_videoItem ? IntSize(m_videoItem.data()->size().width(), m_videoItem.data()->size().height()) : IntSize();
ContextShadowQt.cpp 151 blurLayerImage(m_layerImage.bits(), IntSize(m_layerImage.width(), m_layerImage.height()),
  /external/webkit/Source/WebKit2/UIProcess/gtk/
WebView.cpp 280 void WebView::setSize(GtkWidget*, IntSize windowSize)
282 m_page->drawingArea()->setSize(windowSize, IntSize());
372 void WebView::scrollView(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset)
377 WebCore::IntSize WebView::viewSize()
381 return IntSize(allocation.width, allocation.height);
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.cpp 81 : HUDWidget(IntRect(position, IntSize()))
134 IntSize radius(m_rect.height() / 2, m_rect.height() / 2);
239 , m_volumeSlider(HUDSlider::RoundButton, volumeSliderButtonSize, IntRect(IntPoint(margin + buttonMiniSize, marginTop + (buttonSize - buttonMiniSize) / 2 + buttonMiniSize / 2 - sliderHeight / 2), IntSize(volumeSliderWidth, sliderHeight)))
240 , m_timeSlider(HUDSlider::DiamondButton, timeSliderButtonSize, IntRect(IntPoint(windowWidth / 2 - timeSliderWidth / 2, windowHeight - margin - sliderHeight), IntSize(timeSliderWidth, sliderHeight)))
439 BitmapInfo bitmapInfo = BitmapInfo::createBottomUp(IntSize(windowWidth, windowHeight));
494 IntSize outerRadius(borderRadius, borderRadius);
496 IntSize innerRadius(borderRadius - borderThickness, borderRadius - borderThickness);
WebIconDatabase.cpp 170 IntSize intSize(*size);
174 icon = iconDatabase().synchronousIconForPageURL(String(url, SysStringLen(url)), intSize);
274 iconDatabase().synchronousIconForPageURL(urlString, IntSize(0, 0));
285 BitmapInfo bmInfo = BitmapInfo::create(IntSize(*size));
  /external/webkit/Source/WebCore/platform/graphics/opengl/
TextureMapperGL.cpp 226 virtual IntSize size() const;
228 virtual void reset(const IntSize&, bool opaque);
239 IntSize m_textureSize;
243 IntSize m_actualSize;
442 void BitmapTextureGL::reset(const IntSize& newSize, bool opaque)
446 IntSize newTextureSize = nextPowerOfTwo(newSize);
520 m_textureSize = IntSize();
529 IntSize BitmapTextureGL::size() const
534 static inline TransformationMatrix createProjectionMatrix(const IntSize& size, bool flip)
604 void TextureMapperGL::paintToTarget(const BitmapTexture& aSurface, const IntSize& surfaceSize, const TransformationMatrix& transform, float opacity, const IntRect& visibleRect
    [all...]
  /external/webkit/Source/WebCore/platform/gtk/
RenderThemeGtk.cpp 230 IntSize iconSize(gdk_pixbuf_get_width(icon), gdk_pixbuf_get_height(icon));
562 rangeRect.setSize(IntSize(width, trackRect.height()));
589 paintInfo.context->fillRoundedRect(r, IntSize(3, 3), IntSize(3, 3), IntSize(3, 3), IntSize(3, 3), m_sliderThumbColor, ColorSpaceDeviceRGB);
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkpage.cpp 151 void QWKPagePrivate::scrollView(const WebCore::IntRect& scrollRect, const WebCore::IntSize& scrollOffset)
156 WebCore::IntSize QWKPagePrivate::viewSize()
159 return WebCore::IntSize();
198 void QWKPagePrivate::didChangeContentsSize(const IntSize& newSize)
657 d->page->drawingArea()->setSize(IntSize(size), IntSize());
  /external/webkit/Source/WebKit2/UIProcess/
TiledDrawingAreaProxy.cpp 112 void TiledDrawingAreaProxy::didSetSize(const IntSize& viewSize)
118 setSize(m_lastSetViewSize, IntSize());
143 IntSize size;
207 void TiledDrawingAreaProxy::setTileSize(const IntSize& size)
228 void TiledDrawingAreaProxy::takeSnapshot(const IntSize& size, const IntRect& contentsRect)
385 IntPoint viewCenter = viewport.location() + IntSize(viewport.width() / 2, viewport.height() / 2);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebFrame.cpp 294 IntSize WebFrame::size() const
297 return IntSize();
301 return IntSize();
503 IntSize WebFrame::scrollOffset() const
506 return IntSize();
510 return IntSize();
  /external/webkit/Source/WebCore/page/
EventHandler.h 122 const IntSize& padding = IntSize());
443 IntSize m_offsetFromResizeCorner; // in the coords of m_resizeLayer
DragController.h 84 static const IntSize& maxDragImageSize();
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageCG.cpp 91 m_size = IntSize(width, height);
157 CGImageRef BitmapImage::getFirstCGImageRefOfSize(const IntSize& size)
162 if (IntSize(CGImageGetWidth(cgImage), CGImageGetHeight(cgImage)) == size)
ImageBufferDataCG.cpp 52 ImageBufferData::ImageBufferData(const IntSize&)
111 PassRefPtr<ByteArray> ImageBufferData::getData(const IntRect& rect, const IntSize& size, bool accelerateRendering, bool unmultiplied) const
255 void ImageBufferData::putData(ByteArray*& source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, const IntSize& size, bool accelerateRendering, bool unmultiplied)
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebFrameLoaderClient.h 205 virtual PassRefPtr<WebCore::Widget> createPlugin(const WebCore::IntSize&, WebCore::HTMLPlugInElement*, const WebCore::KURL&, const Vector<WTF::String>&,
209 virtual PassRefPtr<WebCore::Widget> createJavaAppletWidget(const WebCore::IntSize&, WebCore::HTMLAppletElement*, const WebCore::KURL& baseURL,
213 virtual PassRefPtr<WebCore::Widget> createMediaPlayerProxyPlugin(const WebCore::IntSize&, WebCore::HTMLMediaElement*, const WebCore::KURL&,
  /external/webkit/Source/WebCore/accessibility/
AccessibilitySlider.cpp 187 IntSize AccessibilitySliderThumb::size() const
AccessibilityTableColumn.cpp 72 IntSize AccessibilityTableColumn::size() const
  /external/webkit/Source/WebCore/html/
HTMLMapElement.cpp 32 #include "IntSize.h"
61 bool HTMLMapElement::mapMouseEvent(int x, int y, const IntSize& size, HitTestResult& result)
  /external/webkit/Source/WebCore/loader/
SubframeLoader.cpp 166 IntSize size;
169 size = IntSize(renderer->contentWidth(), renderer->contentHeight());
188 PassRefPtr<Widget> SubframeLoader::createJavaAppletWidget(const IntSize& size, HTMLAppletElement* element, const HashMap<String, String>& args)
345 IntSize contentSize(renderer->contentWidth(), renderer->contentHeight());
  /external/webkit/Source/WebCore/platform/
Widget.cpp 109 void Widget::setBoundsSize(const IntSize&)
  /external/webkit/Source/WebCore/platform/graphics/android/context/
GraphicsContextAndroid.cpp 223 void GraphicsContext::fillRoundedRect(const IntRect& rect, const IntSize& topLeft, const IntSize& topRight,
224 const IntSize& bottomLeft, const IntSize& bottomRight,
  /external/webkit/Source/WebCore/platform/graphics/chromium/
Canvas2DLayerChromium.cpp 73 IntSize size = m_drawingBuffer->size();

Completed in 1013 milliseconds

<<11121314151617181920>>