HomeSort by relevance Sort by last modified time
    Searched defs:m_width (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FixedTableLayout.h 44 Vector<Length> m_width; member in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/platform/
LengthSize.h 35 : 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/core/animation/
AnimatableLengthSize.h 45 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/rendering/style/
StyleMultiColData.h 56 float m_width; member in class:WebCore::StyleMultiColData
StyleBoxData.h 46 const Length& width() const { return m_width; }
69 Length m_width; member in class:WebCore::StyleBoxData
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextMetrics.h 49 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/svg/
SVGFilterPrimitiveStandardAttributes.h 48 SVGAnimatedLength* width() const { return m_width.get(); }
76 RefPtr<SVGAnimatedLength> m_width; member in class:WebCore::SVGFilterPrimitiveStandardAttributes
SVGForeignObjectElement.h 37 SVGAnimatedLength* width() const { return m_width.get(); }
56 RefPtr<SVGAnimatedLength> m_width; member in class:WebCore::FINAL
SVGImageElement.h 44 SVGAnimatedLength* width() const { return m_width.get(); }
74 RefPtr<SVGAnimatedLength> m_width; member in class:WebCore::FINAL
SVGMaskElement.h 40 SVGAnimatedLength* width() const { return m_width.get(); }
62 RefPtr<SVGAnimatedLength> m_width; member in class:WebCore::FINAL
SVGRectElement.h 37 SVGAnimatedLength* width() const { return m_width.get(); }
55 RefPtr<SVGAnimatedLength> m_width; member in class:WebCore::FINAL
SVGFilterElement.h 50 SVGAnimatedLength* width() const { return m_width.get(); }
73 RefPtr<SVGAnimatedLength> m_width; member in class:WebCore::FINAL
SVGPatternElement.h 52 SVGAnimatedLength* width() const { return m_width.get(); }
78 RefPtr<SVGAnimatedLength> m_width; member in class:WebCore::FINAL
SVGUseElement.h 48 SVGAnimatedLength* width() const { return m_width.get(); }
99 RefPtr<SVGAnimatedLength> m_width; member in class:WebCore::FINAL
SVGSVGElement.h 116 SVGAnimatedLength* width() const { return m_width.get(); }
155 RefPtr<SVGAnimatedLength> m_width; member in class:WebCore::FINAL
  /external/deqp/framework/common/
tcuSurface.hpp 53 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*4, 0, ptr)
    [all...]
tcuRenderTarget.hpp 46 int getWidth (void) const { return m_width; }
52 int m_width; member in class:tcu::RenderTarget
  /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;
  /sdk/emulator/opengl/host/libs/libOpenglRender/
ColorBuffer.h 32 GLuint getWidth() const { return m_width; }
52 GLuint m_width; member in class:ColorBuffer
WindowSurface.h 58 GLuint m_width; member in class:WindowSurface
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLRenderbuffer.h 49 m_width = width;
52 GLsizei width() const { return m_width; }
72 GLsizei m_width, m_height; member in class:WebCore::FINAL
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglSurface.h 42 void setDim(int width,int height){ m_width = width; m_height = height;};
60 m_width(width),
70 EGLint m_width; member in class:EglSurface
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
IntSize.h 45 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) * widthScale)
128 int m_width, m_height; member in class:WebCore::IntSize
    [all...]
  /external/clang/test/SemaCXX/
invalid-member-expr.cpp 52 Length m_width; member in struct:rdar11293995::LengthSize
  /external/pdfium/core/src/fxge/agg/agg23/
agg_rendering_buffer.h 51 m_width(0),
60 m_width(0),
70 m_width = width;
97 return m_width;
139 unsigned m_width; member in class:agg::rendering_buffer

Completed in 354 milliseconds

1 2 3 4