Searched refs:m_width (Results 1 - 25 of 116) 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:blink::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:blink::IntSize
[all...]
H A DFloatSize.cpp39 : m_width(size.width().toFloat())
51 return fabs(m_width) < std::numeric_limits<float>::epsilon() && fabs(m_height) < std::numeric_limits<float>::epsilon();
56 return isWithinIntRange(m_width) && isWithinIntRange(m_height);
H A DLayoutSize.h48 LayoutSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) { }
49 LayoutSize(LayoutUnit width, LayoutUnit height) : m_width(width), m_height(height) { }
51 explicit LayoutSize(const FloatSize& size) : m_width(size.width()), m_height(size.height()) { }
53 LayoutUnit width() const { return m_width; }
56 void setWidth(LayoutUnit width) { m_width = width; }
59 bool isEmpty() const { return m_width.rawValue() <= 0 || m_height.rawValue() <= 0; }
60 bool isZero() const { return !m_width && !m_height; }
62 float aspectRatio() const { return m_width.toFloat() / m_height.toFloat(); }
66 m_width += width;
72 m_width
133 LayoutUnit m_width, m_height; member in class:blink::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:blink::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:blink::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/dom/
H A DDOMRectReadOnly.h19 double width() const { return m_width; }
23 double right() const { return std::max(m_x, m_x + m_width); }
25 double left() const { return std::min(m_x, m_x + m_width); }
34 double m_width; member in class:blink::DOMRectReadOnly
H A DDOMRectReadOnly.cpp18 , m_width(width)
/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:blink::SVGTextMetrics
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DFixedTableLayout.cpp86 m_width.resize(nEffCols);
87 m_width.fill(Length(Auto));
111 m_width.append(Length());
117 m_width.append(Length());
122 m_width[currentEffectiveColumn] = colStyleLogicalWidth;
123 m_width[currentEffectiveColumn] *= spanInCurrentEffectiveColumn;
159 if (m_width[currentColumn].isAuto() && logicalWidth.type() != Auto) {
160 m_width[currentColumn] = logicalWidth;
161 m_width[currentColumn] *= eSpan / span;
212 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; }
98 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/animatable/
H A DAnimatableLengthSize.h45 const AnimatableValue* width() const { return m_width.get(); }
55 : m_width(width)
62 RefPtrWillBeMember<AnimatableValue> m_width; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DTextMetrics.h41 float width() const { return m_width; }
42 void setWidth(float w) { m_width = w; }
81 : m_width(0)
95 float m_width; member in class:blink::FINAL

Completed in 281 milliseconds

12345