Searched defs:IntSize (Results 1 - 25 of 39) sorted by relevance

12

/external/webkit/Source/WebCore/platform/graphics/brew/
H A DIntSizeBrew.cpp27 #include "IntSize.h"
33 IntSize::IntSize(const AEESize& size) function in class:WebCore::IntSize
39 IntSize::operator AEESize() const
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DIntSizeCG.cpp27 #include "IntSize.h"
35 IntSize::IntSize(const CGSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s.height)) function in class:WebCore::IntSize
39 IntSize::operator CGSize() const
H A DImageBufferDataCG.cpp52 ImageBufferData::ImageBufferData(const IntSize&) argument
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/WebCore/platform/graphics/haiku/
H A DIntSizeHaiku.cpp29 #include "IntSize.h"
36 IntSize::IntSize(const BSize& size) function in class:WebCore::IntSize
42 IntSize::operator BSize() const
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DIntSizeQt.cpp32 #include "IntSize.h"
36 IntSize::IntSize(const QSize& r) function in class:WebCore::IntSize
42 IntSize::operator QSize() const
/external/webkit/Source/WebCore/platform/graphics/win/
H A DIntSizeWin.cpp27 #include "IntSize.h"
33 IntSize::IntSize(const SIZE& s) function in class:WebCore::IntSize
39 IntSize::operator SIZE() const
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DIntSizeWx.cpp27 #include "IntSize.h"
34 IntSize::IntSize(const wxSize& s) function in class:WebCore::IntSize
40 IntSize::operator wxSize() const
H A DImageBufferWx.cpp36 ImageBufferData::ImageBufferData(const IntSize&) argument
40 ImageBuffer::ImageBuffer(const IntSize&, ColorSpace imageColorSpace, RenderingMode, bool& success) : argument
41 m_data(IntSize())
75 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
80 void ImageBuffer::putPremultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
/external/webkit/Source/WebCore/loader/icon/
H A DIconRecord.cpp56 Image* IconRecord::image(const IntSize&) argument
H A DIconDatabaseBase.h40 class IntSize;
180 virtual Image* synchronousIconForPageURL(const String&, const IntSize&) { return 0; } argument
192 virtual Image* defaultIcon(const IntSize&) { return 0; } argument
/external/webkit/Source/WebKit/chromium/public/
H A DWebSize.h37 #include "IntSize.h"
63 WebSize(const WebCore::IntSize& s)
69 WebSize& operator=(const WebCore::IntSize& s)
76 operator WebCore::IntSize() const
78 return WebCore::IntSize(width, height);
/external/webkit/Source/WebCore/platform/
H A DWidget.cpp109 void Widget::setBoundsSize(const IntSize&) argument
/external/webkit/Source/WebCore/rendering/style/
H A DStylePendingImage.h49 virtual IntSize imageSize(const RenderObject*, float /*multiplier*/) const { return IntSize(); }
53 virtual void setImageContainerSize(const IntSize&) { } argument
56 virtual PassRefPtr<Image> image(RenderObject*, const IntSize&) const
/external/webkit/Source/WebCore/platform/graphics/
H A DIntSize.h62 class IntSize { class in namespace:WebCore
64 IntSize() : m_width(0), m_height(0) { } function in class:WebCore::IntSize
65 IntSize(int width, int height) : m_width(width), m_height(height) { } function in class:WebCore::IntSize
90 IntSize expandedTo(const IntSize& other) const
92 return IntSize(m_width > other.m_width ? m_width : other.m_width,
96 IntSize shrunkTo(const IntSize& other) const
98 return IntSize(m_width < other.m_width ? m_width : other.m_width,
104 *this = expandedTo(IntSize());
[all...]
H A DImage.h99 virtual void setContainerSize(const IntSize&) { } argument
104 virtual IntSize size() const = 0;
141 virtual CGImageRef getFirstCGImageRefOfSize(const IntSize&) { return 0; } argument
168 virtual void drawFrameMatchingSourceSize(GraphicsContext*, const FloatRect& dstRect, const IntSize& srcSize, ColorSpace styleColorSpace, CompositeOperator) { }
H A DGraphicsContext.cpp475 void GraphicsContext::drawTiledImage(Image* image, ColorSpace styleColorSpace, const IntRect& rect, const IntPoint& srcPoint, const IntSize& tileSize, CompositeOperator op, bool useLowQualityScale)
704 void GraphicsContext::setSharedGraphicsContext3D(SharedGraphicsContext3D*, DrawingBuffer*, const IntSize&) argument
/external/webkit/Source/WebCore/loader/icon/wince/
H A DIconDatabaseWinCE.cpp54 Image* IconDatabase::iconForPageURL(const String&, const IntSize&) { return 0; } argument
57 Image* IconDatabase::defaultIcon(const IntSize&) { return 0;} argument
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DMediaPlayerPrivateAndroid.h51 virtual IntSize naturalSize() const { return m_naturalSize; }
84 virtual void setSize(const IntSize&) { } argument
133 IntSize m_naturalSize;
/external/webkit/Source/WebCore/platform/graphics/texmap/
H A DTextureMapper.h32 #include "IntSize.h"
53 virtual IntSize size() const = 0;
55 virtual void reset(const IntSize& size, bool opaque = false)
77 inline IntSize contentSize() const { return m_contentSize; }
85 IntSize m_contentSize;
103 virtual void paintToTarget(const BitmapTexture& texture, const IntSize&, const TransformationMatrix& matrix, float opacity, const IntRect& visibleRect) argument
120 void setViewportSize(const IntSize&);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DPageClientQt.cpp71 void setSizeChanged(const IntSize&) { } argument
/external/webkit/Source/WebCore/platform/graphics/android/
H A DImageBufferAndroid.cpp60 ImageBufferData::ImageBufferData(const IntSize&) argument
64 ImageBuffer::ImageBuffer(const IntSize& size, ColorSpace, RenderingMode, bool& success)
191 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
/external/webkit/Source/WebCore/platform/graphics/avfoundation/
H A DMediaPlayerPrivateAVFoundation.cpp329 IntSize MediaPlayerPrivateAVFoundation::naturalSize() const
332 return IntSize();
344 void MediaPlayerPrivateAVFoundation::setNaturalSize(IntSize size)
346 IntSize oldSize = m_cachedNaturalSize;
510 void MediaPlayerPrivateAVFoundation::setSize(const IntSize&) argument
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DChromeClientWinCE.cpp252 void ChromeClientWinCE::scroll(const IntSize&, const IntRect& rectToScroll, const IntRect&) argument
275 void ChromeClientWinCE::contentsSizeChanged(Frame*, const IntSize&) const
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DChromeClientWx.cpp388 void ChromeClientWx::contentsSizeChanged(Frame*, const IntSize&) const
447 void ChromeClientWx::scroll(const IntSize&, const IntRect&, const IntRect&) argument
/external/v8/tools/
H A Dgrokdump.py666 return self.heap.PointerSize() + self.heap.IntSize()
851 return 12 * self.heap.PointerSize() + 4 * self.heap.IntSize()
854 return 12 * self.heap.PointerSize() + 5 * self.heap.IntSize()
897 return (heap.PointerSize() + heap.IntSize() + \
898 4 * heap.PointerSize() + 3 * heap.IntSize() + \
989 def IntSize(self): member in class:V8Heap

Completed in 506 milliseconds

12