Searched refs:m_size (Results 26 - 50 of 235) sorted by relevance

12345678910

/external/webkit/Source/WebCore/platform/graphics/
H A DIntRect.h80 : m_location(location), m_size(size) { }
82 : m_location(IntPoint(x, y)), m_size(IntSize(width, height)) { }
87 IntSize size() const { return m_size; }
90 void setSize(const IntSize& size) { m_size = size; }
96 int width() const { return m_size.width(); }
97 int height() const { return m_size.height(); }
101 void setWidth(int width) { m_size.setWidth(width); }
102 void setHeight(int height) { m_size.setHeight(height); }
104 bool isEmpty() const { return m_size.isEmpty(); }
137 IntPoint maxXMinYCorner() const { return IntPoint(m_location.x() + m_size
208 IntSize m_size; member in class:WebCore::IntRect
[all...]
H A DFloatRect.h78 : m_location(location), m_size(size) { }
80 : m_location(FloatPoint(x, y)), m_size(FloatSize(width, height)) { }
86 FloatSize size() const { return m_size; }
89 void setSize(const FloatSize& size) { m_size = size; }
95 float width() const { return m_size.width(); }
96 float height() const { return m_size.height(); }
100 void setWidth(float width) { m_size.setWidth(width); }
101 void setHeight(float height) { m_size.setHeight(height); }
103 bool isEmpty() const { return m_size.isEmpty(); }
125 m_size
183 FloatSize m_size; member in class:WebCore::FloatRect
[all...]
H A DGeneratedImage.h48 virtual void setContainerSize(const IntSize& size) { m_size = size; }
53 virtual IntSize size() const { return m_size; }
66 , m_size(size)
71 IntSize m_size; member in class:WebCore::GeneratedImage
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLActiveInfo.h44 GC3Dint size() const { return m_size; }
50 , m_size(size)
58 GC3Dint m_size; member in class:WebCore::WebGLActiveInfo
/external/webkit/Source/WebCore/html/
H A DImageData.cpp45 : m_size(size)
51 : m_size(size)
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DFontPlatformData.h56 float size() const { return m_size; }
70 float m_size; member in class:WebCore::FontPlatformData
H A DFloatRectHaiku.cpp39 , m_size(rect.Width() + 1, rect.Height() + 1)
H A DIntRectHaiku.cpp38 , m_size(rect.IntegerWidth() + 1, rect.IntegerHeight() + 1)
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DFloatRectMac.mm34 FloatRect::FloatRect(const NSRect& r) : m_location(r.origin), m_size(r.size)
/external/webkit/Source/WebCore/platform/graphics/win/
H A DDIBPixelData.h58 const IntSize& size() const { return m_size; }
65 IntSize m_size; member in class:WebCore::DIBPixelData
H A DIntRectWin.cpp35 : m_location(IntPoint(r.left, r.top)), m_size(IntSize(r.right-r.left, r.bottom-r.top))
/external/webkit/Source/WebKit2/UIProcess/
H A DBackingStore.cpp46 : m_size(size)
49 ASSERT(!m_size.isEmpty());
58 // ASSERT(m_size == updateInfo.viewSize);
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DCanvasTexture.cpp85 if (m_size == size)
87 m_size = size;
91 m_size.width(), m_size.height());
116 m_size.width(), m_size.height());
134 if (imageBuffer->size() != m_size)
201 : m_size()
217 if (m_size.isEmpty())
219 return (m_size
[all...]
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DTiledImageOpenVG.cpp31 , m_size(size)
33 , m_numColumns((m_size.width() - 1) / m_maxTileSize.width() + 1)
34 , m_tiles(((m_size.height() - 1) / m_maxTileSize.height() + 1) * m_numColumns, VG_INVALID_HANDLE)
40 , m_size(other.m_size)
53 m_size = other.m_size;
129 ((m_maxTileSize.width() < m_size.width() - x) ? m_maxTileSize.width() : (m_size.width() - x)),
130 ((m_maxTileSize.height() < m_size
[all...]
/external/webkit/Source/WebCore/platform/
H A DSharedBuffer.cpp61 : m_size(0)
66 : m_size(0)
72 : m_size(0)
86 buffer->m_size = buffer->m_buffer.size();
106 return m_size;
126 unsigned positionInSegment = offsetInSegment(m_size - m_buffer.size());
127 m_size += length;
129 if (m_size <= segmentSize) {
166 m_size = 0;
183 clone->m_size
[all...]
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DDrawingBuffer.cpp117 m_context->getExtensions()->renderbufferStorageMultisample(GraphicsContext3D::RENDERBUFFER, sampleCount, Extensions3D::DEPTH24_STENCIL8, m_size.width(), m_size.height());
119 m_context->renderbufferStorage(GraphicsContext3D::RENDERBUFFER, Extensions3D::DEPTH24_STENCIL8, m_size.width(), m_size.height());
128 m_context->getExtensions()->renderbufferStorageMultisample(GraphicsContext3D::RENDERBUFFER, sampleCount, GraphicsContext3D::DEPTH_COMPONENT16, m_size.width(), m_size.height());
130 m_context->renderbufferStorage(GraphicsContext3D::RENDERBUFFER, GraphicsContext3D::DEPTH_COMPONENT16, m_size.width(), m_size.height());
138 m_context->getExtensions()->renderbufferStorageMultisample(GraphicsContext3D::RENDERBUFFER, sampleCount, GraphicsContext3D::STENCIL_INDEX8, m_size.width(), m_size
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DSegmentedVector.h108 : m_size(0)
118 size_t size() const { return m_size; }
140 ++m_size;
142 if (m_size <= SegmentSize) {
147 if (!segmentExistsFor(m_size - 1))
149 segmentFor(m_size - 1)->uncheckedAppend(value);
160 if (m_size <= SegmentSize)
163 segmentFor(m_size - 1)->removeLast();
164 --m_size;
169 ASSERT(size > m_size);
246 size_t m_size; member in class:WTF::SegmentedVector
[all...]
/external/webkit/Source/WebCore/fileapi/
H A DBlob.cpp42 , m_size(size)
53 , m_size(size)
76 ASSERT(m_size != -1);
77 size = m_size;
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DFloatRectCairo.cpp35 , m_size(r.width, r.height)
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DFloatRectCG.cpp36 FloatRect::FloatRect(const CGRect& r) : m_location(r.origin), m_size(r.size)
/external/webkit/Source/WebCore/platform/graphics/efl/
H A DIntRectEfl.cpp30 , m_size(r.w, r.h)
/external/webkit/Source/WebCore/platform/graphics/gtk/
H A DIntRectGtk.cpp29 , m_size(r.width, r.height)
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DIntRectQt.cpp37 , m_size(r.width(), r.height())
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DFloatRectSkia.cpp40 , m_size(r.width(), r.height())
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DFloatRectWx.cpp37 , m_size(FloatSize(r.m_width, r.m_height))

Completed in 1872 milliseconds

12345678910