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

12 3 4

  /external/chromium_org/third_party/WebKit/Source/core/html/
TextMetrics.h 39 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/html/track/vtt/
VTTRegion.h 64 double width() const { return m_width; }
128 double m_width; member in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatBox.h 44 , 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...]
FloatSize.h 49 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 > other.m_width ? m_width : other.m_width
125 float m_width, m_height; member in class:WebCore::FloatSize
    [all...]
LayoutSize.h 50 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 -= width
135 LayoutUnit m_width, m_height; member in class:WebCore::LayoutSize
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFboDepthbufferTests.cpp 55 , m_width (width)
89 glRenderbufferStorage(GL_RENDERBUFFER, colorFormat, m_width, m_height);
92 glRenderbufferStorage(GL_RENDERBUFFER, m_format, m_width, m_height);
100 glViewport(0, 0, m_width, m_height);
132 readPixels(dst, 0, 0, m_width, m_height, glu::mapGLInternalFormat(colorFormat), Vec4(1.0f), Vec4(0.0f));
137 int m_width; member in class:deqp::gles3::Functional::BasicFboDepthCase
147 , m_width (width)
179 glRenderbufferStorage(GL_RENDERBUFFER, colorFormat, m_width, m_height);
182 glTexImage2D(GL_TEXTURE_2D, 0, m_format, m_width, m_height, 0, transferFmt.format, transferFmt.dataType, DE_NULL);
192 glViewport(0, 0, m_width, m_height)
223 const int m_width; member in class:deqp::gles3::Functional::DepthWriteClampCase
303 const int m_width; member in class:deqp::gles3::Functional::DepthTestClampCase
    [all...]
