/external/webkit/Source/WebCore/platform/ |
LengthSize.h | 35 : m_width(width) 42 return m_width == o.m_width && m_height == o.m_height; 45 void setWidth(Length width) { m_width = width; } 46 Length width() const { return m_width; } 52 Length m_width; member in struct:WebCore::LengthSize
|
/external/webkit/Source/WebCore/platform/graphics/ |
IntSize.h | 64 IntSize() : m_width(0), m_height(0) { } 65 IntSize(int width, int height) : m_width(width), m_height(height) { } 67 int width() const { return m_width; } 70 void setWidth(int width) { m_width = width; } 73 bool isEmpty() const { return m_width <= 0 || m_height <= 0; } 74 bool isZero() const { return !m_width && !m_height; } 76 float aspectRatio() const { return static_cast<float>(m_width) / static_cast<float>(m_height); } 80 m_width += width; 86 m_width = static_cast<int>(static_cast<float>(m_width) * scale) 148 int m_width, m_height; member in class:WebCore::IntSize [all...] |
FloatSize.h | 52 FloatSize() : m_width(0), m_height(0) { } 53 FloatSize(float width, float height) : m_width(width), m_height(height) { } 58 float width() const { return m_width; } 61 void setWidth(float width) { m_width = width; } 64 bool isEmpty() const { return m_width <= 0 || m_height <= 0; } 66 float aspectRatio() const { return m_width / m_height; } 70 m_width *= scale; 76 return FloatSize(m_width > other.m_width ? m_width : other.m_width 104 float m_width, m_height; member in class:WebCore::FloatSize [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/ |
MemoryFlyoutPreferences.java | 22 private int m_width; field in class:MemoryFlyoutPreferences 32 m_width = width; 49 return m_width; 61 m_width = width;
|
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
TextureInfo.cpp | 41 m_width = 0; 48 return otherTexture->m_width == m_width 55 m_width = sourceTexture->m_width;
|
/external/webkit/Source/WebCore/html/ |
TextMetrics.h | 38 float width() const { return m_width; } 39 void setWidth(float w) { m_width = w; } 43 : m_width(0) 46 float m_width; member in class:WebCore::TextMetrics
|
/sdk/emulator/opengl/host/libs/Translator/EGL/ |
EglSurface.h | 41 void setDim(int width,int height){ m_width = width; m_height = height;}; 59 m_width(width), 69 EGLint m_width; member in class:EglSurface
|
/frameworks/av/libvideoeditor/vss/mcs/src/ |
M4MCS_VideoPreProcessing.c | 172 Params.m_inputSize.m_width = pC->pPreResizeFrame->u_width; 173 Params.m_outputSize.m_width = pPlaneOut->u_width; 239 //Params.m_inputSize.m_height < Params.m_inputSize.m_width) 242 Params.m_outputSize.m_width = pPlaneOut->u_width; 269 Params.m_outputSize.m_width = 276 Params.m_outputSize.m_width)>>1)); 277 pImagePlanesTemp[0].u_width = Params.m_outputSize.m_width; 280 (Params.m_outputSize.m_width>>1)))>>1); 281 pImagePlanesTemp[1].u_width = Params.m_outputSize.m_width>>1; 284 (Params.m_outputSize.m_width>>1)))>>1) [all...] |
/external/webkit/Source/WebCore/rendering/style/ |
BorderValue.h | 37 : m_width(3) 59 return m_width == o.m_width && m_style == o.m_style && m_color == o.m_color; 68 unsigned short width() const { return m_width; } 73 unsigned m_width : 12;
|
StyleMultiColData.cpp | 30 : m_width(0) 45 , m_width(o.m_width) 61 return m_width == o.m_width && m_count == o.m_count && m_gap == o.m_gap
|
StyleBoxData.cpp | 43 , m_width(o.m_width) 57 return m_width == o.m_width
|
/external/webkit/Source/WebCore/rendering/ |
FixedTableLayout.cpp | 87 m_width.resize(nEffCols); 88 m_width.fill(Length(Auto)); 110 m_width.append(Length()); 116 m_width.append(Length()); 121 m_width[currentEffectiveColumn] = w; 122 m_width[currentEffectiveColumn] *= spanInCurrentEffectiveColumn; 170 if (m_width[cCol + i].isAuto() && w.type() != Auto) { 171 m_width[cCol + i] = w; 172 m_width[cCol + i] *= eSpan / span; 246 if (m_width[i].isFixed()) [all...] |
/external/opencv/otherlibs/highgui/ |
grfmt_pxm.cpp | 166 m_width = ReadNumber( m_strm, INT_MAX ); 177 if( m_width > 0 && m_height > 0 && m_maxval > 0 && m_maxval < (1 << 16)) 189 m_width = m_height = -1; 205 int src_pitch = (m_width*m_bpp*m_bit_depth/8 + 7)/8; 207 int width3 = m_width*nch; 242 for( x = 0; x < m_width; x++ ) 246 FillColorRow8( data, src, m_width, palette ); 248 FillGrayRow8( data, src, m_width, gray_palette ); 258 FillColorRow1( data, src, m_width, palette ); 260 FillGrayRow1( data, src, m_width, gray_palette ) [all...] |
grfmt_sunras.cpp | 103 m_width = m_strm.GetDWord(); 113 if( m_width > 0 && m_height > 0 && 166 m_width = m_height = -1; 182 int src_pitch = ((m_width*m_bpp + 7)/8 + 1) & -2; 184 int width3 = m_width*nch; 193 if( m_width*3 + 32 > buffer_size ) 194 bgr = new uchar[m_width*3 + 32]; 213 FillColorRow1( data, src, m_width, m_palette ); 215 FillGrayRow1( data, src, m_width, gray_palette ); 221 uchar* line_end = src + (m_width*m_bpp + 7)/8 [all...] |
grfmt_bmp.cpp | 108 m_width = m_strm.GetDWord(); 116 if( m_width > 0 && m_height > 0 && 151 m_width = m_strm.GetWord(); 156 if( m_width > 0 && m_height > 0 && 180 m_width = m_height = -1; 196 int src_pitch = ((m_width*(m_bpp != 15 ? m_bpp : 16) + 7)/8 + 3) & -4; 198 int width3 = m_width*nch; 216 if( m_width*3 + 32 > buffer_size ) bgr = new uchar[m_width*3 + 32]; 230 FillColorRow1( color ? data : bgr, src, m_width, m_palette ) [all...] |
grfmt_tiff.cpp | 150 m_width = width; 172 if( m_tif && m_width && m_height ) 175 int tile_width0 = m_width, tile_height0 = 0; 186 tile_width0 = m_width; 200 for( x = 0; x < m_width; x += tile_width0 ) 204 if( x + tile_width > m_width ) 205 tile_width = m_width - x; 369 m_width = -1; 411 m_width = value; 501 if( m_width > 0 && m_height > 0 && m_strips > 0 & [all...] |
/external/webkit/Source/WebCore/platform/graphics/wince/ |
FontWinCE.cpp | 82 float m_width; member in class:WebCore::TextRunComponent 97 m_width = it.m_runWidthSoFar; 105 m_width = s * font.primaryFont()->widthForGlyph(' '); 134 offset += add + letterSpacing + components->last().m_width; 148 offset += components->last().m_width + letterSpacing; 156 offset += wordSpacing + add + components->last().m_width + letterSpacing; 164 offset += components->last().m_width + letterSpacing; 172 offset += components->last().m_width; 183 offset += components->last().m_width; 192 offset += add + components->last().m_width; [all...] |
/external/webkit/Source/WebCore/rendering/svg/ |
SVGTextMetrics.h | 38 float width() const { return m_width; } 65 void setWidth(float width) { m_width = width; } 71 float m_width; member in class:WebCore::SVGTextMetrics
|
SVGTextMetrics.cpp | 31 : m_width(0) 50 m_width = scaledFont.width(run, extraCharsAvailable, length, m_glyph.name) / scalingFactor; 62 return m_width == other.m_width
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
FloatSizeMac.mm | 34 FloatSize::FloatSize(const NSSize& s) : m_width(s.width), m_height(s.height) 40 return NSMakeSize(m_width, m_height);
|
IntSizeMac.mm | 33 IntSize::IntSize(const NSSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s.height)) 39 return NSMakeSize(m_width, m_height);
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
IntSizeWin.cpp | 34 : m_width(s.cx) 41 SIZE s = {m_width, m_height};
|
QTMovieGWorld.cpp | 87 int m_width; member in class:QTMovieGWorldPrivate 112 , m_width(0) 178 if (!m_height || !m_width) 185 else if (m_gWorld && (m_width > m_gWorldWidth || m_height > m_gWorldHeight)) { 198 m_gWorldWidth = max(cGWorldMinWidth, m_width); 210 bounds.right = m_width; 236 if (m_width == width && m_height == height) 238 m_width = width; 262 bounds.right = m_width; 346 width = m_private->m_width; [all...] |
/external/webkit/Source/WebCore/platform/graphics/wx/ |
IntSizeWx.cpp | 35 : m_width(s.x) 42 return wxSize(m_width, m_height);
|
/sdk/emulator/opengl/host/libs/libOpenglRender/ |
ColorBuffer.h | 32 GLuint getWidth() const { return m_width; } 51 GLuint m_width; member in class:ColorBuffer
|