HomeSort by relevance Sort by last modified time
    Searched refs:Width (Results 1 - 25 of 40) sorted by null

1 2

  /external/webkit/WebCore/platform/graphics/haiku/
FloatRectHaiku.cpp 39 , m_size(rect.Width() + 1, rect.Height() + 1)
45 return BRect(BPoint(x(), y()), BSize(width() - 1, height() - 1));
  /external/webkit/WebCore/svg/
SVGFilterPrimitiveStandardAttributes.h 54 DECLARE_ANIMATED_PROPERTY(SVGFilterPrimitiveStandardAttributes, SVGNames::widthAttr, SVGLength, Width, width)
SVGForeignObjectElement.h 53 DECLARE_ANIMATED_PROPERTY(SVGForeignObjectElement, SVGNames::widthAttr, SVGLength, Width, width)
SVGRectElement.h 54 DECLARE_ANIMATED_PROPERTY(SVGRectElement, SVGNames::widthAttr, SVGLength, Width, width)
SVGFilterElement.h 61 DECLARE_ANIMATED_PROPERTY(SVGFilterElement, SVGNames::widthAttr, SVGLength, Width, width)
SVGImageElement.h 67 DECLARE_ANIMATED_PROPERTY(SVGImageElement, SVGNames::widthAttr, SVGLength, Width, width)
SVGMaskElement.h 65 DECLARE_ANIMATED_PROPERTY(SVGMaskElement, SVGNames::widthAttr, SVGLength, Width, width)
SVGPatternElement.h 64 DECLARE_ANIMATED_PROPERTY(SVGPatternElement, SVGNames::widthAttr, SVGLength, Width, width)
SVGUseElement.h 80 DECLARE_ANIMATED_PROPERTY(SVGUseElement, SVGNames::widthAttr, SVGLength, Width, width)
SVGSVGElement.h 140 DECLARE_ANIMATED_PROPERTY(SVGSVGElement, SVGNames::widthAttr, SVGLength, Width, width)
  /external/opencore/codecs_v2/omx/omx_h264/src/
avc_dec.cpp 176 OMX_S32 Width, Height;
228 Width = (pDecVid->seqParams[0]->pic_width_in_mbs_minus1 + 1) * 16;
234 crop_right = Width - (2 * pDecVid->seqParams[0]->frame_crop_right_offset + 1);
250 crop_right = Width - 1;
  /external/giflib/
gif_lib.h 79 GifWord Left, Top, Width, Height, /* Current image dimensions. */
148 int Width, int GifHeight, int GifInterlace,
222 int QuantizeBuffer(unsigned int Width, unsigned int Height,
gifalloc.c 223 register int RasterSize = Image->ImageDesc.Height * Image->ImageDesc.Width;
382 CopyFrom->ImageDesc.Width);
389 CopyFrom->ImageDesc.Width);
dgif_lib.c 344 DGifGetWord(GifFile, &GifFile->Image.Width) == GIF_ERROR ||
415 Private->PixelCount = (long)GifFile->Image.Width *
441 LineLen = GifFile->Image.Width;
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxmodes.c 35 static void set_best_resolution(_THIS, int width, int height)
43 idok=BestCModeIDTags(CYBRBIDTG_NominalWidth,width,
57 SDL_Display=GFX_Display=OpenScreenTags(NULL,SA_Width,width,SA_Height,height,
66 *w = /*SDL_Display->Width*/ SDL_Window->Width-SDL_Window->BorderLeft-SDL_Window->BorderRight;
180 SDL_modelist[i]->w = SDL_Display->Width;
300 int width,height; local
SDL_cgxgl.c 45 attributes[i].ti_Tag = AMA_Width; attributes[i++].ti_Data = win->Width-win->BorderLeft-win->BorderRight;
SDL_cgxvideo.c 47 static SDL_Surface *CGX_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags);
466 this->info.current_w = SDL_Display->Width;
473 Uint32 okid=BestCModeIDTags(CYBRBIDTG_NominalWidth,SDL_Display->Width,
487 SA_Width,SDL_Display->Width,
655 display_w = SDL_Display->Width;
901 int width, int height, int bpp, Uint32 flags)
951 if(current->w!=width ||
965 Uint32 okid=BestCModeIDTags(CYBRBIDTG_NominalWidth,width,
976 SA_Width,width,
1071 if (CGX_ResizeWindow(this, current, width, height, flags) < 0)
    [all...]
SDL_amigaevents.c 254 SDL_PrivateResize(SDL_Window->Width-SDL_Window->BorderLeft-SDL_Window->BorderRight,
  /external/skia/src/images/
SkImageDecoder_libgif.cpp 151 msg, bm.width(), bm.height(), bm.getPixels(), bm.getColorTable());
169 int width, height; local
189 width = gif->SWidth;
191 if (width <= 0 || height <= 0 ||
193 width, height)) {
197 bm->setConfig(SkBitmap::kIndex8_Config, width, height);
206 desc.Left + desc.Width > width ||
247 const int innerWidth = desc.Width;
252 return error_return(gif, *bm, "non-pos inner width/height")
    [all...]
  /external/jhead/
jhead.c 293 if (ImageInfo.Height <= 1280 && ImageInfo.Width <= 1280){
294 printf("not resizing %dx%x '%s'\n",ImageInfo.Height, ImageInfo.Width, ImageInfo.FileName);
299 if (1024.0 / ImageInfo.Width < scale) scale = 1024.0 / ImageInfo.Width;
303 sprintf(CommandString, "mogrify -geometry %dx%d -quality 85 &i",(int)(ImageInfo.Width*scale), (int)(ImageInfo.Height*scale));
444 if (ImageInfo.Width > ImageInfo.Height) return TRUE;
448 if (ImageInfo.Width < ImageInfo.Height) return TRUE;
    [all...]
jhead.h 80 int Height, Width;
jpgfile.c 88 ImageInfo.Width = Get16m(Data+5);
101 ImageInfo.Width, ImageInfo.Height, num_components, data_precision);
  /external/opencore/codecs_v2/omx/omx_m4v/src/
omx_mpeg4_component.cpp     [all...]
  /external/v8/tools/
tickprocessor.py 95 if narrowest is None or region.Width() < narrowest.Width():
142 def Width(self):
  /external/webkit/WebCore/rendering/
RenderBox.h 32 enum WidthType { Width, MinWidth, MaxWidth };
45 int width() const { return m_frameRect.width(); } function in class:WebCore::RenderBox
50 void setWidth(int width) { m_frameRect.setWidth(width); }
65 IntRect borderBoxRect() const { return IntRect(0, 0, width(), height()); }
94 int rightLayoutOverflow() const { return m_overflow ? m_overflow->rightLayoutOverflow() : width(); }
100 int rightVisualOverflow() const { return m_overflow ? m_overflow->rightVisualOverflow() : width(); }
114 // to return the remaining width on a given line (and the height of a single line).
115 virtual int offsetWidth() const { return width(); }
    [all...]

Completed in 278 milliseconds

1 2