Searched defs:width (Results 1 - 25 of 3377) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/angle/tests/gles_conformance_tests/
H A Dgles_conformance_tests.h16 size_t width; member in struct:ConformanceConfig
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dwebrtcvideoframefactory.cc35 const CapturedFrame* aliased_frame, int width, int height) const {
39 if (!frame->Alias(aliased_frame, width, height)) {
34 CreateAliasedFrame( const CapturedFrame* aliased_frame, int width, int height) const argument
/external/chromium_org/cc/quads/
H A Ddebug_border_draw_quad.h23 int width);
31 int width);
34 int width; member in class:cc::DebugBorderDrawQuad
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Ddevice_metrics.cc7 DeviceMetrics::DeviceMetrics(int width, int height, double device_scale_factor) argument
8 : width(width),
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMRect.cpp10 DOMRect* DOMRect::create(double x, double y, double width, double height) argument
12 return new DOMRect(x, y, width, height);
15 DOMRect::DOMRect(double x, double y, double width, double height) argument
16 : DOMRectReadOnly(x, y, width, height)
H A DDOMRectReadOnly.cpp10 DOMRectReadOnly* DOMRectReadOnly::create(double x, double y, double width, double height) argument
12 return new DOMRectReadOnly(x, y, width, height);
15 DOMRectReadOnly::DOMRectReadOnly(double x, double y, double width, double height) argument
18 , m_width(width)
/external/chromium_org/third_party/angle/samples/angle/sample_util/
H A Dtga_utils.h19 size_t width; member in struct:TGAImage
/external/chromium_org/third_party/angle/tests/deqp_tests/
H A Ddeqp_tests.h18 size_t width; member in struct:DEQPConfig
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/sw/fbdev/
H A Dfbdev_sw_winsys.h39 unsigned width, height; member in struct:fbdev_sw_drawable
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_xgl_api_viewport.c38 __applegl_glViewport(GLint x, GLint y, GLsizei width, GLsizei height) argument
46 __ogl_framework_api->Viewport(x, y, width, height);
/external/chromium_org/third_party/skia/experimental/ChromeUtils/
H A DSkBorder.cpp10 SkBorder::SkBorder(SkPaint& p, SkScalar width, BorderStyle style) argument
15 fWidths[i] = width;
/external/chromium_org/third_party/skia/include/utils/
H A DSkDebugUtils.h36 inline void SkDebugDumpMathematica(const char *name, const T *array, int width, int height) { argument
41 for (int j = 0 ; j < width ; j++) {
42 SkDebugDumpMathematica<T>(array[i*width + j]);
43 if (j != width-1) {
/external/chromium_org/third_party/skia/src/core/
H A DSkMatrixUtils.h20 * Given a matrix and width/height, return true if the computed dst-rect would
25 * The src-rect is defined to be { 0, 0, width, height }
31 bool SkTreatAsSprite(const SkMatrix&, int width, int height,
39 int width, int height) {
40 return SkTreatAsSprite(matrix, width, height, kSkSubPixelBitsForBilerp);
38 SkTreatAsSpriteFilter(const SkMatrix& matrix, int width, int height) argument
/external/chromium_org/third_party/skia/src/gpu/
H A DGrClipData.cpp21 void GrClipData::getConservativeBounds(int width, int height, argument
28 width,
H A DGrRectanizer_pow2.cpp11 bool GrRectanizerPow2::addRect(int width, int height, SkIPoint16* loc) { argument
12 if ((unsigned)width > (unsigned)this->width() ||
17 int32_t area = width * height; // computed here since height will be modified
33 if (!row->canAddWidth(width, this->width())) {
44 SkASSERT(row->canAddWidth(width, this->width()));
46 row->fLoc.fX += width;
48 SkASSERT(row->fLoc.fX <= this->width());
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dwindowpicker_unittest.cc49 int width = 0; local
51 EXPECT_TRUE(picker->GetDesktopDimensions(descriptions[0].id(), &width,
53 EXPECT_GT(width, 0);
/external/chromium_org/third_party/webrtc/test/linux/
H A Dvideo_renderer_linux.cc18 size_t width,
20 GlxRenderer* glx_renderer = GlxRenderer::Create(window_title, width, height);
17 CreatePlatformRenderer(const char* window_title, size_t width, size_t height) argument
/external/chromium_org/third_party/webrtc/test/
H A Dnull_platform_renderer.cc17 size_t width,
16 CreatePlatformRenderer(const char* window_title, size_t width, size_t height) argument
/external/chromium_org/ui/gfx/
H A Dfavicon_size.cc11 void CalculateFaviconTargetSize(int* width, int* height) { argument
12 if (*width > kFaviconSize || *height > kFaviconSize) {
14 float aspect_ratio = static_cast<float>(*width) /
17 *width = static_cast<int>(aspect_ratio * *height);
18 if (*width > kFaviconSize) {
19 *width = kFaviconSize;
20 *height = static_cast<int>(*width / aspect_ratio);
/external/chromium_org/ui/gfx/geometry/
H A Dsize_unittest.cc16 return s.width();
24 float width = TestSizeF(a); local
25 EXPECT_EQ(width, a.width());
/external/deqp/framework/common/
H A DtcuSurface.cpp34 Surface::Surface(int width, int height) argument
35 : m_width (width)
37 , m_pixels (width*height)
49 * \param width New width.
52 void Surface::setSize (int width, int height) argument
54 m_width = width;
56 m_pixels.resize(width*height);
/external/mesa3d/src/gallium/winsys/sw/fbdev/
H A Dfbdev_sw_winsys.h39 unsigned width, height; member in struct:fbdev_sw_drawable
/external/mesa3d/src/glx/apple/
H A Dapple_xgl_api_viewport.c38 __applegl_glViewport(GLint x, GLint y, GLsizei width, GLsizei height) argument
46 __ogl_framework_api->Viewport(x, y, width, height);
/external/qemu/android/skin/
H A Dwindow.h61 int width; member in struct:__anon29202
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
H A DXinerama.h12 short width; member in struct:__anon29450

Completed in 566 milliseconds

1234567891011>>