HomeSort by relevance Sort by last modified time
    Searched refs:width (Results 176 - 200 of 4433) sorted by null

1 2 3 4 5 6 78 91011>>

  /packages/apps/Camera/src/com/android/camera/panorama/
MosaicRenderer.java 41 * Pass the drawing surface's width and height to initialize the
44 * @param width width of the drawing surface in pixels.
48 public static native void reset(int width, int height, boolean isLandscapeOrientation);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/laf/
UnifiedContentBorder.java 28 public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) {
30 g.drawLine(x, y, x + width, y);
32 g.drawLine(x, y + height - 2, x + width, y + height - 2);
34 g.drawLine(x, y + height - 1, x + width, y + height - 1);
  /sdk/layoutlib_api/src/com/android/ide/common/rendering/api/
IImageFactory.java 37 * @param width the width of the image
41 BufferedImage getImage(int width, int height);
  /system/media/mca/effect/java/android/media/effect/
Effect.java 55 * <p>The input texture must be a valid texture name with the given width and height and must be
70 * @param width The width of the input texture in pixels.
74 public abstract void apply(int inputTexId, int width, int height, int outputTexId);
  /external/webkit/Source/WebCore/platform/graphics/qt/
ContextShadowQt.cpp 66 int width = size.width(); local
73 if (!image.isNull() && (image.width() > width) && (image.height() > height))
74 if (((2 * width) > image.width()) && ((2 * height) > image.height())) {
81 width = (1 + (width >> 5)) << 5;
84 image = QImage(width, height, QImage::Format_ARGB32_Premultiplied);
126 IntRect clip(clipRect.x(), clipRect.y(), clipRect.width(), clipRect.height())
    [all...]
  /development/tools/emulator/opengl/system/GLESv2_enc/
GL2EncoderUtils.h 20 size_t pixelDataSize(void *self, GLsizei width, GLsizei height, GLenum format, GLenum type, int pack);
21 size_t pixelDataSize3D(void *self, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, int pack);
  /external/icu4c/samples/layout/
rsurface.cpp 17 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);
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
xme.h 26 unsigned short width; member in struct:__anon9781
38 int width, int height, int refresh);
  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_ph_modes_c.h 39 extern int ph_GetVideoMode(int width, int height, int bpp);
40 extern int get_mode_any_format(int width, int height, int bpp);
  /external/webkit/Source/WebCore/html/
HTMLHRElement.idl 26 attribute [Reflect] DOMString width;
ImageData.idl 34 readonly attribute long width;
  /external/webkit/Source/WebCore/platform/graphics/skia/
NativeImageSkia.h 67 bool hasResizedBitmap(int width, int height) const;
72 SkBitmap resizedBitmap(int width, int height) const;
  /external/webkit/Source/WebCore/svg/
SVGRect.idl 28 attribute [StrictTypeChecking] float width;
  /external/webkit/Source/WebKit/chromium/src/
VideoFrameChromiumImpl.h 52 virtual unsigned width() const;
53 virtual unsigned width(unsigned plane) const;
  /frameworks/base/media/jni/mediaeditor/
VideoEditorThumbnailMain.h 45 * @param width (IN) Width of thumbnail
51 M4OSA_Int32* pixelArray, M4OSA_UInt32 width,
60 * @param width (IN) Width of thumbnail
66 M4OSA_Int16* pixelArray, M4OSA_UInt32 width,
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
DrawableTexture.java 28 public DrawableTexture(Drawable drawable, int width, int height) {
29 super(width, height);
Icon.java 25 // The width and height requested by the user.
29 public Icon(Context context, int iconId, int width, int height) {
30 this(context, new ResourceTexture(context, iconId), width, height);
33 public Icon(Context context, BasicTexture icon, int width, int height) {
35 mReqWidth = width;
50 int width = getWidth() - p.left - p.right; local
54 int xoffset = p.left + (width - mReqWidth) / 2;
  /external/chromium/chrome/browser/ui/views/bubble/
bubble_border.cc 49 int w = position_relative_to.width();
63 x += w / 2 + arrow_offset - border_size.width() + 1;
73 x += kArrowOverlap - border_size.width();
78 x += w / 2 - border_size.width() / 2;
113 return gfx::Rect(x, y, border_size.width(), border_size.height());
119 int left = left_->width();
120 int right = right_->width();
134 left = std::max(left, left_arrow_->width());
139 right = std::max(right, right_arrow_->width());
158 border_size.width() : border_size.height()) - arrow_offset_))
220 const int width = right - left; local
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
ImageUtils.cpp 28 void ImageUtils::rgba2yvu(ImageType out, ImageType in, int width, int height)
32 ImageType vimg = yimg + width*height;
33 ImageType uimg = vimg + width*height;
37 for (int ij = 0; ij < width; ij++) {
73 void ImageUtils::rgb2yvu(ImageType out, ImageType in, int width, int height)
77 ImageType vimg = yimg + width*height;
78 ImageType uimg = vimg + width*height;
82 for (int ij = 0; ij < width; ij++) {
116 ImageType ImageUtils::rgb2gray(ImageType in, int width, int height)
121 ImageType out = ImageUtils::allocateImage(width, height, 1)
    [all...]
  /external/chromium/chrome/browser/resources/options/
advanced_options.css 17 min-width: 145px;
22 min-width: 100px;
27 min-width: 470px;
  /external/libvpx/vpx_scale/generic/
yv12config.c 43 vp8_yv12_alloc_frame_buffer(YV12_BUFFER_CONFIG *ybf, int width, int height, int border)
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/skia/src/images/
SkPageFlipper.cpp 29 SkPageFlipper::SkPageFlipper(int width, int height) {
30 fWidth = width;
35 fDirty0->setRect(0, 0, width, height);
39 void SkPageFlipper::resize(int width, int height) {
40 fWidth = width;
44 fDirty1->setRect(0, 0, width, height);
  /external/webkit/Source/WebCore/platform/
DragImage.cpp 43 if (srcSize.width() > size.width()) {
44 widthResizeRatio = size.width() / (float)srcSize.width();
58 float scalex = srcSize.width() / (float)originalSize.width();
  /frameworks/base/core/java/android/gesture/
OrientedBoundingBox.java 28 public final float width; field in class:OrientedBoundingBox
38 width = w;
58 point[0] = -width / 2;
66 point[0] = -width / 2;
71 point[0] = width / 2;
76 point[0] = width / 2;
  /system/core/toolbox/
r.c 15 int width = 4, set = 0, fd; local
24 width = 1;
28 width = 2;
41 endaddr = addr + width - 1;
72 switch(width){
92 addr += width;

Completed in 637 milliseconds

1 2 3 4 5 6 78 91011>>