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

1234567891011>>

/external/qemu/android/skin/
H A Dwindow.h61 int width; member in struct:__anon8955
/external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
H A DXinerama.h12 short width; member in struct:__anon9221
H A DpanoramiXext.h42 int width; /* width of this screen */ member in struct:__anon9269
H A Dxme.h26 unsigned short width; member in struct:__anon9324
38 int width, int height, int refresh);
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/icons/
H A DMakefile13 --export-width=$(word 1, $(subst x, , $(@))) \
/external/chromium/base/
H A Dsys_info_unittest.cc47 int width, height; local
48 base::SysInfo::GetPrimaryDisplayDimensions(&width, &height);
49 EXPECT_GE(width, 10);
H A Dsys_info_posix.cc87 void SysInfo::GetPrimaryDisplayDimensions(int* width, int* height) { argument
94 if (width)
95 *width = gdk_screen_get_width(screen);
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DRectangle.java41 public final float x, y, width, height; field in class:Rectangle
47 * @param width the width of the rectangle
50 public Rectangle(float x, float y, float width, float height) { argument
53 this.width = width;
/external/libvpx/vpx_scale/generic/
H A Dyv12config.c43 vp8_yv12_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int border) argument
47 int yplane_size = (height + 2 * border) * (width + 2 * border);
48 int uvplane_size = ((1 + height) / 2 + border) * ((1 + width) / 2 + border);
54 ybf->y_width = width;
56 ybf->y_stride = width + 2 * border;
58 ybf->uv_width = (1 + width) / 2;
/external/replicaisland/src/com/replica/replicaisland/
H A DTexture.java28 public int width; field in class:Texture
40 width = 0;
/external/webkit/Source/WebCore/html/
H A DImageData.h46 int width() const { return m_size.width(); } function in class:WebCore::ImageData
H A DTextMetrics.h38 float width() const { return m_width; } function in class:WebCore::TextMetrics
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatSize.cpp36 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height())
45 FloatSize FloatSize::narrowPrecision(double width, double height) argument
47 return FloatSize(narrowPrecisionToFloat(width), narrowPrecisionToFloat(height));
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DPicturePileLayerContent.h38 virtual int width() { return m_picturePile.size().width(); } function in class:WebCore::PicturePileLayerContent
/external/webkit/Source/WebCore/platform/win/
H A DBitmapInfo.cpp36 BitmapInfo bitmapInfoForSize(int width, int height, BitmapInfo::BitCount bitCount) argument
39 bitmapInfo.bmiHeader.biWidth = width;
56 return bitmapInfoForSize(size.width(), size.height(), bitCount);
61 return bitmapInfoForSize(size.width(), -size.height(), bitCount);
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKGeometry.h42 double width; member in struct:WKSize
/external/webkit/Tools/DumpRenderTree/gtk/
H A DPixelDumpSupportGtk.cpp42 gint width, height; local
45 gdk_pixmap_get_size(pixmap, &width, &height);
47 width = gtk_widget_get_allocated_width(viewContainer);
51 cairo_surface_t* imageSurface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, width, height);
67 cairo_rectangle(context, rectangle.x, rectangle.y, rectangle.width, rectangle.height);
/external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
H A DWNafMultiplier.java13 * @param width The width <code>w</code> of the Window NAF. The width is
18 * @return The Window NAF of the given width, such that the following holds:
23 public byte[] windowNaf(byte width, BigInteger k) argument
27 // int unless the window width is larger than 8. For larger width use
28 // short or int. However, a width of more than 8 is not efficient for
33 // 2^width as short and BigInteger
34 short pow2wB = (short)(1 << width);
[all...]
/external/chromium/chrome/browser/
H A Dntp_background_util.cc22 int width = area.width() + ntp_background->width(); local
29 x_pos += area.width() - ntp_background->width();
33 x_pos += area.width() / 2 - ntp_background->width() / 2;
38 width = ntp_background->width();
40 x_pos = x_pos % ntp_background->width()
[all...]
/external/chromium/chrome/browser/ui/webui/
H A Dhtml_dialog_ui.h89 int width; member in struct:HtmlDialogUI::HtmlDialogParams
/external/chromium/chrome/browser/ui/window_snapshot/
H A Dwindow_snapshot_win.cc26 int width = content_rect.right - content_rect.left; local
29 gfx::CreateBitmapHeader(width, height, &hdr);
43 PatBlt(mem_hdc, 0, 0, width, height, WHITENESS);
59 BitBlt(mem_hdc, 0, 0, width, height, window_hdc, 0, 0, SRCCOPY);
65 gfx::Size(width, height), width * 4, true,
71 return gfx::Rect(width, height);
/external/clang/test/PCH/
H A Dcxx-implicit-moves.cpp9 double width; member in struct:NSSize
21 return s.width;
/external/clang/test/Sema/
H A Dinit-struct-qualified.c4 typedef struct _NSSize { CGFloat width; CGFloat height; } NSSize; member in struct:_NSSize
/external/icu4c/samples/layout/
H A DSurface.cpp16 le_int32 x, le_int32 y, le_int32 width, le_int32 height)
23 clip.right = width;
15 drawGlyphs(RenderingFontInstance *font, const LEGlyphID *glyphs, le_int32 count, const le_int32 *dx, le_int32 x, le_int32 y, le_int32 width, le_int32 height) argument
H A Drsurface.cpp17 const float *positions, le_int32 x, le_int32 y, le_int32 width, le_int32 height)
21 rs->drawGlyphs((const LEFontInstance *) font, glyphs, count, positions, x, y, width, height);
16 rs_drawGlyphs(rs_surface *surface, const le_font *font, const LEGlyphID *glyphs, le_int32 count, const float *positions, le_int32 x, le_int32 y, le_int32 width, le_int32 height) argument

Completed in 439 milliseconds

1234567891011>>