es3fReadPixelsTests.cpp 76 const int m_width; member in class:deqp::gles3::Functional::__anon23853::ReadPixelsTest
93 , m_width (13)
247 GLU_CHECK_CALL(glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA32UI, m_width, m_height));
253 GLU_CHECK_CALL(glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA32I, m_width, m_height));
336 const int rowWidth = (m_rowLength == 0 ? m_width : m_rowLength) + m_skipPixels;
341 GLU_CHECK_CALL(glReadPixels(0, 0, m_width, m_height, m_format, m_type, &(pixelData[0])));
359 tcu::Texture2D reference(format, m_width, m_height);
374 GLU_CHECK_CALL(glViewport(0, 0, m_width, m_height));
379 const int rowWidth = (m_rowLength == 0 ? m_width : m_rowLength);
391 if (tcu::bilinearCompare(m_testCtx.getLog(), "Result", "Result", reference.getLevel(0), tcu::PixelBufferAccess(format, m_width, m_height, 1, rowPitch, 0, &(pixelData[0])), tcu::RGBA(redThreshold, greenThreshold, blueThreshold (…)
    [all...]
es3fTextureSizeTests.cpp 68 int m_width; member in class:deqp::gles3::Functional::Texture2DSizeCase
81 , m_width (width)
97 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
99 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
185 int m_width; member in class:deqp::gles3::Functional::TextureCubeSizeCase
201 , m_width (width)
219 DE_ASSERT(m_width == m_height);
220 m_texture = new TextureCube(m_renderCtx, m_format, m_dataType, m_width);
232 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
es3fTextureWrapTests.cpp 117 int m_width; member in class:deqp::gles3::Functional::TextureWrapCase
139 , m_width (width)
158 , m_width (0)
178 , m_width (width)
200 DE_ASSERT(m_width == 0 && m_height == 0 && m_format == GL_NONE && m_dataType == GL_NONE);
203 m_width = m_texture->getRefTexture().getWidth();
216 tcu::CompressedTexture compressedTexture (m_compressedFormat, m_width, m_height);
247 tcu::CompressedTexture compressedTexture (m_compressedFormat, m_width, m_height);
263 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
  /external/opencv/otherlibs/highgui/
grfmt_base.h 70 int GetWidth() { return m_width; };
84 int m_width; // width of the image ( filled by ReadHeader ) member in class:GrFmtReader
  /external/pdfium/core/src/fxge/agg/agg23/
agg_vcgen_stroke.h 66 m_width = w / 2;
83 return m_width * 2;
106 FX_FLOAT m_width; member in class:agg::vcgen_stroke
  /external/chromium_org/third_party/WebKit/Source/core/svg/
PatternAttributes.h 35 , m_width(SVGLength::create(LengthModeWidth))
57 SVGLength* width() const { return m_width.get(); }
80 m_width = value;
141 RefPtr<SVGLength> m_width; member in struct:WebCore::PatternAttributes
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
HarfBuzzShaper.h 83 void setWidth(float width) { m_width = width; }
103 float width() { return m_width; }
120 float m_width; member in class:WebCore::FINAL::HarfBuzzRun
  /external/deqp/framework/common/
tcuCompressedTexture.hpp 103 int getWidth (void) const { return m_width; }
115 int m_width; member in class:tcu::CompressedTexture
  /external/deqp/modules/gles2/functional/
es2fFboCompletenessTests.cpp 117 ES2Checker (void) : m_width(-1), m_height(-1) {}
121 GLsizei m_width; //< The common width of images member in class:deqp::gles2::Functional::ES2Checker
130 if (m_width == -1)
132 m_width = image->width;
137 require(image->width == m_width && image->height == m_height,
es2fTextureFormatTests.cpp 84 const int m_width; member in class:deqp::gles2::Functional::Texture2DFormatCase
96 , m_width (width)
117 log << TestLog::Message << "2D texture, " << fmtName.str() << ", " << m_width << "x" << m_height
121 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
140 RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, m_height, deStringHash(getName()));
224 const int m_width; member in class:deqp::gles2::Functional::TextureCubeFormatCase
240 , m_width (width)
266 log << TestLog::Message << "Cube map texture, " << fmtName.str() << ", " << m_width << "x" << m_height
270 DE_ASSERT(m_width == m_height);
272 ? new TextureCube(m_renderCtx, m_format, m_dataType, m_width) // Implicit internal format
    [all...]
es2fTextureSizeTests.cpp 68 int m_width; member in class:deqp::gles2::Functional::Texture2DSizeCase
81 , m_width (width)
97 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
99 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
185 int m_width; member in class:deqp::gles2::Functional::TextureCubeSizeCase
201 , m_width (width)
219 DE_ASSERT(m_width == m_height);
220 m_texture = new TextureCube(m_renderCtx, m_format, m_dataType, m_width);
232 int numLevels = m_useMipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
es2fTextureWrapTests.cpp 81 int m_width; member in class:deqp::gles2::Functional::TextureWrapCase
99 , m_width (width)
116 , m_width (0)
133 DE_ASSERT(m_width == 0 && m_height == 0 && m_format == GL_NONE && m_dataType == GL_NONE);
136 m_width = m_texture->getRefTexture().getWidth();
141 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
  /external/deqp/modules/gles31/functional/
es31fTextureFormatTests.cpp 260 int m_width; member in class:deqp::gles31::Functional::TextureBufferFormatCase
270 , m_width (width)
292 log << TestLog::Message << "Buffer texture, " << fmtName.str() << ", " << m_width
296 m_texture = new glu::TextureBuffer(m_renderCtx, m_format, m_width * fmt.getPixelSize());
314 RandomViewport viewport (m_renderCtx.getRenderTarget(), m_width, 1, deStringHash(getName()));
  /sdk/emulator/opengl/host/libs/libOpenglRender/
FrameBuffer.h 60 int getWidth() const { return m_width; }
113 int m_width; member in class:FrameBuffer
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FastTextAutosizer.h 189 , m_width(0)
198 float m_width; member in struct:WebCore::FINAL::FingerprintSourceData
  /external/pdfium/core/src/fxcodec/codec/
codec_int.h 19 int m_Width, m_Height;
238 FX_DWORD m_width; member in class:CCodec_Jbig2Context
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
WebGLImageConversion.cpp 1286 const unsigned m_width, m_height; member in class:WebCore::__anon15219::FormatConverter
1426 pack<DstFormat, alphaOp>(reinterpret_cast<IntermediateSrcType*>(m_unpackedIntermediateSrcData.get()), dstRowStart, m_width); local
    [all...]
  /external/deqp/modules/gles2/accuracy/
es2aTextureFilteringTests.cpp 78 int m_width; member in class:deqp::gles2::Accuracy::Texture2DFilteringCase
98 , m_width (width)
114 , m_width (0)
140 m_textures.push_back(new glu::Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height));
142 const bool mipmaps = deIsPowerOfTwo32(m_width) && deIsPowerOfTwo32(m_height);
143 const int numLevels = mipmaps ? deLog2Floor32(de::max(m_width, m_height))+1 : 1;
339 int m_width; member in class:deqp::gles2::Accuracy::TextureCubeFilteringCase
359 , m_width (width)
375 , m_width (0)
399 DE_ASSERT(m_width == m_height)
    [all...]
es2aTextureMipmapTests.cpp 108 int m_width; member in class:deqp::gles2::Accuracy::Texture2DMipmapCase
137 , m_width (width)
156 m_texture = new Texture2D(m_renderCtx, m_format, m_dataType, m_width, m_height);
158 int numLevels = deLog2Floor32(de::max(m_width, m_height))+1;

Completed in 2296 milliseconds

12 3 4