Searched refs:m_width (Results 1 - 25 of 113) sorted by relevance

12345

/external/chromium_org/third_party/WebKit/Source/platform/
H A DLengthSize.h35 : m_width(width)
42 return m_width == o.m_width && m_height == o.m_height;
45 void setWidth(const Length& width) { m_width = width; }
46 const Length& width() const { return m_width; }
52 Length m_width; member in class:WebCore::LengthSize
/external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
H A DFloatSizeCG.cpp34 FloatSize::FloatSize(const CGSize& s) : m_width(s.width), m_height(s.height)
40 return CGSizeMake(m_width, m_height);
H A DIntSizeCG.cpp33 IntSize::IntSize(const CGSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s.height))
39 return CGSizeMake(m_width, m_height);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
H A DMemoryFlyoutPreferences.java22 private int m_width; field in class:MemoryFlyoutPreferences
32 m_width = width;
49 return m_width;
61 m_width = width;
/external/deqp/framework/common/
H A DtcuSurface.cpp29 : m_width (0)
35 : m_width (width)
54 m_width = width;
H A DtcuRenderTarget.cpp30 : m_width (0)
40 : m_width (width)
H A DtcuSurface.hpp53 int getWidth (void) const { return m_width; }
68 int m_width; member in class:tcu::Surface
75 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height));
77 const int pixOffset = y*m_width + x;
92 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height));
94 const int pixOffset = y*m_width + x;
113 DE_ASSERT(x < m_width);
119 DE_ASSERT(x + width <= m_width);
122 const deUint8* ptr = (m_pixels.empty() ? NULL : ((deUint8*)&m_pixels[0]) + 4 * (x + y * m_width));
123 return ConstPixelBufferAccess(TextureFormat(TextureFormat::RGBA, TextureFormat::UNORM_INT8), width, height, 1, m_width*
[all...]
H A DtcuRenderTarget.hpp46 int getWidth (void) const { return m_width; }
52 int m_width; member in class:tcu::RenderTarget
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DIntSize.h45 IntSize() : m_width(0), m_height(0) { }
46 IntSize(int width, int height) : m_width(width), m_height(height) { }
48 int width() const { return m_width; }
51 void setWidth(int width) { m_width = width; }
54 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
55 bool isZero() const { return !m_width && !m_height; }
57 float aspectRatio() const { return static_cast<float>(m_width) / static_cast<float>(m_height); }
61 m_width += width;
67 m_width = static_cast<int>(static_cast<float>(m_width) * widthScal
128 int m_width, m_height; member in class:WebCore::IntSize
[all...]
H A DFloatSize.cpp41 : m_width(size.width().toFloat())
53 return fabs(m_width) < numeric_limits<float>::epsilon() && fabs(m_height) < numeric_limits<float>::epsilon();
58 return isWithinIntRange(m_width) && isWithinIntRange(m_height);
H A DLayoutSize.h50 LayoutSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) { }
51 LayoutSize(LayoutUnit width, LayoutUnit height) : m_width(width), m_height(height) { }
53 explicit LayoutSize(const FloatSize& size) : m_width(size.width()), m_height(size.height()) { }
55 LayoutUnit width() const { return m_width; }
58 void setWidth(LayoutUnit width) { m_width = width; }
61 bool isEmpty() const { return m_width.rawValue() <= 0 || m_height.rawValue() <= 0; }
62 bool isZero() const { return !m_width && !m_height; }
64 float aspectRatio() const { return m_width.toFloat() / m_height.toFloat(); }
68 m_width += width;
74 m_width
135 LayoutUnit m_width, m_height; member in class:WebCore::LayoutSize
[all...]
H A DFloatSize.h49 FloatSize() : m_width(0), m_height(0) { }
50 FloatSize(float width, float height) : m_width(width), m_height(height) { }
51 FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) { }
56 float width() const { return m_width; }
59 void setWidth(float width) { m_width = width; }
62 bool isEmpty() const { return m_width <= 0 || m_height <= 0; }
66 float aspectRatio() const { return m_width / m_height; }
70 m_width += width;
78 m_width *= scaleX;
84 return FloatSize(m_width > othe
125 float m_width, m_height; member in class:WebCore::FloatSize
[all...]
H A DFloatBox.h44 , m_width(0)
54 , m_width(width)
64 , m_width(box.width())
83 m_width = origin.x();
119 m_width = maxX - minX;
147 bool isEmpty() const { return (m_width <= 0 && m_height <= 0) || (m_width <= 0 && m_depth <= 0) || (m_height <= 0 && m_depth <= 0); }
149 float right() const { return m_x + m_width; }
155 float width() const { return m_width; }
162 float m_width; member in class:WebCore::FloatBox
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/mac/
H A DFloatSizeMac.mm34 FloatSize::FloatSize(const NSSize& s) : m_width(s.width), m_height(s.height)
40 return NSMakeSize(m_width, m_height);
H A DIntSizeMac.mm33 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/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextMetrics.h49 bool isEmpty() const { return !m_width && !m_height && m_length <= 1; }
51 float width() const { return m_width; }
52 void setWidth(float width) { m_width = width; }
63 float m_width; member in class:WebCore::SVGTextMetrics
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DFixedTableLayout.cpp88 m_width.resize(nEffCols);
89 m_width.fill(Length(Auto));
113 m_width.append(Length());
119 m_width.append(Length());
124 m_width[currentEffectiveColumn] = colStyleLogicalWidth;
125 m_width[currentEffectiveColumn] *= spanInCurrentEffectiveColumn;
156 if (m_width[currentColumn].isAuto() && logicalWidth.type() != Auto) {
157 m_width[currentColumn] = logicalWidth;
158 m_width[currentColumn] *= eSpan / span;
209 if (nEffCols != m_width
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DBorderValue.h40 , m_width(3)
63 return m_width == o.m_width && m_style == o.m_style && m_color == o.m_color && m_colorIsCurrentColor == o.m_colorIsCurrentColor;
89 unsigned width() const { return m_width; }
96 unsigned m_width : 26;
H A DStyleMultiColData.cpp30 : m_width(0)
47 , m_width(o.m_width)
65 return m_width == o.m_width && m_count == o.m_count && m_gap == o.m_gap
H A DCollapsedBorderValue.h37 , m_width(0)
47 , m_width(border.nonZero() ? border.width() : 0)
54 unsigned width() const { return m_style > BHIDDEN ? m_width : 0; }
69 unsigned m_width : 23;
H A DStyleBoxData.cpp51 , m_width(o.m_width)
67 return m_width == o.m_width
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimatableLengthSize.h45 const AnimatableValue* width() const { return m_width.get(); }
55 : m_width(width)
62 RefPtrWillBeMember<AnimatableValue> m_width; member in class:WebCore::FINAL
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DTextMetrics.h39 float width() const { return m_width; }
40 void setWidth(float w) { m_width = w; }
77 : m_width(0)
94 float m_width; member in class:WebCore::TextMetrics
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DBreakingContextInlineHeaders.h62 , m_width(lineWidth)
103 if (m_width.fitsOnLine() || m_lastWS == NOWRAP)
129 LineWidth m_width; member in class:WebCore::BreakingContext
265 if (m_width.fitsOnLine()) {
276 m_lineInfo.setEmpty(false, m_block, &m_width);
354 m_width.addUncommittedWidth(inlineLogicalWidth(box).toFloat());
367 if (m_floatsFitOnLine && m_width.fitsOnLine(m_block->logicalWidthForFloat(floatingObject).toFloat(), ExcludeWhitespace)) {
368 m_block->positionNewFloatOnLine(floatingObject, m_lastFloatFromPreviousLine, m_lineInfo, m_width);
412 m_lineInfo.setEmpty(false, m_block, &m_width);
431 m_width
[all...]
/external/opencv/otherlibs/highgui/
H A Dgrfmt_pxm.cpp166 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_palett
[all...]

Completed in 793 milliseconds

12345